OSDN Git Service

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