Home | History | Annotate | Download | only in libgdx
      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>1.9.3</version>
     14 
     15   <name>libGDX Parent</name>
     16   <description>Android/Desktop/iOS/HTML5 game development framework.</description>
     17   <url>http://libgdx.badlogicgames.com</url>
     18   <issueManagement>
     19     <url>https://github.com/libgdx/libgdx/issues</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:https://github.com/libgdx/libgdx.git</connection>
     39     <developerConnection>scm:git:https://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.4</android.version>
     46     <gwt.version>2.6.1</gwt.version>
     47     <lwjgl.version>2.9.2</lwjgl.version>
     48     <lwjgl3.version>3.0.0b</lwjgl3.version>
     49     <jglfw.version>1.1</jglfw.version>
     50     <robovm.version>2.1.0</robovm.version>
     51     <moe.version>1.0.0</moe.version>
     52   </properties>
     53 
     54   <modules>
     55     <module>extensions/gdx-jnigen</module>
     56     <module>gdx</module>
     57     <module>gdx/jni/maven</module>
     58     <module>backends/gdx-backend-android</module>
     59     <module>backends/gdx-backend-robovm</module>
     60     <module>backends/gdx-backend-lwjgl</module>
     61     <module>backends/gdx-backend-lwjgl3</module>
     62     <module>backends/gdx-backend-jglfw</module>
     63     <module>backends/gdx-backends-gwt</module>
     64     <module>backends/gdx-backend-headless</module>
     65     <module>backends/gdx-backend-moe</module>
     66     <module>extensions/gdx-tools</module>
     67     <module>extensions/gdx-box2d</module>
     68     <module>extensions/gdx-bullet</module>
     69     <module>extensions/gdx-bullet/jni/maven</module>
     70     <module>extensions/gdx-controllers</module>
     71     <module>extensions/gdx-freetype</module>
     72     <module>extensions/gdx-freetype/jni/maven</module>    
     73   </modules>
     74 
     75   <build>
     76     <plugins>
     77       <plugin>
     78         <groupId>org.apache.maven.plugins</groupId>
     79         <artifactId>maven-compiler-plugin</artifactId>
     80         <version>2.3.2</version>
     81         <configuration>
     82           <source>1.6</source>
     83           <target>1.6</target>
     84           <fork>true</fork>
     85           <showWarnings>true</showWarnings>
     86         </configuration>
     87       </plugin>
     88       <plugin>
     89         <groupId>org.apache.maven.plugins</groupId>
     90         <artifactId>maven-resources-plugin</artifactId>
     91         <version>2.6</version>
     92         <configuration>
     93           <encoding>UTF-8</encoding>
     94         </configuration>
     95       </plugin>
     96       <plugin>
     97         <groupId>org.apache.maven.plugins</groupId>
     98         <artifactId>maven-source-plugin</artifactId>
     99         <version>2.3</version>
    100       </plugin>
    101       <plugin>
    102         <groupId>org.apache.maven.plugins</groupId>
    103         <artifactId>maven-surefire-plugin</artifactId>
    104         <version>2.17</version>
    105         <configuration>
    106           <includes><include>**/*Test.java</include></includes>
    107         </configuration>
    108       </plugin>
    109       <plugin>
    110         <groupId>org.apache.maven.plugins</groupId>
    111         <artifactId>maven-javadoc-plugin</artifactId>
    112         <version>2.9.1</version>
    113         <configuration>
    114           <quiet>true</quiet>
    115           <show>public</show>
    116           <additionalparam>-Xdoclint:none</additionalparam>
    117         </configuration>
    118       </plugin>
    119       <plugin>
    120         <groupId>org.apache.maven.plugins</groupId>
    121         <artifactId>maven-jar-plugin</artifactId>
    122         <version>2.3.1</version>
    123       </plugin>
    124       <plugin>
    125         <groupId>org.apache.maven.plugins</groupId>
    126         <artifactId>maven-install-plugin</artifactId>
    127         <version>2.3.1</version>
    128       </plugin>
    129       <plugin>
    130         <groupId>org.apache.maven.plugins</groupId>
    131         <artifactId>maven-deploy-plugin</artifactId>
    132         <version>2.5</version>
    133       </plugin>
    134     </plugins>
    135   </build>
    136 </project>
    137