[mud4j-commit] SF.net SVN: mud4j: [98] trunk/mud4j/pom.xml
Status: Pre-Alpha
Brought to you by:
mpurland
|
From: <mpu...@us...> - 2007-01-14 00:37:41
|
Revision: 98
http://mud4j.svn.sourceforge.net/mud4j/?rev=98&view=rev
Author: mpurland
Date: 2007-01-13 16:21:37 -0800 (Sat, 13 Jan 2007)
Log Message:
-----------
Add pom.xml for Maven 2.x.
Added Paths:
-----------
trunk/mud4j/pom.xml
Added: trunk/mud4j/pom.xml
===================================================================
--- trunk/mud4j/pom.xml (rev 0)
+++ trunk/mud4j/pom.xml 2007-01-14 00:21:37 UTC (rev 98)
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<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>
+ <packaging>pom</packaging>
+ <name>mud4j</name>
+ <groupId>net.sf.mud4j</groupId>
+ <artifactId>mud4j-master</artifactId>
+ <version>1.0-SNAPSHOT</version>
+
+ <description> A framework for MUD and game servers to sedparate logic into domain tiers.
+ This will separate business logic and features of creating a game server and also let
+ dependent projects focus on game domain logic and content.
+ </description>
+
+ <!-- any mailing lists for the project -->
+ <mailingLists>
+ <mailingList>
+ <name>User List</name>
+ <subscribe>
+ ${pom.artifactId}-use...@li...</subscribe>
+ <unsubscribe>
+ ${pom.artifactId}-use...@li...</unsubscribe>
+
+ <post>${pom.artifactId}-us...@li...</post>
+ </mailingList>
+ <mailingList>
+ <name>Developer List</name>
+ <subscribe>
+ ${pom.artifactId}-dev...@li...</subscribe>
+ <unsubscribe>
+ ${pom.artifactId}-dev...@li...</unsubscribe>
+
+ <post>${pom.artifactId}-dev...@li...</post>
+ <archive>
+ http://sourceforge.net/mailarchive/forum.php?forum_id=51227</archive>
+ </mailingList>
+ <mailingList>
+ <name>Commit List</name>
+ <subscribe>
+ ${pom.artifactId}-com...@li...</subscribe>
+ <unsubscribe>
+ ${pom.artifactId}-com...@li...</unsubscribe>
+ </mailingList>
+ <mailingList>
+ <name>Tracker List</name>
+ <subscribe>
+ ${pom.artifactId}-tra...@li...</subscribe>
+ <unsubscribe>
+ ${pom.artifactId}-tra...@li...</unsubscribe>
+ </mailingList>
+ </mailingLists>
+
+ <!-- Dependencies -->
+ <dependencies>
+ </dependencies>
+
+ <modules>
+ <module>../mud4j-core</module>
+ <module>../mud4j-telnet</module>
+ <module>../mud4j-web</module>
+ </modules>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ <defaultGoal>jar</defaultGoal>
+ <sourceDirectory>src/java</sourceDirectory>
+ <testSourceDirectory>src/test/unit</testSourceDirectory>
+ <resources>
+ <resource>
+ <directory>src/resources</directory>
+ <filtering>false</filtering>
+ </resource>
+ <resource>
+ <directory>${basedir}/src/resources/logging</directory>
+ <includes>
+ <include>log4j.properties</include>
+ </includes>
+ <filtering>false</filtering>
+ </resource>
+ </resources>
+ </build>
+</project>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|