-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
113 lines (110 loc) · 4.69 KB
/
pom.xml
File metadata and controls
113 lines (110 loc) · 4.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.jjarvela</groupId>
<artifactId>jee7test</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<dependencies>
<!-- https://mvnrepository.com/artifact/javax/javaee-api -->
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>6.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.12</version>
</dependency>
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>6.0.13</version>
</dependency>
<!--<dependency>-->
<!--<groupId>org.atmosphere</groupId>-->
<!--<artifactId>atmosphere-runtime</artifactId>-->
<!--<version>2.4.3</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!--<groupId>org.atmosphere</groupId>-->
<!--<artifactId>atmosphere-jersey</artifactId>-->
<!--<version>2.4.3</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!--<groupId>org.atmosphere</groupId>-->
<!--<artifactId>atmosphere-weblogic</artifactId>-->
<!--<version>2.4.3</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!--<groupId>org.atmosphere</groupId>-->
<!--<artifactId>atmosphere-annotations</artifactId>-->
<!--<version>2.4.3</version>-->
<!--</dependency>-->
</dependencies>
<build>
<finalName>jee7test</finalName>
</build>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
<profiles>
<profile>
<id>deploy</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>deploy</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target name="Deploy to WebLogic">
<echo>Deploying to WebLogic</echo>
<mkdir dir="${basedir}/../../vagrant-naali-weblogic/app"/>
<copy file="target/jee7test.war"
tofile="${basedir}/../kena2/vagrant-naali-weblogic/autodeploy/jee7test.war"
overwrite="true"/>
</target>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>3.0.20</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.9.4</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-launcher</artifactId>
<version>1.9.4</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>