https://github.com/jferrl/java-edi-archetype-template
https://github.com/jferrl/java-edi-archetype-template
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/jferrl/java-edi-archetype-template
- Owner: jferrl
- License: other
- Created: 2024-02-19T18:18:37.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-20T13:16:30.000Z (over 2 years ago)
- Last Synced: 2025-01-19T19:26:11.798Z (over 1 year ago)
- Language: Java
- Size: 44.9 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# java-edi-archetype-template
This is a template for Java practices for [EDI](https://www.unileon.es/estudiantes/oferta-academica/grados/grado-en-ingenieria-informatica/plan-estudios?id=0709018&cursoa=2023) subject of the degree [Grado en Ingeniería Informática](https://www.unileon.es/estudios/grado/ingenieria-informatica) of the [University of León](https://www.unileon.es/).
This repository tends to be a template for Java projects, with a monorepo structure, and a CI/CD pipeline.
## Requirements
### Install maven
### Ubuntu
```bash
sudo apt install maven
```
### Windows
To install Maven on Windows, we head over to the Apache Maven site to download the latest version and select the Maven zip file, for example, apache-maven-3.8.4-bin.zip.
Then, we unzip it to the folder where we want Maven to live.
### MacOS
```bash
brew install maven
```
## How to use
### Clone
```bash
git clone
```
### Test
```bash
mvn verify
```