Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>ralaTeam</groupId>
- <artifactId>worlds</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <build>
- <plugins>
- <plugin>
- <groupId>com.googlecode.mavennatives</groupId>
- <artifactId>maven-nativedependencies-plugin</artifactId>
- <version>0.0.5</version>
- <executions>
- <execution>
- <id>unpacknatives</id>
- <phase>generate-resources</phase>
- <goals>
- <goal>copy</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>2.5.5</version>
- <configuration>
- <descriptorRefs>
- <descriptorRef>jar-with-dependencies</descriptorRef>
- </descriptorRefs>
- <archive>
- <manifest>
- <mainClass>playerClientEngine.playerClientClass</mainClass> <!-- playerClientEngine.playerClientClass / mainServer.mainServerFXMLClass -->
- </manifest>
- </archive>
- </configuration>
- <executions>
- <execution>
- <id>make-assembly</id> <!-- this is used for inheritance merges -->
- <phase>package</phase> <!-- bind to the packaging phase -->
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <repositories>
- <repository>
- <id>nifty-maven-repo.sourceforge.net</id>
- <url>http://nifty-gui.sourceforge.net/nifty-maven-repo</url>
- </repository>
- <repository>
- <id>localrepoo</id>
- <url>file://${basedir}/nifty-1.4.0-complete</url>
- </repository>
- </repositories>
- <dependencies>
- <dependency>
- <groupId>org.slick2d</groupId>
- <artifactId>slick2d-basic-game-archetype</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>org.slick2d</groupId>
- <artifactId>slick2d-core</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>com.esotericsoftware</groupId>
- <artifactId>kryonet</artifactId>
- <version>2.22.0-RC1</version>
- </dependency>
- <dependency>
- <groupId>net.java.jinput</groupId>
- <artifactId>jinput</artifactId>
- <version>2.0.6</version>
- </dependency>
- <dependency>
- <groupId>org.lwjgl.lwjgl</groupId>
- <artifactId>lwjgl</artifactId>
- <version>2.9.1</version>
- </dependency>
- <dependency>
- <groupId>org.controlsfx</groupId>
- <artifactId>controlsfx</artifactId>
- <version>8.0.6_20</version>
- </dependency>
- <dependency>
- <groupId>org.controlsfx</groupId>
- <artifactId>openjfx-dialogs</artifactId>
- <version>1.0.2</version>
- </dependency>
- <dependency>
- <groupId>net.sf.sociaal</groupId>
- <artifactId>xmlpull-xpp3</artifactId>
- <version>3.0.0.20130526</version>
- </dependency>
- <dependency>
- <groupId>com.projectdarkstar.ext.org.lwjgl</groupId>
- <artifactId>lwjgl_util</artifactId>
- <version>2.0rc2</version>
- </dependency>
- <dependency>
- <groupId>org.xerial</groupId>
- <artifactId>sqlite-jdbc</artifactId>
- <version>3.7.15-M1</version>
- </dependency>
- <dependency>
- <groupId>net.sf.sociaal</groupId>
- <artifactId>nifty</artifactId>
- <version>3.0.0.20130526</version>
- </dependency>
- <dependency>
- <groupId>net.sf.sociaal</groupId>
- <artifactId>nifty-default-controls</artifactId>
- <version>3.0.0.20130526</version>
- </dependency>
- <dependency>
- <groupId>net.sf.sociaal</groupId>
- <artifactId>nifty-style-black</artifactId>
- <version>3.0.0.20130526</version>
- </dependency>
- </dependencies>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement