Student User
2019-08-08 7be4a5f7fc140d1495e739d8a02107879f2b9647
commit | author | age
ef8c52 1 <?xml version="1.0" encoding="UTF-8"?>
RA 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5   <groupId>com.redhat.training.example</groupId>
6   <artifactId>quip</artifactId>
7   <name>An application that prints a quip</name>
8   <version>1.0</version>
9   <packaging>war</packaging>
10
11    <properties>
12         <version.wildfly.swarm>2.1.0.Final</version.wildfly.swarm>
13         <maven.compiler.source>1.8</maven.compiler.source>
14         <maven.compiler.target>1.8</maven.compiler.target>
15         <failOnMissingWebXml>false</failOnMissingWebXml>
16         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17     </properties>
18
19     <dependencyManagement>
20         <dependencies>
21             <dependency>
22                 <groupId>io.thorntail</groupId>
23                 <artifactId>bom-all</artifactId>
24                 <version>${version.wildfly.swarm}</version>
25                 <scope>import</scope>
26                 <type>pom</type>
27             </dependency>
28         </dependencies>
29     </dependencyManagement>
30
31   <build>
32     <finalName>quip</finalName>
33     <plugins>
34       <plugin>
35         <groupId>io.thorntail</groupId>
36         <artifactId>thorntail-maven-plugin</artifactId>
37         <version>${version.wildfly.swarm}</version>
38         
39         <executions>
40           <execution>
41             <goals>
42               <goal>package</goal>
43             </goals>
44           </execution>
45         </executions>
46       </plugin>
47     </plugins>
48   </build>
49
50   <dependencies>
51     <!-- Java EE 7 dependency -->
52     <dependency>
53       <groupId>javax</groupId>
54       <artifactId>javaee-api</artifactId>
55       <version>7.0</version>
56       <scope>provided</scope>
57     </dependency>
58     <!-- WildFly Swarm Fractions -->
59     
60   </dependencies>
61 </project>