Thread: [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}-us...@li...</subscribe> + <unsubscribe> + ${pom.artifactId}-us...@li...</unsubscribe> + + <post>${pom.artifactId}-u...@li...</post> + </mailingList> + <mailingList> + <name>Developer List</name> + <subscribe> + ${pom.artifactId}-de...@li...</subscribe> + <unsubscribe> + ${pom.artifactId}-de...@li...</unsubscribe> + + <post>${pom.artifactId}-de...@li...</post> + <archive> + http://sourceforge.net/mailarchive/forum.php?forum_id=51227</archive> + </mailingList> + <mailingList> + <name>Commit List</name> + <subscribe> + ${pom.artifactId}-co...@li...</subscribe> + <unsubscribe> + ${pom.artifactId}-co...@li...</unsubscribe> + </mailingList> + <mailingList> + <name>Tracker List</name> + <subscribe> + ${pom.artifactId}-tr...@li...</subscribe> + <unsubscribe> + ${pom.artifactId}-tr...@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. |
From: <mpu...@us...> - 2007-10-06 00:59:44
|
Revision: 155 http://mud4j.svn.sourceforge.net/mud4j/?rev=155&view=rev Author: mpurland Date: 2007-10-05 17:59:42 -0700 (Fri, 05 Oct 2007) Log Message: ----------- Allow child projects to generate eclipse settings with sources/javadoc. Modified Paths: -------------- trunk/mud4j/pom.xml Modified: trunk/mud4j/pom.xml =================================================================== --- trunk/mud4j/pom.xml 2007-10-06 00:59:26 UTC (rev 154) +++ trunk/mud4j/pom.xml 2007-10-06 00:59:42 UTC (rev 155) @@ -186,7 +186,16 @@ <groupId>org.codehaus.mojo</groupId> <artifactId>dashboard-maven-plugin</artifactId> <version>1.0-SNAPSHOT</version> - </plugin> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-eclipse-plugin</artifactId> + <configuration> + <downloadSources>true</downloadSources> + <downloadJavadocs>true</downloadJavadocs> + </configuration> + </plugin> </plugins> </reporting> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <mpu...@us...> - 2008-03-12 21:50:21
|
Revision: 161 http://mud4j.svn.sourceforge.net/mud4j/?rev=161&view=rev Author: mpurland Date: 2008-03-12 14:50:20 -0700 (Wed, 12 Mar 2008) Log Message: ----------- Update pom.xml for build. Modified Paths: -------------- trunk/mud4j/pom.xml Modified: trunk/mud4j/pom.xml =================================================================== --- trunk/mud4j/pom.xml 2008-03-12 21:50:16 UTC (rev 160) +++ trunk/mud4j/pom.xml 2008-03-12 21:50:20 UTC (rev 161) @@ -1,236 +1,271 @@ -<?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> - - <url>http://mud4j.sf.net/</url> - <inceptionYear>2006</inceptionYear> - - <repositories> - <repository> - <id>Codehaus Snapshots</id> - <url>http://snapshots.repository.codehaus.org/</url> - <snapshots> - <enabled>true</enabled> - </snapshots> - <releases> - <enabled>false</enabled> - </releases> - </repository> - </repositories> - <pluginRepositories> - <pluginRepository> - <id>Codehaus Snapshots</id> - <url>http://snapshots.repository.codehaus.org/</url> - <snapshots> - <enabled>true</enabled> - </snapshots> - <releases> - <enabled>false</enabled> - </releases> - </pluginRepository> - </pluginRepositories> - - <licenses> - <license> - <name>Apache 2</name> - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> - <distribution>repo</distribution> - <comments>A business-friendly OSS license</comments> - </license> - </licenses> - - <organization> - <name>mud4j</name> - <url>http://sourceforge.net/projects/mud4j</url> - </organization> - - <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> - - <distributionManagement> - <site> - <id>mud4j website</id> - <name>mud4j Website</name> - <url> - scp://shell.sourceforge.net/home/groups/m/mu/mud4j/htdocs/</url> - </site> - </distributionManagement> - - <scm> - <connection> - scm:svn:https://svn.sourceforge.net/svnroot/mud4j</connection> - <developerConnection> - scm:svn:https://svn.sourceforge.net/svnroot/mud4j</developerConnection> - <tag>HEAD</tag> - <url>http://mud4j.svn.sourceforge.net/viewvc/mud4j/trunk/</url> - </scm> - - <!-- any mailing lists for the project --> - <mailingLists> - <mailingList> - <name>User List</name> - <subscribe> - ${pom.artifactId}-us...@li...</subscribe> - <unsubscribe> - ${pom.artifactId}-us...@li...</unsubscribe> - - <post>${pom.artifactId}-u...@li...</post> - </mailingList> - <mailingList> - <name>Developer List</name> - <subscribe> - ${pom.artifactId}-de...@li...</subscribe> - <unsubscribe> - ${pom.artifactId}-de...@li...</unsubscribe> - - <post>${pom.artifactId}-de...@li...</post> - <archive> - http://sourceforge.net/mailarchive/forum.php?forum_id=51227</archive> - </mailingList> - <mailingList> - <name>Commit List</name> - <subscribe> - ${pom.artifactId}-co...@li...</subscribe> - <unsubscribe> - ${pom.artifactId}-co...@li...</unsubscribe> - </mailingList> - <mailingList> - <name>Tracker List</name> - <subscribe> - ${pom.artifactId}-tr...@li...</subscribe> - <unsubscribe> - ${pom.artifactId}-tr...@li...</unsubscribe> - </mailingList> - </mailingLists> - - <!-- Developers/Contributors for this project --> - <developers> - <developer> - <name>Matthew Purland</name> - <id>mpurland</id> - <roles> - <role>Founder</role> - <role>Developer</role> - </roles> - <timezone>-6</timezone> - <email>mpu...@us...</email> - </developer> - </developers> - <contributors/> - - <modules> - <module>../mud4j-core</module> - <module>../mud4j-telnet</module> - <module>../mud4j-web</module> - </modules> - <reporting> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-project-info-reports-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jxr-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-changes-plugin</artifactId> - <reportSets> - <reportSet> - <reports> - <report>changes-report</report> - </reports> - </reportSet> - </reportSets> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - </plugin> - <!-- <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-changelog-plugin</artifactId> - </plugin> --> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>cobertura-maven-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-site-plugin</artifactId> - <configuration> - - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-report-plugin</artifactId> - </plugin> - <!-- Last report --> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>dashboard-maven-plugin</artifactId> - <version>1.0-SNAPSHOT</version> - </plugin> - - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-eclipse-plugin</artifactId> - <configuration> - <downloadSources>true</downloadSources> - <downloadJavadocs>true</downloadJavadocs> - </configuration> - </plugin> - </plugins> - </reporting> - - <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> - <plugin> - <artifactId>maven-plugin-plugin</artifactId> - <configuration> - <goalPrefix>dashboard-report</goalPrefix> - </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> +<?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> + + <url>http://mud4j.sf.net/</url> + <inceptionYear>2006</inceptionYear> + + <repositories> + <repository> + <id>Codehaus Snapshots</id> + <url>http://snapshots.repository.codehaus.org/</url> + <snapshots> + <enabled>true</enabled> + </snapshots> + <releases> + <enabled>false</enabled> + </releases> + </repository> + </repositories> + <pluginRepositories> + <pluginRepository> + <id>Codehaus Snapshots</id> + <url>http://snapshots.repository.codehaus.org/</url> + <snapshots> + <enabled>true</enabled> + </snapshots> + <releases> + <enabled>false</enabled> + </releases> + </pluginRepository> + </pluginRepositories> + + <licenses> + <license> + <name>Apache 2</name> + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + <comments>A business-friendly OSS license</comments> + </license> + </licenses> + + <organization> + <name>mud4j</name> + <url>http://sourceforge.net/projects/mud4j</url> + </organization> + + <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> + + <distributionManagement> + <site> + <id>mud4j website</id> + <name>mud4j Website</name> + <url> + scp://shell.sourceforge.net/home/groups/m/mu/mud4j/htdocs/ + </url> + </site> + </distributionManagement> + + <scm> + <connection> + scm:svn:https://svn.sourceforge.net/svnroot/mud4j + </connection> + <developerConnection> + scm:svn:https://svn.sourceforge.net/svnroot/mud4j + </developerConnection> + <tag>HEAD</tag> + <url>http://mud4j.svn.sourceforge.net/viewvc/mud4j/trunk/</url> + </scm> + + <!-- any mailing lists for the project --> + <mailingLists> + <mailingList> + <name>User List</name> + <subscribe> + ${pom.artifactId}-us...@li... + </subscribe> + <unsubscribe> + ${pom.artifactId}-us...@li... + </unsubscribe> + + <post>${pom.artifactId}-u...@li...</post> + </mailingList> + <mailingList> + <name>Developer List</name> + <subscribe> + ${pom.artifactId}-de...@li... + </subscribe> + <unsubscribe> + ${pom.artifactId}-de...@li... + </unsubscribe> + + <post> + ${pom.artifactId}-de...@li... + </post> + <archive> + http://sourceforge.net/mailarchive/forum.php?forum_id=51227 + </archive> + </mailingList> + <mailingList> + <name>Commit List</name> + <subscribe> + ${pom.artifactId}-co...@li... + </subscribe> + <unsubscribe> + ${pom.artifactId}-co...@li... + </unsubscribe> + </mailingList> + <mailingList> + <name>Tracker List</name> + <subscribe> + ${pom.artifactId}-tr...@li... + </subscribe> + <unsubscribe> + ${pom.artifactId}-tr...@li... + </unsubscribe> + </mailingList> + </mailingLists> + + <!-- Developers/Contributors for this project --> + <developers> + <developer> + <name>Matthew Purland</name> + <id>mpurland</id> + <roles> + <role>Founder</role> + <role>Developer</role> + </roles> + <timezone>-6</timezone> + <email>mpu...@us...</email> + </developer> + </developers> + <contributors /> + + <modules> + <module>../mud4j-core</module> + <module>../mud4j-telnet</module> + <module>../mud4j-web</module> + </modules> + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId> + maven-project-info-reports-plugin + </artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jxr-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-changes-plugin</artifactId> + <reportSets> + <reportSet> + <reports> + <report>changes-report</report> + </reports> + </reportSet> + </reportSets> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + </plugin> + <!-- <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-changelog-plugin</artifactId> + </plugin> --> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <configuration> + + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-report-plugin</artifactId> + </plugin> + <!-- Last report --> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>dashboard-maven-plugin</artifactId> + <version>1.0-SNAPSHOT</version> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-eclipse-plugin</artifactId> + <configuration> + <downloadSources>true</downloadSources> + <downloadJavadocs>true</downloadJavadocs> + </configuration> + </plugin> + </plugins> + </reporting> + + <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> + <plugin> + <artifactId>maven-plugin-plugin</artifactId> + <configuration> + <goalPrefix>dashboard-report</goalPrefix> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <includes> + <include>src/test/**/*Test.java</include> + </includes> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-eclipse-plugin</artifactId> + <configuration> + <downloadSources>true</downloadSources> + <downloadJavadocs>true</downloadJavadocs> + </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. |