mirror of
https://gitlab.com/xonotic/xonotic
synced 2025-02-08 22:47:33 +00:00
84 lines
2.3 KiB
XML
84 lines
2.3 KiB
XML
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>NexuizDemoRecorder</groupId>
|
|
<artifactId>NexuizDemoRecorder</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>0.3</version>
|
|
<name>NexuizDemoRecorder</name>
|
|
<url>http://maven.apache.org</url>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.miglayout</groupId>
|
|
<artifactId>miglayout</artifactId>
|
|
<version>3.7.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.swinglabs</groupId>
|
|
<artifactId>swingx</artifactId>
|
|
<version>1.6</version>
|
|
<exclusions>
|
|
<!-- Exclude unneeded libs that have been transitively resolved for SwingX -->
|
|
<exclusion>
|
|
<groupId>org.swinglabs</groupId>
|
|
<artifactId>swing-worker</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.jhlabs</groupId>
|
|
<artifactId>filters</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.help</groupId>
|
|
<artifactId>javahelp</artifactId>
|
|
<version>2.0.02</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.0.2</version>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<addClasspath>true</addClasspath>
|
|
<classpathPrefix>lib/</classpathPrefix>
|
|
<mainClass>com.nexuiz.demorecorder.main.Driver</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|