Skip to content
Snippets Groups Projects
Commit 53df73de authored by bhill6@wisc.edu's avatar bhill6@wisc.edu
Browse files

Merge branch 'migrate_deployment' into 'master'

Changes to migrate deployment to gitlab,adding gitlab-ci file

See merge request !33
parents d14f89db 58e82bfe
No related branches found
No related tags found
1 merge request!33Changes to migrate deployment to gitlab,adding gitlab-ci file
Pipeline #126363 failed
image: maven:3-amazoncorretto-8
variables:
# This will suppress any download for dependencies and plugins or upload messages which would clutter the console log.
# `showDateTime` will show the passed time in milliseconds. You need to specify `--batch-mode` to make this work.
MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=WARN -Dorg.slf4j.simpleLogger.showDateTime=true -Djava.awt.headless=true"
# As of Maven 3.3.0 instead of this you may define these options in `.mvn/maven.config` so the same config is used
# when running from the command line.
# `installAtEnd` and `deployAtEnd`are only effective with recent version of the corresponding plugins.
MAVEN_CLI_OPTS: "--settings .m2/settings.xml --batch-mode --errors --fail-at-end --show-version -DinstallAtEnd=true -DdeployAtEnd=true"
# Cache downloaded dependencies and plugins between builds.
# To keep cache across branches add 'key: "$CI_JOB_REF_NAME"'
cache:
paths:
- .m2/repository
default:
tags:
- aws
- docker
test:
stage: test
script:
- mvn clean $MAVEN_CLI_OPTS verify
deploy:
stage: deploy
only:
- master
script:
- env
- mvn $MAVEN_CLI_OPTS deploy -Pdeploy -X
...@@ -26,6 +26,10 @@ ...@@ -26,6 +26,10 @@
<id>adi-ia-libraries</id> <id>adi-ia-libraries</id>
<url>https://git.doit.wisc.edu/api/v4/groups/15/-/packages/maven</url> <url>https://git.doit.wisc.edu/api/v4/groups/15/-/packages/maven</url>
</repository> </repository>
<repository>
<id>uw-open-releases</id>
<url>https://artifacts.doit.wisc.edu/artifactory/maven-uw-open-releases</url>
</repository>
</repositories> </repositories>
<properties> <properties>
......
...@@ -18,10 +18,6 @@ ...@@ -18,10 +18,6 @@
<groupId>com.fasterxml.jackson.dataformat</groupId> <groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId> <artifactId>jackson-dataformat-yaml</artifactId>
</dependency> </dependency>
<!--<dependency>
<groupId>edu.wisc.services.uds</groupId>
<artifactId>uds-person-ws</artifactId>
</dependency>-->
<dependency> <dependency>
<groupId>edu.wisc.services.uds</groupId> <groupId>edu.wisc.services.uds</groupId>
<artifactId>uds-person-client-java</artifactId> <artifactId>uds-person-client-java</artifactId>
...@@ -72,5 +68,9 @@ ...@@ -72,5 +68,9 @@
<artifactId>spring-test</artifactId> <artifactId>spring-test</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> <dependency>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>
</dependency>
</dependencies>
</project> </project>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment