-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
79 lines (66 loc) · 2.56 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- PROJECT METADATA -->
<parent>
<groupId>com.lyndir.lhunath.portal</groupId>
<artifactId>portal</artifactId>
<version>GIT-SNAPSHOT</version>
</parent>
<groupId>com.lyndir.lhunath.gorillas</groupId>
<artifactId>portal-apps-gorillas</artifactId>
<version>GIT-SNAPSHOT</version>
<packaging>war</packaging>
<name>Lyndir Portal: Gorillas</name>
<description>The website of the Gorillas iPhone game.</description>
<url>http://gorillas.lyndir.com</url>
<inceptionYear>2009</inceptionYear>
<!-- CODE MANAGEMENT -->
<scm>
<url>${scm.github.webbase}/Gorillas-Web/tree</url>
<connection>${scm.github.pubbase}/Gorillas-Web.git</connection>
<developerConnection>${scm.github.devbase}/Gorillas-Web.git</developerConnection>
</scm>
<issueManagement>
<system>Codaset</system>
<url>${scm.codaset.webbase}/Gorillas/tickets</url>
</issueManagement>
<!-- BUILD CONFIGURATION -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<overlays>
<overlay>
<groupId>com.lyndir.lhunath.portal</groupId>
<artifactId>portal-apps</artifactId>
<excludes>
<exclude>WEB-INF/web.xml</exclude>
<exclude>WEB-INF/lib/*</exclude>
</excludes>
</overlay>
</overlays>
</configuration>
</plugin>
</plugins>
</build>
<!-- DEPENDENCY MANAGEMENT -->
<dependencies>
<!-- Apps -->
<dependency>
<groupId>com.lyndir.lhunath.portal</groupId>
<artifactId>portal-apps</artifactId>
<version>GIT-SNAPSHOT</version>
<type>war</type>
</dependency>
<dependency>
<groupId>com.lyndir.lhunath.portal</groupId>
<artifactId>portal-apps</artifactId>
<version>GIT-SNAPSHOT</version>
<type>warpath</type>
</dependency>
</dependencies>
</project>