Thread: [mud4j-commit] SF.net SVN: mud4j: [72] trunk/mud4j
Status: Pre-Alpha
Brought to you by:
mpurland
From: <mpu...@us...> - 2006-12-27 18:02:26
|
Revision: 72 http://mud4j.svn.sourceforge.net/mud4j/?rev=72&view=rev Author: mpurland Date: 2006-12-27 10:02:20 -0800 (Wed, 27 Dec 2006) Log Message: ----------- Update project description and mailing list archive information. Modified Paths: -------------- trunk/mud4j/project-root.xml trunk/mud4j/project.xml Modified: trunk/mud4j/project-root.xml =================================================================== --- trunk/mud4j/project-root.xml 2006-12-25 05:28:19 UTC (rev 71) +++ trunk/mud4j/project-root.xml 2006-12-27 18:02:20 UTC (rev 72) @@ -7,12 +7,6 @@ <name>mud4j</name> <groupId>net.sf</groupId> <package>net.sf.mud4j</package> - <shortDescription> A framework for MUD and game servers. - </shortDescription> - <description> A framework for MUD and game servers to separate the domain and select - business logic and features of creating a game server and let dependent projects - focus on game specific logic and content. - </description> <!-- Details about the organization --> <organization> @@ -135,7 +129,7 @@ <report>maven-cobertura-plugin</report> <report>maven-simian-plugin</report> <report>maven-findbugs-plugin</report> - <report>maven-dashboard-plugin</report> + <report>maven-dashboard-plugin</;report> <!--<report>maven-java-plugin</report>--> </reports> <build> Modified: trunk/mud4j/project.xml =================================================================== --- trunk/mud4j/project.xml 2006-12-25 05:28:19 UTC (rev 71) +++ trunk/mud4j/project.xml 2006-12-27 18:02:20 UTC (rev 72) @@ -10,7 +10,16 @@ <package>net.sf.mud4j</package> <artifactId>mud4j</artifactId> <currentVersion>1.0-SNAPSHOT</currentVersion> - + + <shortDescription> + A framework for MUD and game servers. + </shortDescription> + <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> @@ -30,6 +39,7 @@ ${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> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <mpu...@us...> - 2006-12-30 06:22:39
|
Revision: 83 http://mud4j.svn.sourceforge.net/mud4j/?rev=83&view=rev Author: mpurland Date: 2006-12-29 22:22:37 -0800 (Fri, 29 Dec 2006) Log Message: ----------- Add new design considerations and ideas as xdoc. Will be placing ideas in xdoc and todo in todo file for now. Modified Paths: -------------- trunk/mud4j/src/site/xdoc/index.xml trunk/mud4j/src/site/xdoc/navigation.xml trunk/mud4j-core/doc/todo.txt Added Paths: ----------- trunk/mud4j/src/site/xdoc/design-considerations.xml trunk/mud4j/src/site/xdoc/ideas.xml Added: trunk/mud4j/src/site/xdoc/design-considerations.xml =================================================================== --- trunk/mud4j/src/site/xdoc/design-considerations.xml (rev 0) +++ trunk/mud4j/src/site/xdoc/design-considerations.xml 2006-12-30 06:22:37 UTC (rev 83) @@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<document> + <properties> + <title>Design Considerations</title> + <author email="mpu...@us...">Matthew Purland</author> + </properties> + + <!-- An optional head, the description is used for the sitemap. --> + <head> + <meta name="keywords" content="mud4j developer design considerations"/> + <meta name="description" content="mud4j developer design considerations"/> + </head> + + <body> + <h2>Design Considerations</h2> + + <p>These are my thoughts on design considerations.</p> + + <p> + The project is supposed to be a framework for other developers or end-users to use. + It will provide a developer API and will also be functional from a JAR/WAR. It + deviates from the only approach I have seen (the traditional approach). + </p> + + <p> + I am deviating from that approach by providing the core framework (mud4j-core) + and implementing it as if the end application were a multi-tiered enterprise + application. + </p> + + <p> + Multiple pluggable front-ends will be provided to the core framework. This will + include web, and for telnet (mud4j-web, and mud4j-telnet). They will access the + core framework just the same, but I will be implementing this as part of view + pattern and using a two-step view most likely to accomplish this. + </p> + + <p> + It should not be designed for any particular container. The design will include + normal POJOs with a domain model pattern approach. + </p> + + <p> + Spring for IoC and dependency injection with transactional support and + hibernate because I like hibernate better than other ORM mapping frameworks. + </p> + + <p> + I will also plan to use Acegi for security concerns. I haven't designed on what type + of view strategy I want to use. View transformation or something else. + </p> + + <p>Any thoughts or concerns, please do not hesitate to email the project. + </p> + </body> +</document> \ No newline at end of file Added: trunk/mud4j/src/site/xdoc/ideas.xml =================================================================== --- trunk/mud4j/src/site/xdoc/ideas.xml (rev 0) +++ trunk/mud4j/src/site/xdoc/ideas.xml 2006-12-30 06:22:37 UTC (rev 83) @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<document> + <properties> + <title>Ideas</title> + <author email="mpu...@us...">Matthew Purland</author> + </properties> + + <!-- An optional head, the description is used for the sitemap. --> + <head> + <meta name="keywords" content="mud4j developer idea ideas"/> + <meta name="description" content="mud4j developer idea ideas"/> + </head> + + <body> + <h2>Ideas</h2> + <ul> + <h3>Features</h3> + <li>Use aspects. Preferably AspectJ, but may use Spring AOP.</li> + + <li>Implement usage of Spring. Define beans.</li> + + <li> + Implement objects using DAOs (POJOs). Example program areas and worlds as + DAOs. Anything with data attached to it should be a POJO with an associated + DAO. + </li> + + <li> + Create front-end (Swing or Web) for world building and administration. + </li> + + <li>Groovy scripting.</li> + + <li>Support of multiple databases through Spring/hibernate.</li> + + <li> + Usage of HSQLDB for embeddable database support. Will allow ability to + switch to MySQL/Postgres and other drivers supported by hibernate and + spring. + </li> + + <li> + For mud4j-web, embed Jetty container and build WAR for inclusion in + external containers. + </li> + + <h3>Game</h3> + <li> + Allow characters and objects to be interchangeable in certain instances. + Especially at the root level. This would allow certain spells to be castable + upon players and objects. + </li> + + <li>Allow a trackable map for the character to have.</li> + + <li> + Implement composite pattern for items. Treat a collection of items the same + as a single item. + </li> + + <li>Implement tile-based system for worlds/locations (aka rooms)</li> + <li> + Implement floating-based system for movement instead. This would allow + adoption of framework in different types of game systems such as 3D or 2D + isometric games. + </li> + + <li>Command pattern for mud4j commands issued to the core server.</li> + + <li> + For views of core, implement using a two-stage view either using a template + view, or a transform view for web and telnet. + </li> + + <li> + Time (implementation of ticks with observer pattern) to allow runtime + configuration of listeners for when a tick happens all listeners should be + notified. + </li> + </ul> + </body> +</document> \ No newline at end of file Modified: trunk/mud4j/src/site/xdoc/index.xml =================================================================== --- trunk/mud4j/src/site/xdoc/index.xml 2006-12-30 05:42:47 UTC (rev 82) +++ trunk/mud4j/src/site/xdoc/index.xml 2006-12-30 06:22:37 UTC (rev 83) @@ -1,34 +1,44 @@ <?xml version="1.0" encoding="UTF-8"?> <document> - <properties> - <title>Home</title> - <author email="mpu...@us...">Matthew Purland</author> - </properties> - - <!-- An optional head, the description is used for the sitemap. --> - <head> - - <meta name="keywords" - content="mud4j mud game framework"/> - <meta name="description" - content="mud and game framework"/> - </head> - - <body> - - <section name="Overview"> - <p> - A framework for MUD and game servers to separate the domain - and select business logic and features of creating a game server - and let dependent projects focus on game specific logic and content. - </p> - </section> - - <section name="Status"> - <p>Initial source is in SVN.</p> - <p>Any questions, please email the user or developer list, as appropriate.</p> - </section> - - </body> + <properties> + <title>Home</title> + <author email="mpu...@us...">Matthew Purland</author> + </properties> + + <!-- An optional head, the description is used for the sitemap. --> + <head> + + <meta name="keywords" content="mud4j mud game framework"/> + <meta name="description" content="mud and game framework"/> + </head> + + <body> + + <section name="Overview"> + <p> A framework for MUD and game servers to separate 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. + </p> + </section> + + <section name="Development"> + <p> + Click + <a href="design-considerations.html">here</a> for information on design + considerations. + </p> + + <p> + Click <a href="ideas.html">here</a> for information on ideas. + </p> + </section> + + + <section name="Status"> + <p>Initial source is in SVN.</p> + <p>Any questions, please email the user or developer list, as appropriate.</p> + </section> + + </body> </document> \ No newline at end of file Modified: trunk/mud4j/src/site/xdoc/navigation.xml =================================================================== --- trunk/mud4j/src/site/xdoc/navigation.xml 2006-12-30 05:42:47 UTC (rev 82) +++ trunk/mud4j/src/site/xdoc/navigation.xml 2006-12-30 06:22:37 UTC (rev 83) @@ -19,7 +19,8 @@ <!-- Documentation for mud4j project, cannot use common because this is not a real component --> <menu name="Developer Docs"> - <!-- Insert content here --> + <item name="Design Considerations" href="design-considerations.html"/> + <item name="Ideas" href="ideas.html"/> </menu> &activity; <!-- Project reports --> Modified: trunk/mud4j-core/doc/todo.txt =================================================================== --- trunk/mud4j-core/doc/todo.txt 2006-12-30 05:42:47 UTC (rev 82) +++ trunk/mud4j-core/doc/todo.txt 2006-12-30 06:22:37 UTC (rev 83) @@ -1,53 +1,4 @@ mud4j todo ---------- * Change Simian threshold to be below 10 lines in Maven. - -Features --------- -* Use aspects. Preferably AspectJ, but may use Spring AOP. - -* Implement usage of Spring. Define beans. - -* Implement objects using DAOs (POJOs). Example program areas and worlds as - DAOs. Anything with data attached to it should be a POJO with an - associated DAO. - -* Use maven with reports. Use hibernate 3 plugin when using hibernate. - -* Create Swing application for world building and administration. OR - what about a web application that accesses game directly or through SOAP? - -* Groovy scripting - -* Support of multiple databases through Spring/hibernate. - -* Usage of HSQLDB for embeddable database support. Will allow ability to - switch to MySQL/Postgres and other drivers supported by hibernate and spring. - -* For mud4j-web, embed Jetty container and build WAR for inclusion in external - containers. - -Game ----- -* Allow characters and objects to be interchangeable in certain instances. - Especially at the root level. This would allow certain spells to be castable - upon players and objects. - -* Allow a trackable map for the character to have. - -* Implement composite pattern for items. Treat a collection of items - the same as a single item. - -* Implement tile-based system for worlds/locations (aka rooms) -* Implement floating-based system for movement instead. This would - allow adoption of framework in different types of game systems - such as 3D or 2D isometric games. - -* Command pattern for mud4j commands issued to the core server - -* For views of core, implement using a two-stage view either using a - template view, or a transform view for web and telnet - -* Time (implementation of ticks with observer pattern) to allow runtime - configuration of listeners for when a tick happens all listeners should - be notified. \ No newline at end of file +* Use maven with reports. Use hibernate 3 plugin when using hibernate. \ 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-01-07 17:00:43
|
Revision: 89 http://mud4j.svn.sourceforge.net/mud4j/?rev=89&view=rev Author: mpurland Date: 2007-01-07 09:00:41 -0800 (Sun, 07 Jan 2007) Log Message: ----------- Add ideas doc for subprojects. Modified Paths: -------------- trunk/mud4j/src/site/xdoc/navigation-common-docs.xml Added Paths: ----------- trunk/mud4j-telnet/src/site/xdoc/ideas.xml trunk/mud4j-web/src/site/xdoc/ideas.xml Modified: trunk/mud4j/src/site/xdoc/navigation-common-docs.xml =================================================================== --- trunk/mud4j/src/site/xdoc/navigation-common-docs.xml 2006-12-30 07:08:32 UTC (rev 88) +++ trunk/mud4j/src/site/xdoc/navigation-common-docs.xml 2007-01-07 17:00:41 UTC (rev 89) @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <menu name="Developer Docs"> + <item name="Ideas" href="/ideas.html"/> <item name="Tasks" href="/task-list.html"/> <item name="JavaDocs" href="apidocs/index.html" target="_blank"/> <item name="Source Xref" href="xref/index.html" target="_blank"/> Added: trunk/mud4j-telnet/src/site/xdoc/ideas.xml =================================================================== --- trunk/mud4j-telnet/src/site/xdoc/ideas.xml (rev 0) +++ trunk/mud4j-telnet/src/site/xdoc/ideas.xml 2007-01-07 17:00:41 UTC (rev 89) @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<document> + <properties> + <title>Ideas</title> + <author email="mpu...@us...">Matthew Purland</author> + </properties> + + <!-- An optional head, the description is used for the sitemap. --> + <head> + <meta name="keywords" content="mud4j developer idea ideas"/> + <meta name="description" content="mud4j developer idea ideas"/> + </head> + + <body> + <h2>Ideas</h2> + <ul> + <h3>Features</h3> + <li>Allow telnet to use commands and use a CommandManager to store + and validate commands.</li> + </ul> + </body> +</document> \ No newline at end of file Added: trunk/mud4j-web/src/site/xdoc/ideas.xml =================================================================== --- trunk/mud4j-web/src/site/xdoc/ideas.xml (rev 0) +++ trunk/mud4j-web/src/site/xdoc/ideas.xml 2007-01-07 17:00:41 UTC (rev 89) @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<document> + <properties> + <title>Ideas</title> + <author email="mpu...@us...">Matthew Purland</author> + </properties> + + <!-- An optional head, the description is used for the sitemap. --> + <head> + <meta name="keywords" content="mud4j developer idea ideas"/> + <meta name="description" content="mud4j developer idea ideas"/> + </head> + + <body> + <h2>Ideas</h2> + <ul> + <h3>Features</h3> + <li>Use pluggable presentation for web while still + allowing Apache MyFaces to be used.</li> + + <li>Multiple components will be created for mud4j-web in + the form of JSF components</li> + </ul> + </body> +</document> \ 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-01-14 02:44:07
|
Revision: 109 http://mud4j.svn.sourceforge.net/mud4j/?rev=109&view=rev Author: mpurland Date: 2007-01-13 18:44:03 -0800 (Sat, 13 Jan 2007) Log Message: ----------- Update site for Maven 2.x. Modified Paths: -------------- trunk/mud4j/pom.xml Added Paths: ----------- trunk/mud4j/src/site/site.xml trunk/mud4j-core/src/site/site.xml trunk/mud4j-telnet/src/site/site.xml trunk/mud4j-web/src/site/site.xml Removed Paths: ------------- trunk/mud4j/settings.xml trunk/mud4j/src/site/xdoc/menu-activity.xml trunk/mud4j/src/site/xdoc/menu-autocodereview.xml trunk/mud4j/src/site/xdoc/menu-autotest.xml trunk/mud4j/src/site/xdoc/menu-reference.xml trunk/mud4j/src/site/xdoc/navigation-common-activity.xml trunk/mud4j/src/site/xdoc/navigation-common-docs.xml trunk/mud4j/src/site/xdoc/navigation-common-links.xml trunk/mud4j/src/site/xdoc/navigation-common-project-info.xml trunk/mud4j/src/site/xdoc/navigation-common-projects.xml trunk/mud4j/src/site/xdoc/navigation-common-reports.xml trunk/mud4j/src/site/xdoc/navigation.xml trunk/mud4j-core/src/site/xdoc/navigation.xml trunk/mud4j-telnet/src/site/xdoc/navigation.xml trunk/mud4j-web/src/site/xdoc/navigation.xml Modified: trunk/mud4j/pom.xml =================================================================== --- trunk/mud4j/pom.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/pom.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -10,11 +10,71 @@ <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> @@ -53,16 +113,83 @@ </mailingList> </mailingLists> - <!-- Dependencies --> - <dependencies> - </dependencies> + <!-- 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> + </plugins> + </reporting> + <build> <plugins> <plugin> @@ -73,6 +200,12 @@ <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> Deleted: trunk/mud4j/settings.xml =================================================================== Copied: trunk/mud4j/src/site/site.xml (from rev 106, trunk/mud4j/src/site/xdoc/navigation.xml) =================================================================== --- trunk/mud4j/src/site/site.xml (rev 0) +++ trunk/mud4j/src/site/site.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="UTF-8"?> +<site> + <body> + <links> + <item name="Repository" + href="http://mud4j.svn.sourceforge.net/viewvc/mud4j/trunk/"/> + <item name="Dashboard" href="dashboard-report.html"/> + </links> + + <menu name="Projects"> + <item name="mud4j Overview" href="http://mud4j.sf.net/index.html"/> + <item name="mud4j-core" + href="http://mud4j.sf.net/projects/mud4j-core/index.html"/> + <item name="mud4j-telnet" + href="http://mud4j.sf.net/projects/mud4j-telnet/index.html"/> + <item name="mud4j-web" + href="http://mud4j.sf.net/projects/mud4j-web/index.html"/> + </menu> + + <!-- Documentation for mud4j project, cannot use common because this + is not a real component --> + <menu name="Developer Docs"> + <item name="Design Considerations" href="design-considerations.html"/> + <item name="Ideas" href="ideas.html"/> + </menu> + + <menu name="Project Info"> + <item name="Mailing Lists" href="/mail-lists.html"/> + <item name="Project Team" href="/team-list.html"/> + <item name="Dependencies" href="/dependencies.html"/> + <item name="Source Repository" href="/source-repository.html"/> + <item name="Issue Tracking" href="/issue-tracking.html"/> + </menu> + + </body> +</site> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/menu-activity.xml =================================================================== --- trunk/mud4j/src/site/xdoc/menu-activity.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/menu-activity.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,18 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<document> - <properties> - <title>Development Activity</title> - <author email="mpu...@us...">Matthew Purland</author> - </properties> - - <!-- An optional head, the description is used for the sitemap. --> - <head> - <meta name="keywords" content="mud4j development activity"/> - <meta name="description" content="mud4j development activity"/> - </head> - - <body> - <p>Choose a submenu option.</p> - </body> -</document> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/menu-autocodereview.xml =================================================================== --- trunk/mud4j/src/site/xdoc/menu-autocodereview.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/menu-autocodereview.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,18 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<document> - <properties> - <title>Automated Code Reviews</title> - <author email="mpu...@us...">Matthew Purland</author> - </properties> - - <!-- An optional head, the description is used for the sitemap. --> - <head> - <meta name="keywords" content="mud4j automated code reviews"/> - <meta name="description" content="mud4j automated code reviews"/> - </head> - - <body> - <p>Choose a submenu option.</p> - </body> -</document> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/menu-autotest.xml =================================================================== --- trunk/mud4j/src/site/xdoc/menu-autotest.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/menu-autotest.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<document> - <properties> - <title>Automated Unit Tests</title> - <author email="mpu...@us...">Matthew Purland</author> - </properties> - - <!-- An optional head, the description is used for the sitemap. --> - <head> - <meta name="keywords" content="mud4j automated unit tests"/> - <meta name="description" content="mud4j automated unit tests"/> - </head> - - <body> - - <p>Choose a submenu option.</p> - - </body> -</document> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/menu-reference.xml =================================================================== --- trunk/mud4j/src/site/xdoc/menu-reference.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/menu-reference.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<document> - <properties> - <title>Developer Reference Information</title> - <author email="mpu...@us...">Matthew Purland</author> - </properties> - - <!-- An optional head, the description is used for the sitemap. --> - <head> - <meta name="keywords" content="mud4j developer reference information"/> - <meta name="description" content="mud4j developer reference information"/> - </head> - - <body> - - <p>Choose a submenu option.</p> - - </body> -</document> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/navigation-common-activity.xml =================================================================== --- trunk/mud4j/src/site/xdoc/navigation-common-activity.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/navigation-common-activity.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<menu name="Activity"> - <item name="Change Log" href="/changelog-report.html"/> - <item name="Developer Activity" href="/developer-activity-report.html"/> - <item name="File Activity" href="/file-activity-report.html"/> -</menu> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/navigation-common-docs.xml =================================================================== --- trunk/mud4j/src/site/xdoc/navigation-common-docs.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/navigation-common-docs.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<menu name="Developer Docs"> - <item name="Ideas" href="/ideas.html"/> - <item name="Tasks" href="/task-list.html"/> - <item name="JavaDocs" href="apidocs/index.html" target="_blank"/> - <item name="Source Xref" href="xref/index.html" target="_blank"/> - <item name="Test Xref" href="xref-test/index.html" target="_blank"/> -</menu> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/navigation-common-links.xml =================================================================== --- trunk/mud4j/src/site/xdoc/navigation-common-links.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/navigation-common-links.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,7 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<links> - <item name="Repository" href="http://mud4j.svn.sourceforge.net/viewvc/mud4j/trunk/"/> - <item name="Dashboard" href="dashboard-report.html"/> - <item name="Dependencies" href="dependencies.html"/> - <item name="Dependency Convergence" href="dependency-convergence-report.html" /> -</links> Deleted: trunk/mud4j/src/site/xdoc/navigation-common-project-info.xml =================================================================== --- trunk/mud4j/src/site/xdoc/navigation-common-project-info.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/navigation-common-project-info.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<menu name="Project Info"> - <item name="Mailing Lists" href="/mail-lists.html"/> - <item name="Project Team" href="/team-list.html"/> - <item name="Dependencies" href="/dependencies.html"/> - <item name="Source Repository" href="/scm-usage.html"/> - <item name="Issue Tracking" href="/issue-tracking.html"/> -</menu> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/navigation-common-projects.xml =================================================================== --- trunk/mud4j/src/site/xdoc/navigation-common-projects.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/navigation-common-projects.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,7 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<menu name="Projects"> - <item name="mud4j Overview" href="http://mud4j.sf.net/index.html"/> - <item name="mud4j-core" href="http://mud4j.sf.net/projects/mud4j-core/index.html"/> - <item name="mud4j-telnet" href="http://mud4j.sf.net/projects/mud4j-telnet/index.html"/> - <item name="mud4j-web" href="http://mud4j.sf.net/projects/mud4j-web/index.html"/> -</menu> Deleted: trunk/mud4j/src/site/xdoc/navigation-common-reports.xml =================================================================== --- trunk/mud4j/src/site/xdoc/navigation-common-reports.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/navigation-common-reports.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<menu name="Reports"> - <item name="Compile Output" href="java-compiler-output-report.html"/> - <item name="JavaDoc Output" href="javadoc.html"/> - <item name="JavaDoc Warnings" href="javadoc-warnings-report.html"/> - <item name="FindBugs" href="findbugs-report.html"/> - <item name="Checkstyle" href="checkstyle/index.html"/> - <item name="PMD" href="pmd-report.html"/> - <item name="Simian" href="simian-report.html"/> - <item name="Metrics" href="jdepend-report.html"/> - <item name="Link Check" href="linkcheck.html"/> - - <item name="Unit Tests" href="junit-report.html"/> - <item name="Test Coverage" href="cobertura/index.html" target="_blank"/> - <item name="Coverage Violation" href="cobertura/cobertura-check.html"/> - -</menu> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/navigation.xml =================================================================== --- trunk/mud4j/src/site/xdoc/navigation.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/navigation.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,36 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<!DOCTYPE document [ - <!ENTITY links SYSTEM "file:src/site/xdoc/navigation-common-links.xml" > - <!ENTITY projects SYSTEM "file:src/site/xdoc/navigation-common-projects.xml" > - <!ENTITY project-info SYSTEM "file:src/site/xdoc/navigation-common-project-info.xml" > - <!ENTITY activity SYSTEM "file:src/site/xdoc/navigation-common-activity.xml" > -]> - -<project name="mud4j" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://maven.apache.org/maven-navigation-1.0.xsd"> - <title>mud4j</title> - - <body> - &links; - - <sitemap/> - - &projects; - <!-- Documentation for mud4j project, cannot use common because this - is not a real component --> - <menu name="Developer Docs"> - <item name="Design Considerations" href="design-considerations.html"/> - <item name="Ideas" href="ideas.html"/> - </menu> - &activity; - <!-- Project reports --> - <menu name="Reports"> - <item name="Tasks" href="task-list.html"/> - <item name="Link Check" href="linkcheck.html"/> - </menu> - &project-info; - - <!-- Google search --> - <search /> - </body> -</project> Copied: trunk/mud4j-core/src/site/site.xml (from rev 106, trunk/mud4j-core/src/site/xdoc/navigation.xml) =================================================================== --- trunk/mud4j-core/src/site/site.xml (rev 0) +++ trunk/mud4j-core/src/site/site.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<site> + <body> + <links> + <item name="Repository" + href="http://mud4j.svn.sourceforge.net/viewvc/mud4j/trunk/"/> + <item name="Dashboard" href="dashboard-report.html"/> + </links> + <menu name="Projects"> + <item name="mud4j Overview" href="http://mud4j.sf.net/index.html"/> + <item name="mud4j-core" + href="http://mud4j.sf.net/projects/mud4j-core/index.html"/> + <item name="mud4j-telnet" + href="http://mud4j.sf.net/projects/mud4j-telnet/index.html"/> + <item name="mud4j-web" + href="http://mud4j.sf.net/projects/mud4j-web/index.html"/> + </menu> + + <!-- Documentation for mud4j project, cannot use common because this + is not a real component --> + <menu name="Developer Docs"> + <item name="Javadoc API" href="apidocs/index.html" target="_blank" /> + <item name="Design Considerations" href="/design-considerations.html"/> + <item name="Ideas" href="/ideas.html"/> + </menu> + + <menu name="Reports"> + <item name="Checkstyle" href="checkstyle.html"/> + <item name="Unit Tests" href="surefire-report.html"/> + <item name="Test Coverage" href="cobertura/index.html" + target="_blank"/> + <item name="Source Xref" href="xref/index.html" target="_blank"/> + <item name="Test Xref" href="xref-test/index.html" target="_blank"/> + </menu> + + <menu name="Project Info"> + <item name="Mailing Lists" href="/mail-lists.html"/> + <item name="Project Team" href="/team-list.html"/> + <item name="Dependencies" href="/dependencies.html"/> + <item name="Source Repository" href="/source-repository.html"/> + <item name="Issue Tracking" href="/issue-tracking.html"/> + </menu> + + </body> +</site> \ No newline at end of file Deleted: trunk/mud4j-core/src/site/xdoc/navigation.xml =================================================================== --- trunk/mud4j-core/src/site/xdoc/navigation.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j-core/src/site/xdoc/navigation.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,29 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<!DOCTYPE document [ - <!ENTITY links SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-links.xml" > - <!ENTITY projects SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-projects.xml" > - <!ENTITY docs SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-docs.xml" > - <!ENTITY project-info SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-project-info.xml" > - <!ENTITY activity SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-activity.xml" > - <!ENTITY reports SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-reports.xml" > -]> - -<project name="mud4j-core" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://maven.apache.org/maven-navigation-1.0.xsd"> - <title>mud4j-core</title> - - <body> - &links; - - <sitemap/> - - &projects; - &docs; - &activity; - &reports; - &project-info; - - <!-- Google search --> - <search /> - </body> -</project> \ No newline at end of file Copied: trunk/mud4j-telnet/src/site/site.xml (from rev 106, trunk/mud4j-telnet/src/site/xdoc/navigation.xml) =================================================================== --- trunk/mud4j-telnet/src/site/site.xml (rev 0) +++ trunk/mud4j-telnet/src/site/site.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<site> + <body> + <links> + <item name="Repository" + href="http://mud4j.svn.sourceforge.net/viewvc/mud4j/trunk/"/> + <item name="Dashboard" href="dashboard-report.html"/> + </links> + <menu name="Projects"> + <item name="mud4j Overview" href="http://mud4j.sf.net/index.html"/> + <item name="mud4j-core" + href="http://mud4j.sf.net/projects/mud4j-core/index.html"/> + <item name="mud4j-telnet" + href="http://mud4j.sf.net/projects/mud4j-telnet/index.html"/> + <item name="mud4j-web" + href="http://mud4j.sf.net/projects/mud4j-web/index.html"/> + </menu> + + <!-- Documentation for mud4j project, cannot use common because this + is not a real component --> + <menu name="Developer Docs"> + <item name="Javadoc API" href="apidocs/index.html" target="_blank" /> + <item name="Design Considerations" href="/design-considerations.html"/> + <item name="Ideas" href="/ideas.html"/> + </menu> + + <menu name="Reports"> + <item name="Checkstyle" href="checkstyle.html"/> + <item name="Unit Tests" href="surefire-report.html"/> + <item name="Test Coverage" href="cobertura/index.html" + target="_blank"/> + <item name="Source Xref" href="xref/index.html" target="_blank"/> + <item name="Test Xref" href="xref-test/index.html" target="_blank"/> + </menu> + + <menu name="Project Info"> + <item name="Mailing Lists" href="/mail-lists.html"/> + <item name="Project Team" href="/team-list.html"/> + <item name="Dependencies" href="/dependencies.html"/> + <item name="Source Repository" href="/source-repository.html"/> + <item name="Issue Tracking" href="/issue-tracking.html"/> + </menu> + + </body> +</site> \ No newline at end of file Deleted: trunk/mud4j-telnet/src/site/xdoc/navigation.xml =================================================================== --- trunk/mud4j-telnet/src/site/xdoc/navigation.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j-telnet/src/site/xdoc/navigation.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,29 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<!DOCTYPE document [ - <!ENTITY links SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-links.xml" > - <!ENTITY projects SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-projects.xml" > - <!ENTITY docs SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-docs.xml" > - <!ENTITY project-info SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-project-info.xml" > - <!ENTITY activity SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-activity.xml" > - <!ENTITY reports SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-reports.xml" > -]> - -<project name="mud4j-telnet" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://maven.apache.org/maven-navigation-1.0.xsd"> - <title>mud4j-telnet</title> - - <body> - &links; - - <sitemap/> - - &projects; - &docs; - &activity; - &reports; - &project-info; - - <!-- Google search --> - <search /> - </body> -</project> \ No newline at end of file Copied: trunk/mud4j-web/src/site/site.xml (from rev 106, trunk/mud4j-web/src/site/xdoc/navigation.xml) =================================================================== --- trunk/mud4j-web/src/site/site.xml (rev 0) +++ trunk/mud4j-web/src/site/site.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<site> + <body> + <links> + <item name="Repository" + href="http://mud4j.svn.sourceforge.net/viewvc/mud4j/trunk/"/> + <item name="Dashboard" href="dashboard-report.html"/> + </links> + <menu name="Projects"> + <item name="mud4j Overview" href="http://mud4j.sf.net/index.html"/> + <item name="mud4j-core" + href="http://mud4j.sf.net/projects/mud4j-core/index.html"/> + <item name="mud4j-telnet" + href="http://mud4j.sf.net/projects/mud4j-telnet/index.html"/> + <item name="mud4j-web" + href="http://mud4j.sf.net/projects/mud4j-web/index.html"/> + </menu> + + <!-- Documentation for mud4j project, cannot use common because this + is not a real component --> + <menu name="Developer Docs"> + <item name="Javadoc API" href="apidocs/index.html" target="_blank" /> + <item name="Design Considerations" href="/design-considerations.html"/> + <item name="Ideas" href="/ideas.html"/> + </menu> + + <menu name="Reports"> + <item name="Checkstyle" href="checkstyle.html"/> + <item name="Unit Tests" href="surefire-report.html"/> + <item name="Test Coverage" href="cobertura/index.html" + target="_blank"/> + <item name="Source Xref" href="xref/index.html" target="_blank"/> + <item name="Test Xref" href="xref-test/index.html" target="_blank"/> + </menu> + + <menu name="Project Info"> + <item name="Mailing Lists" href="/mail-lists.html"/> + <item name="Project Team" href="/team-list.html"/> + <item name="Dependencies" href="/dependencies.html"/> + <item name="Source Repository" href="/source-repository.html"/> + <item name="Issue Tracking" href="/issue-tracking.html"/> + </menu> + + </body> +</site> \ No newline at end of file Deleted: trunk/mud4j-web/src/site/xdoc/navigation.xml =================================================================== --- trunk/mud4j-web/src/site/xdoc/navigation.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j-web/src/site/xdoc/navigation.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,29 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<!DOCTYPE document [ - <!ENTITY links SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-links.xml" > - <!ENTITY projects SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-projects.xml" > - <!ENTITY docs SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-docs.xml" > - <!ENTITY project-info SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-project-info.xml" > - <!ENTITY activity SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-activity.xml" > - <!ENTITY reports SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-reports.xml" > -]> - -<project name="mud4j-web" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://maven.apache.org/maven-navigation-1.0.xsd"> - <title>mud4j-web</title> - - <body> - &links; - - <sitemap/> - - &projects; - &docs; - &activity; - &reports; - &project-info; - - <!-- Google search --> - <search /> - </body> -</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-01-14 16:14:16
|
Revision: 95 http://mud4j.svn.sourceforge.net/mud4j/?rev=95&view=rev Author: mpurland Date: 2007-01-13 16:02:13 -0800 (Sat, 13 Jan 2007) Log Message: ----------- Convert project to use Maven 2.x. instead of 1.x. Added Paths: ----------- trunk/mud4j/pom-root.xml trunk/mud4j/settings.xml trunk/mud4j-core/pom.xml trunk/mud4j-telnet/pom.xml trunk/mud4j-web/pom.xml Removed Paths: ------------- trunk/mud4j/project-root.xml trunk/mud4j/project.xml trunk/mud4j-core/project.xml trunk/mud4j-telnet/project.xml trunk/mud4j-web/project.xml Copied: trunk/mud4j/pom-root.xml (from rev 88, trunk/mud4j/project-root.xml) =================================================================== --- trunk/mud4j/pom-root.xml (rev 0) +++ trunk/mud4j/pom-root.xml 2007-01-14 00:02:13 UTC (rev 95) @@ -0,0 +1,183 @@ +<?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> + <name>mud4j</name> + <groupId>net.sf</groupId> + + <issueManagement> + <system>Sourceforge</system> + <url>https://sourceforge.net/tracker/?group_id=184313</url> + </issueManagement> + + <!-- Project start year --> + <inceptionYear>2006</inceptionYear> + + <!-- SF url --> + <url>http://mud4j.sf.net/</url> + + <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> + + <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> + + + <repositories> + <repository> + <releases> + + </releases> + <snapshots> + + </snapshots> + </repository> + </repositories> + + + <!-- 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/> + + <!-- Dependencies --> + <dependencies> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.13</version> + </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.1</version> + </dependency> + + <!-- Plugins --> + <dependency> + <groupId>maven-plugins</groupId> + <artifactId>maven-cobertura-plugin</artifactId> + <version>1.3-SNAPSHOT</version> + <type>plugin</type> + </dependency> + <dependency> + <groupId>maven</groupId> + <artifactId>maven-simian-plugin</artifactId> + <version>1.6</version> + <type>plugin</type> + </dependency> + <dependency> + <groupId>maven-plugins</groupId> + <artifactId>maven-findbugs-plugin</artifactId> + <version>1.3</version> + <type>plugin</type> + </dependency> + <dependency> + <groupId>mevenide</groupId> + <artifactId>maven-eclipse-plugin-plugin</artifactId> + <version>0.3.1</version> + <type>plugin</type> + </dependency> + <dependency> + <groupId>mevenide</groupId> + <artifactId>maven-eclipse-plugin-plugin</artifactId> + <version>0.3.1</version> + <type>plugin</type> + </dependency> + <dependency> + <groupId>maven-plugins</groupId> + <artifactId>maven-tasks-plugin</artifactId> + <version>1.3.0-SNAPSHOT</version> + <type>plugin</type> + </dependency> + </dependencies> + <reports> + <report>maven-multiproject-plugin</report> + <report>maven-pmd-plugin</report> + <report>maven-jdepend-plugin</report> + <report>maven-checkstyle-plugin</report> + <report>maven-changes-plugin</report> + <report>maven-changelog-plugin</report> + <report>maven-developer-activity-plugin</report> + <report>maven-file-activity-plugin</report> + <report>maven-license-plugin</report> + <report>maven-javadoc-plugin</report> + <report>maven-jxr-plugin</report> + <report>maven-junit-report-plugin</report> + <report>maven-linkcheck-plugin</report> + <!--<report>maven-tasks-plugin</report>--> + <report>maven-tasklist-plugin</report> + <report>maven-cobertura-plugin</report> + <report>maven-simian-plugin</report> + <report>maven-findbugs-plugin</report> + <report>maven-dashboard-plugin</report> + <!--<report>maven-java-plugin</report>--> + </reports> + <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>${basedir}/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> Deleted: trunk/mud4j/project-root.xml =================================================================== --- trunk/mud4j/project-root.xml 2007-01-08 02:15:40 UTC (rev 94) +++ trunk/mud4j/project-root.xml 2007-01-14 00:02:13 UTC (rev 95) @@ -1,160 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<project xmlns="http://maven.apache.org/POM/3.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd"> - <pomVersion>3</pomVersion> - <name>mud4j</name> - <groupId>net.sf</groupId> - <package>net.sf.mud4j</package> - - <!-- Details about the organization --> - <organization> - <name>mud4j</name> - <url>http://sourceforge.net/projects/mud4j</url> - <logo>http://sourceforge.net/sflogo.php?group_id=61626&type=5</logo> - </organization> - - <issueTrackingUrl> - https://sourceforge.net/tracker/?group_id=184313</issueTrackingUrl> - - <!-- Project start year --> - <inceptionYear>2006</inceptionYear> - - <!-- SF url --> - <url>http://mud4j.sf.net/</url> - - <!-- Address for site deployments --> - <siteAddress>shell.sourceforge.net</siteAddress> - <!-- Directory on SF for site deployment --> - <siteDirectory>/home/groups/m/mu/mud4j/htdocs</siteDirectory> - - <repository> - <connection> - scm:svn:https://svn.sourceforge.net/svnroot/mud4j</connection> - <url>http://mud4j.svn.sourceforge.net/viewvc/mud4j/trunk/</url> - </repository> - - <!-- 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/> - <versions> - <version> - <name>1.0-SNAPSHOT</name> - <tag>1.0</tag> - <id>1.0-SNAPSHOT</id> - </version> - </versions> - - <!-- Dependencies --> - <dependencies> - <dependency> - <groupId>log4j</groupId> - <artifactId>log4j</artifactId> - <version>1.2.13</version> - </dependency> - - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.1</version> - </dependency> - - <!-- Plugins --> - <dependency> - <groupId>maven-plugins</groupId> - <artifactId>maven-cobertura-plugin</artifactId> - <version>1.3-SNAPSHOT</version> - <type>plugin</type> - </dependency> - <dependency> - <groupId>maven</groupId> - <artifactId>maven-simian-plugin</artifactId> - <version>1.6</version> - <type>plugin</type> - </dependency> - <dependency> - <groupId>maven-plugins</groupId> - <artifactId>maven-findbugs-plugin</artifactId> - <version>1.3</version> - <type>plugin</type> - </dependency> - <dependency> - <groupId>mevenide</groupId> - <artifactId>maven-eclipse-plugin-plugin</artifactId> - <version>0.3.1</version> - <type>plugin</type> - </dependency> - <dependency> - <groupId>mevenide</groupId> - <artifactId>maven-eclipse-plugin-plugin</artifactId> - <version>0.3.1</version> - <type>plugin</type> - </dependency> - <dependency> - <groupId>maven-plugins</groupId> - <artifactId>maven-tasks-plugin</artifactId> - <version>1.3.0-SNAPSHOT</version> - <type>plugin</type> - </dependency> - </dependencies> - <reports> - <report>maven-multiproject-plugin</report> - <report>maven-pmd-plugin</report> - <report>maven-jdepend-plugin</report> - <report>maven-checkstyle-plugin</report> - <report>maven-changes-plugin</report> - <report>maven-changelog-plugin</report> - <report>maven-developer-activity-plugin</report> - <report>maven-file-activity-plugin</report> - <report>maven-license-plugin</report> - <report>maven-javadoc-plugin</report> - <report>maven-jxr-plugin</report> - <report>maven-junit-report-plugin</report> - <report>maven-linkcheck-plugin</report> - <!--<report>maven-tasks-plugin</report>--> - <report>maven-tasklist-plugin</report> - <report>maven-cobertura-plugin</report> - <report>maven-simian-plugin</report> - <report>maven-findbugs-plugin</report> - <report>maven-dashboard-plugin</report> - <!--<report>maven-java-plugin</report>--> - </reports> - <build> - <defaultGoal>jar</defaultGoal> - <nagEmailAddress> - ${pom.artifactId}-de...@so...</nagEmailAddress> - <sourceDirectory>src/java</sourceDirectory> - <unitTestSourceDirectory>src/test/unit</unitTestSourceDirectory> - <resources> - <resource> - <directory>${basedir}/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> - <unitTest> - <includes> - <include>**/*Test.java</include> - </includes> - </unitTest> - </build> -</project> Deleted: trunk/mud4j/project.xml =================================================================== --- trunk/mud4j/project.xml 2007-01-08 02:15:40 UTC (rev 94) +++ trunk/mud4j/project.xml 2007-01-14 00:02:13 UTC (rev 95) @@ -1,87 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd"> - <extend>project-root.xml</extend> - - <pomVersion>3</pomVersion> - <name>mud4j</name> - <groupId>net.sf</groupId> - <package>net.sf.mud4j</package> - <artifactId>mud4j</artifactId> - <currentVersion>1.0-SNAPSHOT</currentVersion> - - <shortDescription> - A framework for MUD and game servers. - </shortDescription> - <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> - - <build> - <defaultGoal>jar</defaultGoal> - <sourceDirectory>src/java</sourceDirectory> - <unitTestSourceDirectory>src/test/unit</unitTestSourceDirectory> - <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> - <unitTest> - <includes> - <include>**/*Test.java</include> - </includes> - </unitTest> - </build> -</project> Added: trunk/mud4j/settings.xml =================================================================== Copied: trunk/mud4j-core/pom.xml (from rev 88, trunk/mud4j-core/project.xml) =================================================================== --- trunk/mud4j-core/pom.xml (rev 0) +++ trunk/mud4j-core/pom.xml 2007-01-14 00:02:13 UTC (rev 95) @@ -0,0 +1,74 @@ +<?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"> + <parent> + <groupId>net.sf.mud4j</groupId> + <artifactId>mud4j-master</artifactId> + <version>1.0-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <description> + mud4j core library that other modules will use. + </description> + <name>mud4j core</name> + <groupId>net.sf.mud4j</groupId> + <artifactId>mud4j-core</artifactId> + <version>1.0-SNAPSHOT</version> + + <!-- Dependencies --> + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.1</version> + </dependency> + <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + <version>2.0</version> + </dependency> + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>1.1</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring</artifactId> + <version>2.0</version> + </dependency> + <dependency> + <groupId>org.hibernate</groupId> + <artifactId>hibernate</artifactId> + <version>3.2.0.cr5</version> + </dependency> + + <!-- AspectJ --> + <dependency> + <groupId>aspectj</groupId> + <artifactId>aspectjtools</artifactId> + <version>1.5.1a</version> + </dependency> + </dependencies> + + <build> + <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> + Property changes on: trunk/mud4j-core/pom.xml ___________________________________________________________________ Name: svn:executable + * Deleted: trunk/mud4j-core/project.xml =================================================================== --- trunk/mud4j-core/project.xml 2007-01-08 02:15:40 UTC (rev 94) +++ trunk/mud4j-core/project.xml 2007-01-14 00:02:13 UTC (rev 95) @@ -1,80 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd"> - <extend>${basedir}/../mud4j/project-root.xml</extend> - <shortDescription> - mud4j core library that other modules will use. - </shortDescription> - <description> - mud4j core library that other modules will use. - </description> - <pomVersion>3</pomVersion> - <name>mud4j core</name> - <!--<groupId>net.sf</groupId>--> - <package>net.sf.mud4j</package> - <artifactId>mud4j-core</artifactId> - <currentVersion>1.0-SNAPSHOT</currentVersion> - - <!-- Dependencies --> - <dependencies> - <dependency> - <groupId>commons-lang</groupId> - <artifactId>commons-lang</artifactId> - <version>2.0</version> - </dependency> - <dependency> - <groupId>commons-logging</groupId> - <artifactId>commons-logging</artifactId> - <version>1.1</version> - </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring</artifactId> - <version>2.0</version> - </dependency> - <dependency> - <groupId>org.hibernate</groupId> - <artifactId>hibernate</artifactId> - <version>3.2.0.cr5</version> - </dependency> - - <!-- AspectJ --> - <dependency> - <groupId>aspectj</groupId> - <artifactId>aspectjtools</artifactId> - <version>1.5.1a</version> - </dependency> - - <dependency> - <groupId>net.sf</groupId> - <artifactId>jdaemon</artifactId> - <version>1.0-SNAPSHOT</version> - </dependency> - </dependencies> - - <build> - <defaultGoal>jar</defaultGoal> - <sourceDirectory>src/java</sourceDirectory> - <unitTestSourceDirectory>src/test/unit</unitTestSourceDirectory> - <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> - <unitTest> - <includes> - <include>**/*Test.java</include> - </includes> - </unitTest> - </build> -</project> - Copied: trunk/mud4j-telnet/pom.xml (from rev 88, trunk/mud4j-telnet/project.xml) =================================================================== --- trunk/mud4j-telnet/pom.xml (rev 0) +++ trunk/mud4j-telnet/pom.xml 2007-01-14 00:02:13 UTC (rev 95) @@ -0,0 +1,49 @@ +<?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"> + <parent> + <groupId>net.sf.mud4j</groupId> + <artifactId>mud4j-master</artifactId> + <version>1.0-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <description> + A mud4j telnet server to provide telnet connectivity for servers that + may want web connectivity through telnet and may want certain security + features. + </description> + <name>mud4j telnet server</name> + <groupId>net.sf.mud4j</groupId> + <artifactId>mud4j-telnet</artifactId> + <version>1.0-SNAPSHOT</version> + + <!-- Dependencies --> + <dependencies> + <dependency> + <groupId>net.sf.mud4j</groupId> + <artifactId>mud4j-core</artifactId> + <version>1.0-SNAPSHOT</version> + </dependency> + </dependencies> + + <build> + <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> + Property changes on: trunk/mud4j-telnet/pom.xml ___________________________________________________________________ Name: svn:executable + * Deleted: trunk/mud4j-telnet/project.xml =================================================================== --- trunk/mud4j-telnet/project.xml 2007-01-08 02:15:40 UTC (rev 94) +++ trunk/mud4j-telnet/project.xml 2007-01-14 00:02:13 UTC (rev 95) @@ -1,54 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd"> - <extend>${basedir}/../mud4j/project-root.xml</extend> - <shortDescription> - A mud4j telnet server to provide telnet connectivity. - </shortDescription> - <description> - A mud4j telnet server to provide telnet connectivity for servers that - may want web connectivity through telnet and may want certain security - features. - </description> - <pomVersion>3</pomVersion> - <name>mud4j telnet server</name> - <!--<groupId>net.sf</groupId>--> - <package>net.sf.mud4j</package> - <artifactId>mud4j-telnet</artifactId> - <currentVersion>1.0-SNAPSHOT</currentVersion> - - <!-- Dependencies --> - <dependencies> - <dependency> - <groupId>net.sf</groupId> - <artifactId>mud4j-core</artifactId> - <version>1.0-SNAPSHOT</version> - </dependency> - </dependencies> - - <build> - <defaultGoal>jar</defaultGoal> - <sourceDirectory>src/java</sourceDirectory> - <unitTestSourceDirectory>src/test/unit</unitTestSourceDirectory> - <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> - <unitTest> - <includes> - <include>**/*Test.java</include> - </includes> - </unitTest> - </build> -</project> - Copied: trunk/mud4j-web/pom.xml (from rev 88, trunk/mud4j-web/project.xml) =================================================================== --- trunk/mud4j-web/pom.xml (rev 0) +++ trunk/mud4j-web/pom.xml 2007-01-14 00:02:13 UTC (rev 95) @@ -0,0 +1,96 @@ +<?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"> + <parent> + <groupId>net.sf.mud4j</groupId> + <artifactId>mud4j-master</artifactId> + <version>1.0-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <description> + An extension of the core framework to provide web presence such to various + view technologies through servlets and embedded solutions. + </description> + <name>mud4j web</name> + <groupId>net.sf.mud4j</groupId> + <artifactId>mud4j-web</artifactId> + <version>1.0-SNAPSHOT</version> + + <!-- Dependencies --> + <dependencies> + <dependency> + <groupId>net.sf.mud4j</groupId> + <artifactId>mud4j-core</artifactId> + <version>1.0-SNAPSHOT</version> + </dependency> + + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + <version>2.4</version> + </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring</artifactId> + <version>2.0</version> + </dependency> + <dependency> + <groupId>org.hibernate</groupId> + <artifactId>hibernate</artifactId> + <version>3.2.0.cr5</version> + </dependency> + <dependency> + <groupId>org.mortbay.jetty</groupId> + <artifactId>jetty</artifactId> + <version>6.1.0rc3</version> + </dependency> + <dependency> + <groupId>org.mortbay.jetty</groupId> + <artifactId>jetty-util</artifactId> + <version>6.1.0rc3</version> + </dependency> + <dependency> + <groupId>org.mortbay.jetty</groupId> + <artifactId>servlet-api</artifactId> + <version>2.5-6.0.1</version> + </dependency> + <dependency> + <groupId>org.apache.myfaces.shared</groupId> + <artifactId>myfaces-shared-core</artifactId> + <version>2.0.3</version> + </dependency> + <dependency> + <groupId>org.apache.myfaces.shared</groupId> + <artifactId>myfaces-shared-impl</artifactId> + <version>2.0.3</version> + </dependency> + <dependency> + <groupId>org.apache.myfaces.shared</groupId> + <artifactId>myfaces-shared-tomahawk</artifactId> + <version>2.0.3</version> + </dependency> + + </dependencies> + + <build> + <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> + Property changes on: trunk/mud4j-web/pom.xml ___________________________________________________________________ Name: svn:executable + * Deleted: trunk/mud4j-web/project.xml =================================================================== --- trunk/mud4j-web/project.xml 2007-01-08 02:15:40 UTC (rev 94) +++ trunk/mud4j-web/project.xml 2007-01-14 00:02:13 UTC (rev 95) @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd"> - <extend>${basedir}/../mud4j/project-root.xml</extend> - <shortDescription> - mud4j web framework for integrating core functions with web presence. - </shortDescription> - <description> - An extension of the core framework to provide web presence such to various - view technologies through servlets and embedded solutions. - </description> - <pomVersion>3</pomVersion> - <name>mud4j web</name> - <!--<groupId>net.sf</groupId>--> - <package>net.sf.mud4j</package> - <artifactId>mud4j-web</artifactId> - <currentVersion>1.0-SNAPSHOT</currentVersion> - - <!-- Dependencies --> - <dependencies> - <dependency> - <groupId>net.sf</groupId> - <artifactId>mud4j-core</artifactId> - <version>1.0-SNAPSHOT</version> - </dependency> - - <dependency> - <groupId>javax.servlet</groupId> - <artifactId>servlet-api</artifactId> - <version>2.4</version> - </dependency> - - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring</artifactId> - <version>2.0</version> - </dependency> - <dependency> - <groupId>org.hibernate</groupId> - <artifactId>hibernate</artifactId> - <version>3.2.0.cr5</version> - </dependency> - </dependencies> - - <build> - <defaultGoal>jar</defaultGoal> - <sourceDirectory>src/java</sourceDirectory> - <unitTestSourceDirectory>src/test/unit</unitTestSourceDirectory> - <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> - <unitTest> - <includes> - <include>**/*Test.java</include> - </includes> - </unitTest> - </build> -</project> - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <mpu...@us...> - 2007-01-14 18:44:18
|
Revision: 112 http://mud4j.svn.sourceforge.net/mud4j/?rev=112&view=rev Author: mpurland Date: 2007-01-14 10:44:15 -0800 (Sun, 14 Jan 2007) Log Message: ----------- Update site and pom for Maven 2.x. Modified Paths: -------------- trunk/mud4j/pom.xml trunk/mud4j/src/site/site.xml trunk/mud4j-core/src/site/site.xml trunk/mud4j-telnet/src/site/site.xml trunk/mud4j-web/src/site/site.xml Removed Paths: ------------- trunk/mud4j/pom-root.xml Deleted: trunk/mud4j/pom-root.xml =================================================================== --- trunk/mud4j/pom-root.xml 2007-01-14 18:32:23 UTC (rev 111) +++ trunk/mud4j/pom-root.xml 2007-01-14 18:44:15 UTC (rev 112) @@ -1,183 +0,0 @@ -<?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> - <name>mud4j</name> - <groupId>net.sf</groupId> - - <issueManagement> - <system>Sourceforge</system> - <url>https://sourceforge.net/tracker/?group_id=184313</url> - </issueManagement> - - <!-- Project start year --> - <inceptionYear>2006</inceptionYear> - - <!-- SF url --> - <url>http://mud4j.sf.net/</url> - - <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> - - <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> - - - <repositories> - <repository> - <releases> - - </releases> - <snapshots> - - </snapshots> - </repository> - </repositories> - - - <!-- 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/> - - <!-- Dependencies --> - <dependencies> - <dependency> - <groupId>log4j</groupId> - <artifactId>log4j</artifactId> - <version>1.2.13</version> - </dependency> - - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.1</version> - </dependency> - - <!-- Plugins --> - <dependency> - <groupId>maven-plugins</groupId> - <artifactId>maven-cobertura-plugin</artifactId> - <version>1.3-SNAPSHOT</version> - <type>plugin</type> - </dependency> - <dependency> - <groupId>maven</groupId> - <artifactId>maven-simian-plugin</artifactId> - <version>1.6</version> - <type>plugin</type> - </dependency> - <dependency> - <groupId>maven-plugins</groupId> - <artifactId>maven-findbugs-plugin</artifactId> - <version>1.3</version> - <type>plugin</type> - </dependency> - <dependency> - <groupId>mevenide</groupId> - <artifactId>maven-eclipse-plugin-plugin</artifactId> - <version>0.3.1</version> - <type>plugin</type> - </dependency> - <dependency> - <groupId>mevenide</groupId> - <artifactId>maven-eclipse-plugin-plugin</artifactId> - <version>0.3.1</version> - <type>plugin</type> - </dependency> - <dependency> - <groupId>maven-plugins</groupId> - <artifactId>maven-tasks-plugin</artifactId> - <version>1.3.0-SNAPSHOT</version> - <type>plugin</type> - </dependency> - </dependencies> - <reports> - <report>maven-multiproject-plugin</report> - <report>maven-pmd-plugin</report> - <report>maven-jdepend-plugin</report> - <report>maven-checkstyle-plugin</report> - <report>maven-changes-plugin</report> - <report>maven-changelog-plugin</report> - <report>maven-developer-activity-plugin</report> - <report>maven-file-activity-plugin</report> - <report>maven-license-plugin</report> - <report>maven-javadoc-plugin</report> - <report>maven-jxr-plugin</report> - <report>maven-junit-report-plugin</report> - <report>maven-linkcheck-plugin</report> - <!--<report>maven-tasks-plugin</report>--> - <report>maven-tasklist-plugin</report> - <report>maven-cobertura-plugin</report> - <report>maven-simian-plugin</report> - <report>maven-findbugs-plugin</report> - <report>maven-dashboard-plugin</report> - <!--<report>maven-java-plugin</report>--> - </reports> - <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>${basedir}/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> Modified: trunk/mud4j/pom.xml =================================================================== --- trunk/mud4j/pom.xml 2007-01-14 18:32:23 UTC (rev 111) +++ trunk/mud4j/pom.xml 2007-01-14 18:44:15 UTC (rev 112) @@ -59,7 +59,7 @@ <distributionManagement> <site> - <id>mud4j.website</id> + <id>mud4j website</id> <name>mud4j Website</name> <url> scp://shell.sourceforge.net/home/groups/m/mu/mud4j/htdocs/</url> Modified: trunk/mud4j/src/site/site.xml =================================================================== --- trunk/mud4j/src/site/site.xml 2007-01-14 18:32:23 UTC (rev 111) +++ trunk/mud4j/src/site/site.xml 2007-01-14 18:44:15 UTC (rev 112) @@ -1,20 +1,25 @@ <?xml version="1.0" encoding="UTF-8"?> <site> + <bannerRight> + <name>SourceForge</name> + <src> + http://sflogo.sourceforge.net/sflogo.php?group_id=184313&type=2</src> + <href>http://sourceforge.net</href> + </bannerRight> <body> <links> <item name="Repository" href="http://mud4j.svn.sourceforge.net/viewvc/mud4j/trunk/"/> <item name="Dashboard" href="dashboard-report.html"/> </links> - <menu name="Projects"> <item name="mud4j Overview" href="http://mud4j.sf.net/index.html"/> <item name="mud4j-core" - href="http://mud4j.sf.net/projects/mud4j-core/index.html"/> + href="http://mud4j.sf.net/mud4j-core/index.html"/> <item name="mud4j-telnet" - href="http://mud4j.sf.net/projects/mud4j-telnet/index.html"/> + href="http://mud4j.sf.net/mud4j-telnet/index.html"/> <item name="mud4j-web" - href="http://mud4j.sf.net/projects/mud4j-web/index.html"/> + href="http://mud4j.sf.net/mud4j-web/index.html"/> </menu> <!-- Documentation for mud4j project, cannot use common because this Modified: trunk/mud4j-core/src/site/site.xml =================================================================== --- trunk/mud4j-core/src/site/site.xml 2007-01-14 18:32:23 UTC (rev 111) +++ trunk/mud4j-core/src/site/site.xml 2007-01-14 18:44:15 UTC (rev 112) @@ -9,11 +9,11 @@ <menu name="Projects"> <item name="mud4j Overview" href="http://mud4j.sf.net/index.html"/> <item name="mud4j-core" - href="http://mud4j.sf.net/projects/mud4j-core/index.html"/> + href="http://mud4j.sf.net/mud4j-core/index.html"/> <item name="mud4j-telnet" - href="http://mud4j.sf.net/projects/mud4j-telnet/index.html"/> + href="http://mud4j.sf.net/mud4j-telnet/index.html"/> <item name="mud4j-web" - href="http://mud4j.sf.net/projects/mud4j-web/index.html"/> + href="http://mud4j.sf.net/mud4j-web/index.html"/> </menu> <!-- Documentation for mud4j project, cannot use common because this Modified: trunk/mud4j-telnet/src/site/site.xml =================================================================== --- trunk/mud4j-telnet/src/site/site.xml 2007-01-14 18:32:23 UTC (rev 111) +++ trunk/mud4j-telnet/src/site/site.xml 2007-01-14 18:44:15 UTC (rev 112) @@ -9,11 +9,11 @@ <menu name="Projects"> <item name="mud4j Overview" href="http://mud4j.sf.net/index.html"/> <item name="mud4j-core" - href="http://mud4j.sf.net/projects/mud4j-core/index.html"/> + href="http://mud4j.sf.net/mud4j-core/index.html"/> <item name="mud4j-telnet" - href="http://mud4j.sf.net/projects/mud4j-telnet/index.html"/> + href="http://mud4j.sf.net/mud4j-telnet/index.html"/> <item name="mud4j-web" - href="http://mud4j.sf.net/projects/mud4j-web/index.html"/> + href="http://mud4j.sf.net/mud4j-web/index.html"/> </menu> <!-- Documentation for mud4j project, cannot use common because this Modified: trunk/mud4j-web/src/site/site.xml =================================================================== --- trunk/mud4j-web/src/site/site.xml 2007-01-14 18:32:23 UTC (rev 111) +++ trunk/mud4j-web/src/site/site.xml 2007-01-14 18:44:15 UTC (rev 112) @@ -9,11 +9,11 @@ <menu name="Projects"> <item name="mud4j Overview" href="http://mud4j.sf.net/index.html"/> <item name="mud4j-core" - href="http://mud4j.sf.net/projects/mud4j-core/index.html"/> + href="http://mud4j.sf.net/mud4j-core/index.html"/> <item name="mud4j-telnet" - href="http://mud4j.sf.net/projects/mud4j-telnet/index.html"/> + href="http://mud4j.sf.net/mud4j-telnet/index.html"/> <item name="mud4j-web" - href="http://mud4j.sf.net/projects/mud4j-web/index.html"/> + href="http://mud4j.sf.net/mud4j-web/index.html"/> </menu> <!-- Documentation for mud4j project, cannot use common because this This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <mpu...@us...> - 2007-01-15 11:01:56
|
Revision: 96 http://mud4j.svn.sourceforge.net/mud4j/?rev=96&view=rev Author: mpurland Date: 2007-01-13 16:12:05 -0800 (Sat, 13 Jan 2007) Log Message: ----------- Share project 'mud4j' into 'https://mud4j.svn.sourceforge.net/svnroot/mud4j/trunk/mud4j' Added Paths: ----------- trunk/mud4j/trunk/ trunk/mud4j/trunk/mud4j/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |