forked from threerings/tripleplay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
114 lines (105 loc) · 3.49 KB
/
pom.xml
File metadata and controls
114 lines (105 loc) · 3.49 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
114
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.googlecode.playn</groupId>
<artifactId>playn-project</artifactId>
<version>1.8-SNAPSHOT</version>
</parent>
<groupId>com.threerings</groupId>
<artifactId>tripleplay-parent</artifactId>
<version>1.8-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Triple Play 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>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<playn.version>1.8-SNAPSHOT</playn.version>
</properties>
<modules>
<module>core</module>
<module>ios</module>
<module>java</module>
<module>swt-java</module>
<module>tools</module>
<module>demo</module>
</modules>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property><name>performRelease</name><value>true</value></property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<keyname>mdb@samskivert.com</keyname>
</configuration>
</plugin>
</plugins>
</build>
</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>