1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <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>eu.tankernn.pong</groupId>
- <artifactId>tankernn-pong</artifactId>
- <version>0.0.1</version>
- <name>Pong</name>
- <description>Pong. What more can I say?</description>
- <repositories>
- <repository>
- <id>tankernn</id>
- <name>Tankernn Maven Repository</name>
- <url>http://repo.maven.tankernn.eu</url>
- </repository>
- </repositories>
- <dependencies>
- <dependency>
- <groupId>eu.tankernn.gameEngine</groupId>
- <artifactId>tankernn-game-engine</artifactId>
- <version>1.2</version>
- </dependency>
- </dependencies>
- <build>
- <sourceDirectory>src</sourceDirectory>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.5.1</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>com.googlecode.mavennatives</groupId>
- <artifactId>maven-nativedependencies-plugin</artifactId>
- <version>0.0.6</version>
- <executions>
- <execution>
- <id>unpacknatives</id>
- <phase>package</phase>
- <goals>
- <goal>copy</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|