Update wildfly swarm to thorntail
This commit is contained in:
parent
169ee80af9
commit
3aedfffe2f
1 changed files with 33 additions and 9 deletions
|
|
@ -8,20 +8,36 @@
|
||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
|
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<version.wildfly.swarm>2017.10.0</version.wildfly.swarm>
|
<!-- Explicitly declaring the source encoding eliminates the following
|
||||||
<maven.compiler.source>1.8</maven.compiler.source>
|
message: -->
|
||||||
<maven.compiler.target>1.8</maven.compiler.target>
|
<!-- [WARNING] Using platform encoding (UTF-8 actually) to copy filtered
|
||||||
<failOnMissingWebXml>false</failOnMissingWebXml>
|
resources, i.e. build is platform dependent! -->
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
||||||
|
|
||||||
|
<!-- Thorntail dependency versions -->
|
||||||
|
<version.thorntail>2.4.0.Final</version.thorntail>
|
||||||
|
|
||||||
|
<!-- other plugin versions -->
|
||||||
|
<version.compiler.plugin>3.1</version.compiler.plugin>
|
||||||
|
<version.surefire.plugin>2.16</version.surefire.plugin>
|
||||||
|
<version.war.plugin>2.5</version.war.plugin>
|
||||||
|
|
||||||
|
<!-- maven-compiler-plugin -->
|
||||||
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||||||
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||||||
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
|
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.wildfly.swarm</groupId>
|
<groupId>io.thorntail</groupId>
|
||||||
<artifactId>bom-all</artifactId>
|
<artifactId>bom-all</artifactId>
|
||||||
<version>${version.wildfly.swarm}</version>
|
<version>${version.thorntail}</version>
|
||||||
<scope>import</scope>
|
<scope>import</scope>
|
||||||
<type>pom</type>
|
<type>pom</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
@ -32,9 +48,9 @@
|
||||||
<finalName>java-serverhost</finalName>
|
<finalName>java-serverhost</finalName>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.wildfly.swarm</groupId>
|
<groupId>io.thorntail</groupId>
|
||||||
<artifactId>wildfly-swarm-plugin</artifactId>
|
<artifactId>thorntail-maven-plugin</artifactId>
|
||||||
<version>${version.wildfly.swarm}</version>
|
<version>${version.thorntail}</version>
|
||||||
|
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
|
|
@ -48,6 +64,14 @@
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.thorntail</groupId>
|
||||||
|
<artifactId>cdi</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.thorntail</groupId>
|
||||||
|
<artifactId>jaxrs</artifactId>
|
||||||
|
</dependency>
|
||||||
<!-- Java EE 7 dependency -->
|
<!-- Java EE 7 dependency -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax</groupId>
|
<groupId>javax</groupId>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue