Advertisement
Guest User

Untitled

a guest
May 10th, 2014
915
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.11 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.  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.  
  5.   <groupId>de.r2soft.empires.client</groupId>
  6.   <artifactId>Client</artifactId>
  7.   <packaging>jar</packaging>
  8.   <version>Alpha-1.3</version>
  9.   <name>Client</name>
  10.  
  11.   <url>http://maven.apache.org</url>
  12.  
  13.   <!-- Project properties -->
  14.   <properties>
  15.     <mainClass>de.r2soft.empires.client.core.MainClientLauncher.java</mainClass>
  16.     <gdx.version>0.9.9</gdx.version>
  17.     <gwt.version>2.5.0</gwt.version>
  18.     <gwt.maven.version>2.5.0</gwt.maven.version>
  19.   </properties>
  20.  
  21.   <repositories>
  22.     <repository>
  23.       <id>gdx-nightlies</id>
  24.       <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  25.     </repository>
  26.   </repositories>
  27.  
  28.   <dependencies>
  29.  
  30.     <!-- Change version number when updating the framework! -->
  31.     <dependency>
  32.       <groupId>de.r2soft.empires.framework</groupId>
  33.       <artifactId>Framework</artifactId>
  34.       <version>Alpha-1.2</version>
  35.     </dependency>
  36.  
  37.     <!-- LIBGDX CORE -->
  38.     <dependency>
  39.       <groupId>com.badlogicgames.gdx</groupId>
  40.       <artifactId>gdx</artifactId>
  41.       <version>${gdx.version}</version>
  42.     </dependency>
  43.  
  44.     <!-- LWGJL BACKENDS -->
  45.     <dependency>
  46.       <groupId>com.badlogicgames.gdx</groupId>
  47.       <artifactId>gdx-backend-lwjgl</artifactId>
  48.       <version>${gdx.version}</version>
  49.     </dependency>
  50.  
  51.     <!-- NATIVE LIBRARY -->
  52.     <dependency>
  53.       <groupId>com.badlogicgames.gdx</groupId>
  54.       <artifactId>gdx-platform</artifactId>
  55.       <version>${gdx.version}</version>
  56.       <classifier>natives-desktop</classifier>
  57.     </dependency>
  58.  
  59.     <!-- Library no longer properly supported. Search for alternatives -->
  60.     <dependency>
  61.       <groupId>com.aurelienribon</groupId>
  62.       <artifactId>tween-engine-api</artifactId>
  63.       <version>6.3.3</version>
  64.       <scope>system</scope>
  65.       <systemPath>${project.basedir}/lib/UTE/tween-engine-api.jar</systemPath>
  66.     </dependency>
  67.    
  68.   </dependencies>
  69.  
  70.   <!-- BUILD OPTIONS BELOW!-->
  71.   <build>
  72.     <sourceDirectory>src</sourceDirectory>
  73.       <resources>
  74.         <resource>
  75.           <directory>assets</directory>
  76.         </resource>
  77.       </resources>
  78.  
  79.     <plugins>
  80.       <plugin>
  81.           <artifactId>maven-assembly-plugin</artifactId>
  82.           <version>2.4</version>
  83.           <configuration>
  84.             <descriptorRefs>
  85.               <descriptorRef>jar-with-dependencies</descriptorRef>
  86.             </descriptorRefs>
  87.             <archive>
  88.               <manifest>
  89.                 <mainClass>${mainClass}</mainClass>
  90.               </manifest>
  91.             </archive>
  92.           </configuration>
  93.           <executions>
  94.             <execution>
  95.               <id>make-assembly</id>
  96.               <phase>package</phase>
  97.               <goals>
  98.                 <goal>single</goal>
  99.               </goals>
  100.             </execution>
  101.           </executions>
  102.         </plugin>
  103.       </plugins>
  104.     </build>
  105. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement