Storing artifacts

This commit is contained in:
Jaime Martinez Rincon 2017-09-12 14:54:38 +02:00
parent 89a5b375a8
commit 6da91c3944
2 changed files with 8 additions and 2 deletions

View File

@ -37,5 +37,10 @@ jobs:
- ~/.m2 - ~/.m2
key: v1-dependencies-{{ checksum "pom.xml" }} key: v1-dependencies-{{ checksum "pom.xml" }}
# run tests! - run: mvn package
- run: mvn integration-test
- store_test_results:
path: target/surefire-reports
- store_artifacts:
path: target/PlayerBalancer.jar

View File

@ -37,6 +37,7 @@
</repositories> </repositories>
<build> <build>
<defaultGoal>clean install</defaultGoal> <defaultGoal>clean install</defaultGoal>
<finalName>${project.name}</finalName>
<plugins> <plugins>
<plugin> <plugin>
<version>3.3</version> <version>3.3</version>