Home | History | Annotate | Download | only in gdx-backend-lwjgl
      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-backend-lwjgl</artifactId>
     12   <packaging>jar</packaging>
     13   <name>libGDX LWJGL Backend</name>
     14 
     15   <dependencies>
     16     <dependency>
     17       <groupId>${project.groupId}</groupId>
     18       <artifactId>gdx</artifactId>
     19       <version>${project.version}</version>
     20     </dependency>
     21     
     22     <dependency>
     23       <groupId>org.lwjgl.lwjgl</groupId>
     24       <artifactId>lwjgl</artifactId>
     25       <version>${lwjgl.version}</version>
     26     </dependency>
     27 
     28     <dependency>
     29       <groupId>org.lwjgl.lwjgl</groupId>
     30       <artifactId>lwjgl_util</artifactId>
     31       <version>${lwjgl.version}</version>
     32     </dependency>
     33     
     34     <dependency>
     35       <groupId>org.lwjgl.lwjgl</groupId>
     36       <artifactId>lwjgl</artifactId>
     37       <version>${lwjgl.version}</version>
     38     </dependency>
     39 
     40     <dependency>
     41       <groupId>com.badlogicgames.jlayer</groupId>
     42       <artifactId>jlayer</artifactId>
     43       <version>1.0.1-gdx</version>
     44     </dependency>
     45 
     46     <dependency>
     47         <groupId>org.jcraft</groupId>
     48         <artifactId>jorbis</artifactId>
     49         <version>0.0.17</version>
     50     </dependency>
     51   </dependencies>
     52 
     53   <build>
     54     <sourceDirectory>src</sourceDirectory>
     55 
     56     <plugins>
     57       <plugin>
     58         <groupId>org.apache.maven.plugins</groupId>
     59         <artifactId>maven-compiler-plugin</artifactId>
     60         <configuration>
     61           <excludes>
     62             <exclude>com/badlogic/gdx/backends/gwt/emu/java/lang/System.java</exclude>
     63           </excludes>
     64         </configuration>
     65       </plugin>
     66 
     67       <plugin>
     68         <groupId>org.apache.maven.plugins</groupId>
     69         <artifactId>maven-source-plugin</artifactId>
     70         <executions>
     71           <execution>
     72             <id>attach-sources</id>
     73             <phase>generate-resources</phase>
     74             <goals>
     75               <goal>jar-no-fork</goal>
     76             </goals>
     77           </execution>
     78         </executions>
     79       </plugin>
     80     </plugins>
     81   </build>
     82 </project>
     83