Project: * Clean-up (Eclipse cruft, unused files, etc...) * Git-specific changes * Maven POMs clean-up and changes for the build system * Version set to 1.0.0-0 in the development branches * Maven plug-ins updated to latest versions * Very partial dev. documentation added
This commit is contained in:
parent
c74e30d5ba
commit
0665a760de
1439 changed files with 1020 additions and 1649 deletions
legacyworlds-web
|
@ -4,19 +4,60 @@
|
|||
<parent>
|
||||
<artifactId>legacyworlds</artifactId>
|
||||
<groupId>com.deepclone.lw</groupId>
|
||||
<version>5.99.1</version>
|
||||
<version>1.0.0</version>
|
||||
<relativePath>../legacyworlds/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<groupId>com.deepclone.lw</groupId>
|
||||
<artifactId>legacyworlds-web</artifactId>
|
||||
<version>5.99.1</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>Legacy Worlds web sites</name>
|
||||
<name>Legacy Worlds - Web</name>
|
||||
<description>Root module for Legacy Worlds web sites</description>
|
||||
|
||||
<modules>
|
||||
<module>legacyworlds-web-main</module>
|
||||
<module>legacyworlds-web-admin</module>
|
||||
<module>legacyworlds-web-beans</module>
|
||||
<module>../legacyworlds-web-main</module>
|
||||
<module>../legacyworlds-web-admin</module>
|
||||
<module>../legacyworlds-web-beans</module>
|
||||
</modules>
|
||||
</project>
|
||||
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
|
||||
<!--
|
||||
- Default configuration for the WAR plug-in
|
||||
-->
|
||||
<plugin>
|
||||
<artifactId>maven-war-plugin</artifactId>
|
||||
<configuration>
|
||||
<attachClasses>true</attachClasses>
|
||||
<archiveClasses>true</archiveClasses>
|
||||
<webResources>
|
||||
<!-- Copy resources that do not need filtering -->
|
||||
<resource>
|
||||
<directory>Content/Raw</directory>
|
||||
<filtering>false</filtering>
|
||||
</resource>
|
||||
<!-- Copy resources that need filtering to WEB-INF/ -->
|
||||
<resource>
|
||||
<directory>Content/Filtered</directory>
|
||||
<targetPath>WEB-INF</targetPath>
|
||||
<filtering>true</filtering>
|
||||
</resource>
|
||||
</webResources>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>build-war</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>war</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
||||
|
|
Reference in a new issue