Home | History | Annotate | Download | only in gdx
      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>com.badlogicgames.gdx</groupId>
      6     <artifactId>gdx-parent</artifactId>
      7     <version>1.9.3</version>
      8   </parent>
      9 
     10   <artifactId>gdx</artifactId>
     11   <packaging>jar</packaging>
     12   <name>libGDX Core</name>
     13 
     14   <dependencies>
     15     <dependency>
     16       <groupId>${project.groupId}</groupId>
     17       <artifactId>gdx-jnigen</artifactId>
     18       <version>${project.version}</version>
     19       <optional>true</optional>
     20     </dependency>
     21     <dependency>
     22       <groupId>junit</groupId>
     23       <artifactId>junit</artifactId>
     24       <version>4.11</version>
     25       <scope>test</scope>
     26     </dependency>
     27   </dependencies>
     28 
     29   <build>
     30     <sourceDirectory>src</sourceDirectory>
     31     <testSourceDirectory>test</testSourceDirectory>
     32 
     33     <plugins>
     34       <plugin>
     35         <groupId>org.apache.maven.plugins</groupId>
     36         <artifactId>maven-source-plugin</artifactId>
     37         <executions>
     38           <execution>
     39             <id>attach-sources</id>
     40             <phase>generate-resources</phase>
     41             <goals>
     42               <goal>jar-no-fork</goal>
     43             </goals>
     44           </execution>
     45         </executions>
     46       </plugin>
     47     </plugins>
     48     
     49     <resources>
     50       <resource>
     51         <directory>src</directory>
     52         <includes>
     53           <include>**/*</include>
     54         </includes>
     55         <excludes>
     56           <exclude>**/*.java</exclude>
     57         </excludes>
     58       </resource>
     59     </resources>
     60   </build>
     61 </project>
     62