forked from threerings/tripleplay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
121 lines (109 loc) · 3.71 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
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
114
115
116
117
118
119
120
121
<?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>
<parent>
<groupId>io.playn</groupId>
<artifactId>playn-project</artifactId>
<version>2.0.8</version>
</parent>
<groupId>com.threerings</groupId>
<artifactId>tripleplay-parent</artifactId>
<version>2.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>TP Parent</name>
<description>Utilities for use in PlayN-based games.</description>
<url>http://github.com/threerings/tripleplay/</url>
<issueManagement>
<url>http://github.com/threerings/tripleplay/issues</url>
</issueManagement>
<repositories>
<repository>
<!-- when we depend on a snapshot PlayN, get that from SonaType's OSS repository -->
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<licenses>
<license>
<name>The (New) BSD License</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>samskivert</id>
<name>Michael Bayne</name>
<email>mdb@samskivert.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/threerings/tripleplay.git</connection>
<developerConnection>scm:git:git@github.com:threerings/tripleplay.git</developerConnection>
<url>http://github.com/threerings/tripleplay/</url>
<tag>HEAD</tag>
</scm>
<prerequisites>
<maven>3.3.0</maven>
</prerequisites>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<playn.version>2.0.8</playn.version>
</properties>
<modules>
<module>core</module>
<!-- <module>ios</module> -->
<module>java-lwjgl2</module>
<module>java-swt</module>
<module>plugins</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh-releases</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<stagingProfileId>aa555c46fc37d0</stagingProfileId>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<!-- only include the demo module if we're not doing a release; even though the deploy
plugin is configured to ignore it during releases, the sonatype plugin gets confused
so we have to take special measures -->
<profile>
<id>not-release</id>
<activation>
<property><name>!performRelease</name></property>
</activation>
<modules>
<module>tools</module>
<module>demo</module>
</modules>
</profile>
<profile>
<id>deploy-local</id>
<distributionManagement>
<repository>
<id>deploy-local</id>
<name>Local maven repository</name>
<url>${deploy-local.dir}</url>
</repository>
<snapshotRepository>
<uniqueVersion>false</uniqueVersion>
<id>deploy-local-snapshots</id>
<name>Local maven snapshot repository</name>
<url>${deploy-local.dir}</url>
</snapshotRepository>
</distributionManagement>
</profile>
</profiles>
</project>