| 1 |
755 |
jeremy |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 2 |
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
| 3 |
|
|
<modelVersion>4.0.0</modelVersion>
|
| 4 |
|
|
<parent>
|
| 5 |
|
|
<groupId>org.newdawn</groupId>
|
| 6 |
|
|
<artifactId>dvsf</artifactId>
|
| 7 |
|
|
<version>0.0.1-SNAPSHOT</version>
|
| 8 |
|
|
</parent>
|
| 9 |
751 |
jeremy |
|
| 10 |
755 |
jeremy |
<artifactId>dvsf-client</artifactId>
|
| 11 |
|
|
<name>Darkvoid: Starfighter - client</name>
|
| 12 |
751 |
jeremy |
|
| 13 |
755 |
jeremy |
<build>
|
| 14 |
|
|
<sourceDirectory>../src</sourceDirectory>
|
| 15 |
|
|
<plugins>
|
| 16 |
|
|
<plugin>
|
| 17 |
|
|
<groupId>org.apache.maven.plugins</groupId>
|
| 18 |
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
| 19 |
|
|
<configuration>
|
| 20 |
|
|
<source>1.6</source>
|
| 21 |
|
|
<target>1.6</target>
|
| 22 |
|
|
<encoding>UTF-8</encoding>
|
| 23 |
|
|
</configuration>
|
| 24 |
|
|
</plugin>
|
| 25 |
|
|
<plugin>
|
| 26 |
|
|
<artifactId>maven-resources-plugin</artifactId>
|
| 27 |
|
|
<configuration>
|
| 28 |
|
|
<encoding>UTF-8</encoding>
|
| 29 |
|
|
</configuration>
|
| 30 |
|
|
</plugin>
|
| 31 |
|
|
<plugin>
|
| 32 |
|
|
<groupId>org.codehaus.mojo.webstart</groupId>
|
| 33 |
|
|
<artifactId>webstart-maven-plugin</artifactId>
|
| 34 |
|
|
<version>1.0-alpha-2</version>
|
| 35 |
|
|
<executions>
|
| 36 |
|
|
<execution>
|
| 37 |
|
|
<goals>
|
| 38 |
|
|
<goal>jnlp</goal>
|
| 39 |
|
|
</goals>
|
| 40 |
|
|
</execution>
|
| 41 |
|
|
</executions>
|
| 42 |
|
|
<configuration>
|
| 43 |
|
|
<!--
|
| 44 |
|
|
<dependencies>
|
| 45 |
|
|
<excludes>
|
| 46 |
|
|
<exclude>org.lwjgl:lwjgl</exclude>
|
| 47 |
|
|
<exclude>org.lwjgl:lwjgl_util</exclude>
|
| 48 |
|
|
<exclude>net.java.games.input:jinput</exclude>
|
| 49 |
|
|
</excludes>
|
| 50 |
|
|
</dependencies>
|
| 51 |
|
|
-->
|
| 52 |
|
|
<resourcesDirectory>../webstart/resources</resourcesDirectory>
|
| 53 |
|
|
|
| 54 |
|
|
<jnlp>
|
| 55 |
|
|
<!-- default values -->
|
| 56 |
|
|
<inputTemplateResourcePath>${project.basedir}/../</inputTemplateResourcePath>
|
| 57 |
|
|
<inputTemplate>webstart/jnlp/template.vm</inputTemplate>
|
| 58 |
|
|
<outputFile>dvsf.jnlp</outputFile>
|
| 59 |
|
|
|
| 60 |
|
|
<mainClass>org.newdawn.darkvoid.client.DVSFClient</mainClass>
|
| 61 |
|
|
</jnlp>
|
| 62 |
|
|
|
| 63 |
|
|
|
| 64 |
|
|
<sign>
|
| 65 |
757 |
jeremy |
<keystore>${keystore}</keystore>
|
| 66 |
|
|
<keypass>${keypass}</keypass>
|
| 67 |
|
|
<storepass>${storepass}</storepass>
|
| 68 |
|
|
<alias>${alias}</alias>
|
| 69 |
755 |
jeremy |
|
| 70 |
|
|
<verify>true</verify> <!-- verify that the signing operation succeeded -->
|
| 71 |
|
|
|
| 72 |
|
|
</sign>
|
| 73 |
|
|
|
| 74 |
|
|
<!-- BUILDING PROCESS -->
|
| 75 |
|
|
<!--
|
| 76 |
|
|
<pack200>true</pack200>
|
| 77 |
|
|
<gzip>true</gzip> --> <!-- default force when pack200 false, true when pack200 selected ?? -->
|
| 78 |
|
|
|
| 79 |
|
|
<!--
|
| 80 |
|
|
causes a version attribute to be output in each jar resource
|
| 81 |
|
|
element, optional, default is false
|
| 82 |
|
|
<outputJarVersions>true</outputJarVersions>
|
| 83 |
|
|
-->
|
| 84 |
|
|
|
| 85 |
|
|
<!--install>false</install--> <!-- not yet supported -->
|
| 86 |
|
|
<!-- <verbose>true</verbose> -->
|
| 87 |
|
|
|
| 88 |
|
|
</configuration>
|
| 89 |
|
|
</plugin>
|
| 90 |
|
|
</plugins>
|
| 91 |
|
|
</build>
|
| 92 |
|
|
<dependencies>
|
| 93 |
|
|
<dependency>
|
| 94 |
|
|
<groupId>com.ardor3d</groupId>
|
| 95 |
|
|
<artifactId>ardor3d-core</artifactId>
|
| 96 |
|
|
<version>0.7-SNAPSHOT</version>
|
| 97 |
|
|
</dependency>
|
| 98 |
|
|
<dependency>
|
| 99 |
|
|
<groupId>com.ardor3d</groupId>
|
| 100 |
|
|
<artifactId>ardor3d-lwjgl</artifactId>
|
| 101 |
|
|
<version>0.7-SNAPSHOT</version>
|
| 102 |
|
|
</dependency>
|
| 103 |
|
|
<dependency>
|
| 104 |
|
|
<groupId>com.ardor3d</groupId>
|
| 105 |
|
|
<artifactId>ardor3d-awt</artifactId>
|
| 106 |
|
|
<version>0.7-SNAPSHOT</version>
|
| 107 |
|
|
</dependency>
|
| 108 |
|
|
<dependency>
|
| 109 |
|
|
<groupId>org.springframework</groupId>
|
| 110 |
|
|
<artifactId>spring-core</artifactId>
|
| 111 |
|
|
<version>3.0.0.RELEASE</version>
|
| 112 |
|
|
</dependency>
|
| 113 |
|
|
<dependency>
|
| 114 |
|
|
<groupId>commons-io</groupId>
|
| 115 |
|
|
<artifactId>commons-io</artifactId>
|
| 116 |
|
|
<version>1.4</version>
|
| 117 |
|
|
</dependency>
|
| 118 |
|
|
<dependency>
|
| 119 |
|
|
<groupId>commons-lang</groupId>
|
| 120 |
|
|
<artifactId>commons-lang</artifactId>
|
| 121 |
|
|
<version>2.4</version>
|
| 122 |
|
|
</dependency>
|
| 123 |
|
|
<dependency>
|
| 124 |
|
|
<groupId>org.springframework</groupId>
|
| 125 |
|
|
<artifactId>spring-context</artifactId>
|
| 126 |
|
|
<version>3.0.0.RELEASE</version>
|
| 127 |
|
|
</dependency>
|
| 128 |
|
|
<dependency>
|
| 129 |
|
|
<groupId>org.newdawn</groupId>
|
| 130 |
|
|
<artifactId>dvsf-resources</artifactId>
|
| 131 |
|
|
<version>${project.version}</version>
|
| 132 |
|
|
<scope>runtime</scope>
|
| 133 |
|
|
</dependency>
|
| 134 |
|
|
<dependency>
|
| 135 |
|
|
<groupId>org.newdawn</groupId>
|
| 136 |
|
|
<artifactId>dvsf-natives</artifactId>
|
| 137 |
|
|
<version>${project.version}</version>
|
| 138 |
|
|
<classifier>linux-natives</classifier>
|
| 139 |
|
|
<scope>runtime</scope>
|
| 140 |
|
|
</dependency>
|
| 141 |
|
|
<dependency>
|
| 142 |
|
|
<groupId>org.newdawn</groupId>
|
| 143 |
|
|
<artifactId>dvsf-natives</artifactId>
|
| 144 |
|
|
<version>${project.version}</version>
|
| 145 |
|
|
<classifier>osx-natives</classifier>
|
| 146 |
|
|
<scope>runtime</scope>
|
| 147 |
|
|
</dependency>
|
| 148 |
|
|
<dependency>
|
| 149 |
|
|
<groupId>org.newdawn</groupId>
|
| 150 |
|
|
<artifactId>dvsf-natives</artifactId>
|
| 151 |
|
|
<version>${project.version}</version>
|
| 152 |
|
|
<classifier>windows-natives</classifier>
|
| 153 |
|
|
<scope>runtime</scope>
|
| 154 |
|
|
</dependency>
|
| 155 |
|
|
</dependencies>
|
| 156 |
751 |
jeremy |
</project>
|