OSDN Git Service

Merge pull request #767 from xoppa/3dapi
[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-lwjgl</module>
58     <module>backends/gdx-backends-gwt</module>
59     <module>extensions/gdx-tools</module>
60     <module>extensions/gdx-freetype</module>
61     <module>extensions/gdx-freetype/jni/maven</module>
62     <module>extensions/gdx-bullet</module>
63     <module>extensions/gdx-bullet/jni/maven</module>
64   </modules>
65
66   <build>
67     <plugins>
68       <plugin>
69         <groupId>org.apache.maven.plugins</groupId>
70         <artifactId>maven-compiler-plugin</artifactId>
71         <version>2.3.2</version>
72         <configuration>
73           <source>1.6</source>
74           <target>1.6</target>
75           <fork>true</fork>
76           <showWarnings>true</showWarnings>
77 <!--
78           <showDeprecation>true</showDeprecation>
79           <compilerArgument>-Xlint" "-Xlint:-serial" "-Xlint:-path</compilerArgument>
80 -->
81         </configuration>
82       </plugin>
83       <plugin>
84         <groupId>org.apache.maven.plugins</groupId>
85         <artifactId>maven-resources-plugin</artifactId>
86         <version>2.4.3</version>
87         <configuration>
88           <encoding>UTF-8</encoding>
89         </configuration>
90       </plugin>
91       <plugin>
92         <groupId>org.apache.maven.plugins</groupId>
93         <artifactId>maven-source-plugin</artifactId>
94         <version>2.1.2</version>
95       </plugin>
96       <plugin>
97         <groupId>org.apache.maven.plugins</groupId>
98         <artifactId>maven-surefire-plugin</artifactId>
99         <version>2.6</version>
100         <configuration>
101           <includes><include>**/*Test.java</include></includes>
102         </configuration>
103       </plugin>
104       <plugin>
105         <groupId>org.apache.maven.plugins</groupId>
106         <artifactId>maven-javadoc-plugin</artifactId>
107         <version>2.7</version>
108         <configuration>
109           <quiet>true</quiet>
110           <show>public</show>
111         </configuration>
112       </plugin>
113       <plugin>
114         <groupId>org.apache.maven.plugins</groupId>
115         <artifactId>maven-jar-plugin</artifactId>
116         <version>2.3.1</version>
117       </plugin>
118       <plugin>
119         <groupId>org.apache.maven.plugins</groupId>
120         <artifactId>maven-install-plugin</artifactId>
121         <version>2.3.1</version>
122       </plugin>
123       <plugin>
124         <groupId>org.apache.maven.plugins</groupId>
125         <artifactId>maven-deploy-plugin</artifactId>
126         <version>2.5</version>
127       </plugin>
128     </plugins>
129   </build>
130 </project>