forked from zanata/tennera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
57 lines (57 loc) · 1.59 KB
/
pom.xml
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
<?xml version="1.0"?>
<project>
<parent>
<artifactId>tennera</artifactId>
<groupId>org.fedorahosted.tennera</groupId>
<version>0.5-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.fedorahosted.tennera</groupId>
<artifactId>webgettext-example</artifactId>
<packaging>war</packaging>
<name>Tennera WebGettext Example Webapp</name>
<version>0.1-SNAPSHOT</version>
<url>http://maven.apache.org</url>
<build>
<finalName>webgettext-example</finalName>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jboss-maven-plugin</artifactId>
<configuration>
<jbossHome>${jboss.home}</jbossHome>
</configuration>
</plugin>
<!--
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<configuration>
<container>
<containerId>jboss42x</containerId>
<home>${jboss42x.home}</home>
</container>
<container>
<containerId>tomcat6x</containerId>
<home>${tomcat6x.home}</home>
</container>
</configuration>
</plugin>
-->
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.fedorahosted.tennera</groupId>
<artifactId>webgettext</artifactId>
<version>0.1-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>