Home | History | Annotate | Download | only in gdx-jnigen
      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     <relativePath>../../pom.xml</relativePath>
      9   </parent>
     10 
     11   <artifactId>gdx-jnigen</artifactId>
     12   <packaging>jar</packaging>
     13   <name>libGDX JNIGen</name>
     14 
     15   <dependencies>
     16     <dependency>
     17       <groupId>com.github.javaparser</groupId>
     18       <artifactId>javaparser-core</artifactId>
     19       <version>2.3.0</version>
     20     </dependency>
     21   </dependencies>
     22 
     23   <build>
     24     <sourceDirectory>src</sourceDirectory>
     25     <resources>
     26       <resource>
     27         <directory>src</directory>
     28         <includes>
     29           <include>**/*</include>
     30         </includes>
     31         <excludes>
     32           <exclude>**/*.java</exclude>
     33         </excludes>
     34       </resource>
     35     </resources>
     36     <plugins>
     37         <plugin>
     38             <groupId>org.apache.maven.plugins</groupId>
     39             <artifactId>maven-source-plugin</artifactId>
     40             <executions>
     41                 <execution>
     42                     <id>attach-sources</id>
     43                     <phase>generate-resources</phase>
     44                     <goals>
     45                         <goal>jar-no-fork</goal>
     46                     </goals>
     47                 </execution>
     48             </executions>
     49         </plugin>
     50     </plugins>
     51   </build>
     52 </project>
     53