blob: 1810acaa5070ca5a27422e2d8524e42c669bb10f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Example private maven repo
* https://docs.gitlab.com/ee/user/packages/maven_repository/index.html
```bash
mvn archetype:generate -DgroupId=com.gitlab.xlgmokha -DartifactId=mvn-spike -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
```
Deploy to gitlab.airgap:
```bash
export TOKEN=<token>
mvn deploy -e -s ci_settings.xml -Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true
```
|