diff options
Diffstat (limited to 'dcaedt_be/pom.xml')
-rw-r--r-- | dcaedt_be/pom.xml | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/dcaedt_be/pom.xml b/dcaedt_be/pom.xml index 15753cc..59abbd1 100644 --- a/dcaedt_be/pom.xml +++ b/dcaedt_be/pom.xml @@ -13,6 +13,7 @@ </parent> <properties> + <!--suppress UnresolvedMavenProperty --> <docker.staging.tag>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest</docker.staging.tag> </properties> @@ -85,13 +86,13 @@ <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> - <version>1.6.4</version> + <version>2.0.0-beta.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> - <artifactId>powermock-api-mockito</artifactId> - <version>1.6.4</version> + <artifactId>powermock-api-mockito2</artifactId> + <version>2.0.0-beta.5</version> <scope>test</scope> </dependency> <dependency> @@ -134,7 +135,7 @@ <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jetty</artifactId> - <version>1.5.2.RELEASE</version> + <version>2.0.5.RELEASE</version> <exclusions> <exclusion> <groupId>org.eclipse.jetty.websocket</groupId> @@ -292,6 +293,16 @@ <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>repackage</goal> + </goals> + <configuration> + <classifier>exec</classifier> + </configuration> + </execution> + </executions> <configuration> <webXml>src/main/webapp/WEB-INF/web.xml</webXml> <webResources> |