12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <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.breakout</groupId>
- <artifactId>breakout</artifactId>
- <version>0.0.1</version>
- <name>Breakout</name>
- <description>A simple Breakout-clone.</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>
- <finalName>${project.artifactId}-${project.version}.${build.number}</finalName>
- <plugins>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- <configuration>
- <archive>
- <manifest>
- <addClasspath>true</addClasspath>
- <mainClass>eu.tankernn.breakout.Breakout</mainClass>
- </manifest>
- </archive>
- <!-- The filename of the assembled distribution file defualt ${project.build.finalName} -->
- <finalName>${project.build.finalName}</finalName>
- <appendAssemblyId>false</appendAssemblyId>
- </configuration>
- </execution>
- </executions>
- <configuration>
- <descriptorRefs>
- <descriptorRef>jar-with-dependencies</descriptorRef>
- </descriptorRefs>
- </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>
- <resources>
- <resource>
- <directory>res</directory>
- <excludes>
- </excludes>
- </resource>
- </resources>
- </build>
- <properties>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- <build.number>SNAPSHOT</build.number>
- </properties>
- </project>
|