Advertisement
Guest User

pom.xml

a guest
Jul 12th, 2015
401
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.04 KB | None | 0 0
  1. <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/xsd/maven-4.0.0.xsd">
  2.   <modelVersion>4.0.0</modelVersion>
  3.   <groupId>ralaTeam</groupId>
  4.   <artifactId>worlds</artifactId>
  5.   <version>0.0.1-SNAPSHOT</version>
  6.   <build>
  7.     <plugins>
  8.     <plugin>
  9.         <groupId>com.googlecode.mavennatives</groupId>
  10.         <artifactId>maven-nativedependencies-plugin</artifactId>
  11.         <version>0.0.5</version>
  12.         <executions>
  13.                 <execution>
  14.                         <id>unpacknatives</id>
  15.                         <phase>generate-resources</phase>
  16.                         <goals>
  17.                                 <goal>copy</goal>
  18.                         </goals>
  19.                 </execution>
  20.         </executions>
  21.     </plugin>
  22.       <plugin>
  23.         <artifactId>maven-assembly-plugin</artifactId>
  24.         <version>2.5.5</version>
  25.         <configuration>
  26.           <descriptorRefs>
  27.             <descriptorRef>jar-with-dependencies</descriptorRef>
  28.           </descriptorRefs>
  29.           <archive>
  30.             <manifest>
  31.               <mainClass>playerClientEngine.playerClientClass</mainClass> <!-- playerClientEngine.playerClientClass / mainServer.mainServerFXMLClass -->
  32.             </manifest>
  33.           </archive>
  34.         </configuration>
  35.         <executions>
  36.           <execution>
  37.             <id>make-assembly</id> <!-- this is used for inheritance merges -->
  38.             <phase>package</phase> <!-- bind to the packaging phase -->
  39.             <goals>
  40.               <goal>single</goal>
  41.             </goals>
  42.           </execution>
  43.         </executions>
  44.       </plugin>
  45.       </plugins>
  46.       </build>
  47.       <repositories>
  48.  
  49.     <repository>
  50.         <id>nifty-maven-repo.sourceforge.net</id>
  51.         <url>http://nifty-gui.sourceforge.net/nifty-maven-repo</url>
  52.     </repository>
  53.  
  54.       <repository>
  55.          <id>localrepoo</id>
  56.          <url>file://${basedir}/nifty-1.4.0-complete</url>
  57.       </repository>
  58.    </repositories>
  59.   <dependencies>
  60.     <dependency>
  61.         <groupId>org.slick2d</groupId>
  62.         <artifactId>slick2d-basic-game-archetype</artifactId>
  63.         <version>1.0.1</version>
  64.     </dependency>
  65.     <dependency>
  66.         <groupId>org.slick2d</groupId>
  67.         <artifactId>slick2d-core</artifactId>
  68.         <version>1.0.1</version>
  69.     </dependency>
  70.     <dependency>
  71.         <groupId>com.esotericsoftware</groupId>
  72.         <artifactId>kryonet</artifactId>
  73.         <version>2.22.0-RC1</version>
  74.     </dependency>
  75.     <dependency>
  76.         <groupId>net.java.jinput</groupId>
  77.         <artifactId>jinput</artifactId>
  78.         <version>2.0.6</version>
  79.     </dependency>
  80.     <dependency>
  81.         <groupId>org.lwjgl.lwjgl</groupId>
  82.         <artifactId>lwjgl</artifactId>
  83.         <version>2.9.1</version>
  84.     </dependency>
  85.     <dependency>
  86.         <groupId>org.controlsfx</groupId>
  87.         <artifactId>controlsfx</artifactId>
  88.         <version>8.0.6_20</version>
  89.     </dependency>
  90.     <dependency>
  91.         <groupId>org.controlsfx</groupId>
  92.         <artifactId>openjfx-dialogs</artifactId>
  93.         <version>1.0.2</version>
  94.     </dependency>
  95.     <dependency>
  96.         <groupId>net.sf.sociaal</groupId>
  97.         <artifactId>xmlpull-xpp3</artifactId>
  98.         <version>3.0.0.20130526</version>
  99.     </dependency>
  100.     <dependency>
  101.         <groupId>com.projectdarkstar.ext.org.lwjgl</groupId>
  102.         <artifactId>lwjgl_util</artifactId>
  103.         <version>2.0rc2</version>
  104.     </dependency>
  105.     <dependency>
  106.         <groupId>org.xerial</groupId>
  107.         <artifactId>sqlite-jdbc</artifactId>
  108.         <version>3.7.15-M1</version>
  109.     </dependency>
  110.     <dependency>
  111.         <groupId>net.sf.sociaal</groupId>
  112.         <artifactId>nifty</artifactId>
  113.         <version>3.0.0.20130526</version>
  114.     </dependency>
  115.     <dependency>
  116.         <groupId>net.sf.sociaal</groupId>
  117.         <artifactId>nifty-default-controls</artifactId>
  118.         <version>3.0.0.20130526</version>
  119.     </dependency>
  120.     <dependency>
  121.         <groupId>net.sf.sociaal</groupId>
  122.         <artifactId>nifty-style-black</artifactId>
  123.         <version>3.0.0.20130526</version>
  124.     </dependency>
  125.   </dependencies>
  126. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement