OSDN Git Service

Unused fields.
[mikumikustudio/libgdx-mikumikustudio.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.sonatype.oss</groupId>
6     <artifactId>oss-parent</artifactId>
7     <version>5</version>
8   </parent>
9
10   <groupId>com.badlogicgames.gdx</groupId>
11   <artifactId>gdx-parent</artifactId>
12   <packaging>pom</packaging>
13   <version>0.9.9-SNAPSHOT</version>
14
15   <name>libGDX Parent</name>
16   <description>Android/desktop game development framework.</description>
17   <url>http://libgdx.badlogicgames.com</url>
18   <issueManagement>
19     <url>https://code.google.com/p/libgdx/issues/list</url>
20   </issueManagement>
21
22   <licenses>
23     <license>
24       <name>Apache Licence 2.0</name>
25       <url>http://www.apache.org/licenses/LICENSE-2.0</url>
26       <distribution>repo</distribution>
27     </license>
28   </licenses>
29
30   <developers>
31     <developer>
32       <id>Developers</id>
33       <url>http://code.google.com/p/libgdx/people/list</url>
34     </developer>
35   </developers>
36
37   <scm>
38     <connection>scm:git:git://github.com/libgdx/libgdx.git</connection>
39     <developerConnection>scm:git:git@github.com:libgdx/libgdx.git</developerConnection>
40     <url>http://github.com/libgdx/libgdx</url>
41   </scm>
42
43   <properties>
44     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
45     <android.version>4.2</android.version>
46     <gwt.version>2.5.0</gwt.version>
47     <lwjgl.version>2.9.0</lwjgl.version>
48     <monotouch.version>5.1</monotouch.version>
49   </properties>
50
51   <modules>
52     <module>extensions/gdx-jnigen</module>
53     <module>gdx</module>
54     <module>gdx/jni/maven</module>
55     <module>backends/gdx-openal</module>
56     <module>backends/gdx-backend-android</module>
57     <module>backends/gdx-backend-robovm</module>
58     <module>backends/gdx-backend-lwjgl</module>
59     <module>backends/gdx-backends-gwt</module>
60     <module>extensions/gdx-tools</module>
61     <module>extensions/gdx-freetype</module>
62     <module>extensions/gdx-freetype/jni/maven</module>
63     <module>extensions/gdx-bullet</module>
64     <module>extensions/gdx-bullet/jni/maven</module>
65   </modules>
66
67   <build>
68     <plugins>
69       <plugin>
70         <groupId>org.apache.maven.plugins</groupId>
71         <artifactId>maven-compiler-plugin</artifactId>
72         <version>2.3.2</version>
73         <configuration>
74           <source>1.6</source>
75           <target>1.6</target>
76           <fork>true</fork>
77           <showWarnings>true</showWarnings>
78 <!--
79           <showDeprecation>true</showDeprecation>
80           <compilerArgument>-Xlint" "-Xlint:-serial" "-Xlint:-path</compilerArgument>
81 -->
82         </configuration>
83       </plugin>
84       <plugin>
85         <groupId>org.apache.maven.plugins</groupId>
86         <artifactId>maven-resources-plugin</artifactId>
87         <version>2.4.3</version>
88         <configuration>
89           <encoding>UTF-8</encoding>
90         </configuration>
91       </plugin>
92       <plugin>
93         <groupId>org.apache.maven.plugins</groupId>
94         <artifactId>maven-source-plugin</artifactId>
95         <version>2.1.2</version>
96       </plugin>
97       <plugin>
98         <groupId>org.apache.maven.plugins</groupId>
99         <artifactId>maven-surefire-plugin</artifactId>
100         <version>2.6</version>
101         <configuration>
102           <includes><include>**/*Test.java</include></includes>
103         </configuration>
104       </plugin>
105       <plugin>
106         <groupId>org.apache.maven.plugins</groupId>
107         <artifactId>maven-javadoc-plugin</artifactId>
108         <version>2.7</version>
109         <configuration>
110           <quiet>true</quiet>
111           <show>public</show>
112         </configuration>
113       </plugin>
114       <plugin>
115         <groupId>org.apache.maven.plugins</groupId>
116         <artifactId>maven-jar-plugin</artifactId>
117         <version>2.3.1</version>
118       </plugin>
119       <plugin>
120         <groupId>org.apache.maven.plugins</groupId>
121         <artifactId>maven-install-plugin</artifactId>
122         <version>2.3.1</version>
123       </plugin>
124       <plugin>
125         <groupId>org.apache.maven.plugins</groupId>
126         <artifactId>maven-deploy-plugin</artifactId>
127         <version>2.5</version>
128       </plugin>
129     </plugins>
130   </build>
131 </project>