Emmanuel BENOîT
631f49fb86
* Added base classes for all importable data. These new classes should be used for all future loaders; all existing loaders that are modified should be updated. * I18N loader rewritten to make use of the new base classes. External strings are now read using the XML data file's path as the base directory. * Updated all external I18N definitions and moved the existing files around in an attempt to make the data directory somewhat more livable. * Added dependency management entry for the server's main package to the root project, updated server distribution package accordingly. Added dependency on the server's main package to the server's testing package.
52 lines
No EOL
1.7 KiB
XML
52 lines
No EOL
1.7 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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<artifactId>legacyworlds-server</artifactId>
|
|
<groupId>com.deepclone.lw</groupId>
|
|
<version>1.0.0</version>
|
|
<relativePath>../legacyworlds-server/pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>legacyworlds-server-DIST</artifactId>
|
|
<version>${legacyworlds.version.main}.${legacyworlds.version.release}-${legacyworlds.version.build}</version>
|
|
|
|
<packaging>pom</packaging>
|
|
<name>Legacy Worlds - Server - Packaging</name>
|
|
<description>This Maven module is responsible for creating the Legacy Worlds server's packaging.</description>
|
|
|
|
|
|
<!-- Depend solely on the server's JAR, other dependencies will update automatically -->
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.deepclone.lw</groupId>
|
|
<artifactId>legacyworlds-server-main</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<!-- Use the assembly plug-in to generate the distribution -->
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>distribution-assembly</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
<configuration>
|
|
<attach>false</attach>
|
|
<finalName>legacyworlds-server-${project.version}</finalName>
|
|
<descriptors>
|
|
<descriptor>src/server.xml</descriptor>
|
|
</descriptors>
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |