diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..fd64d2f6b500d6b8b02ce933e0c73bb88208e5e9 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,34 @@ +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 diff --git a/pom.xml b/pom.xml index 6800eb61d860849c15c1ba4de7f4c7d7a1747ed6..2f0b605a15111704efbceeb0e2dbe740a6749bf9 100644 --- a/pom.xml +++ b/pom.xml @@ -26,6 +26,10 @@ <id>adi-ia-libraries</id> <url>https://git.doit.wisc.edu/api/v4/groups/15/-/packages/maven</url> </repository> + <repository> + <id>uw-open-releases</id> + <url>https://artifacts.doit.wisc.edu/artifactory/maven-uw-open-releases</url> + </repository> </repositories> <properties> diff --git a/uw-spring-security-core/pom.xml b/uw-spring-security-core/pom.xml index c2b36d334d25e5415761c207aa47022a680b40ae..e7e3d4937bff1890b9006580cd294d5ed2b50d95 100644 --- a/uw-spring-security-core/pom.xml +++ b/uw-spring-security-core/pom.xml @@ -18,10 +18,6 @@ <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> </dependency> - <!--<dependency> - <groupId>edu.wisc.services.uds</groupId> - <artifactId>uds-person-ws</artifactId> - </dependency>--> <dependency> <groupId>edu.wisc.services.uds</groupId> <artifactId>uds-person-client-java</artifactId> @@ -72,5 +68,9 @@ <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> - </dependencies> + <dependency> + <groupId>javax.annotation</groupId> + <artifactId>jsr250-api</artifactId> + </dependency> + </dependencies> </project> \ No newline at end of file