Thread: [mud4j-commit] SF.net SVN: mud4j: [73] trunk
Status: Pre-Alpha
Brought to you by:
mpurland
From: <mpu...@us...> - 2006-12-27 18:03:46
|
Revision: 73 http://mud4j.svn.sourceforge.net/mud4j/?rev=73&view=rev Author: mpurland Date: 2006-12-27 10:03:43 -0800 (Wed, 27 Dec 2006) Log Message: ----------- Update project descriptions. Modified Paths: -------------- trunk/mud4j-telnet/project.xml trunk/mud4j-web/project.xml Modified: trunk/mud4j-telnet/project.xml =================================================================== --- trunk/mud4j-telnet/project.xml 2006-12-27 18:02:20 UTC (rev 72) +++ trunk/mud4j-telnet/project.xml 2006-12-27 18:03:43 UTC (rev 73) @@ -4,10 +4,12 @@ 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 telnet server. + A mud4j telnet server to provide telnet connectivity. </shortDescription> <description> - mud4j telnet server. + 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> Modified: trunk/mud4j-web/project.xml =================================================================== --- trunk/mud4j-web/project.xml 2006-12-27 18:02:20 UTC (rev 72) +++ trunk/mud4j-web/project.xml 2006-12-27 18:03:43 UTC (rev 73) @@ -4,10 +4,11 @@ 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. + mud4j web framework for integrating core functions with web presence. </shortDescription> <description> - mud4j web. + 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> 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:45:11
|
Revision: 113 http://mud4j.svn.sourceforge.net/mud4j/?rev=113&view=rev Author: mpurland Date: 2007-01-14 10:45:05 -0800 (Sun, 14 Jan 2007) Log Message: ----------- Update spring config. Fix format. Add spring config for core. Modified Paths: -------------- trunk/mud4j-web/resources/spring-config.xml Added Paths: ----------- trunk/mud4j-core/resources/spring-config.xml Added: trunk/mud4j-core/resources/spring-config.xml =================================================================== --- trunk/mud4j-core/resources/spring-config.xml (rev 0) +++ trunk/mud4j-core/resources/spring-config.xml 2007-01-14 18:45:05 UTC (rev 113) @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- mud4j spring configuration --> +<beans xmlns="http://www.springframework.org/schema/beans" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:util="http://www.springframework.org/schema/util" + xmlns:aop="http://www.springframework.org/schema/aop" + xsi:schemaLocation=" + http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd + http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd + http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd"> + + <bean id="webServer" class="net.sf.mud4j.web.server.JettyWebServer"> + <constructor-arg type="int" value="8081" /> + </bean> +</beans> \ No newline at end of file Modified: trunk/mud4j-web/resources/spring-config.xml =================================================================== --- trunk/mud4j-web/resources/spring-config.xml 2007-01-14 18:44:15 UTC (rev 112) +++ trunk/mud4j-web/resources/spring-config.xml 2007-01-14 18:45:05 UTC (rev 113) @@ -11,5 +11,5 @@ <bean id="webServer" class="net.sf.mud4j.web.server.JettyWebServer"> <constructor-arg type="int" value="8081" /> - </bean> + </bean> </beans> \ 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-03 04:46:44
|
Revision: 146 http://mud4j.svn.sourceforge.net/mud4j/?rev=146&view=rev Author: mpurland Date: 2007-10-02 21:46:38 -0700 (Tue, 02 Oct 2007) Log Message: ----------- Fix maven configuration and eclipse project settings. Modified Paths: -------------- trunk/mud4j-core/.classpath trunk/mud4j-core/.project trunk/mud4j-core/pom.xml trunk/mud4j-telnet/pom.xml trunk/mud4j-web/.classpath trunk/mud4j-web/.project trunk/mud4j-web/pom.xml Modified: trunk/mud4j-core/.classpath =================================================================== --- trunk/mud4j-core/.classpath 2007-10-02 15:52:38 UTC (rev 145) +++ trunk/mud4j-core/.classpath 2007-10-03 04:46:38 UTC (rev 146) @@ -1,11 +1,25 @@ -<?xml version="1.0" encoding="UTF-8"?> <classpath> - <classpathentry kind="src" path="src/java"/> - <classpathentry kind="src" path="src/test/unit"/> - <classpathentry kind="src" path="src/test/db"/> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> - <classpathentry combineaccessrules="false" kind="src" path="/jdaemon"/> - <classpathentry kind="var" path="MAVEN_REPO/log4j/jars/log4j-1.2.13.jar"/> - <classpathentry kind="var" path="MAVEN_REPO/junit/jars/junit-4.1.jar"/> - <classpathentry kind="output" path="bin"/> -</classpath> + <classpathentry kind="src" path="src/java"/> + <classpathentry kind="src" path="src/resources" excluding="**/*.java"/> + <classpathentry kind="src" path="src/test/unit" output="target/test-classes"/> + <classpathentry kind="output" path="target/classes"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="var" path="M2_REPO/junit/junit/4.1/junit-4.1.jar"/> + <classpathentry kind="var" path="M2_REPO/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.jar"/> + <classpathentry kind="var" path="M2_REPO/antlr/antlr/2.7.6/antlr-2.7.6.jar"/> + <classpathentry kind="var" path="M2_REPO/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar"/> + <classpathentry kind="var" path="M2_REPO/asm/asm/1.5.3/asm-1.5.3.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-collections/commons-collections/2.1.1/commons-collections-2.1.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/springframework/spring/2.0/spring-2.0.jar"/> + <classpathentry kind="var" path="M2_REPO/aspectj/aspectjtools/1.5.1a/aspectjtools-1.5.1a.jar"/> + <classpathentry kind="var" path="M2_REPO/cglib/cglib/2.1_3/cglib-2.1_3.jar"/> + <classpathentry kind="var" path="M2_REPO/net/sf/ehcache/ehcache/1.2/ehcache-1.2.jar"/> + <classpathentry kind="var" path="M2_REPO/asm/asm-attrs/1.5.3/asm-attrs-1.5.3.jar"/> + <classpathentry kind="var" path="M2_REPO/log4j/log4j/1.2.12/log4j-1.2.12.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-logging/commons-logging/1.1/commons-logging-1.1.jar"/> + <classpathentry kind="var" path="M2_REPO/javax/transaction/jta/1.0.1B/jta-1.0.1B.jar"/> + <classpathentry kind="var" path="M2_REPO/logkit/logkit/1.0.1/logkit-1.0.1.jar"/> + <classpathentry kind="var" path="M2_REPO/javax/servlet/servlet-api/2.3/servlet-api-2.3.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-lang/commons-lang/2.0/commons-lang-2.0.jar"/> + <classpathentry kind="var" path="M2_REPO/org/hibernate/hibernate/3.2.0.cr5/hibernate-3.2.0.cr5.jar"/> +</classpath> \ No newline at end of file Modified: trunk/mud4j-core/.project =================================================================== --- trunk/mud4j-core/.project 2007-10-02 15:52:38 UTC (rev 145) +++ trunk/mud4j-core/.project 2007-10-03 04:46:38 UTC (rev 146) @@ -1,17 +1,13 @@ -<?xml version="1.0" encoding="UTF-8"?> <projectDescription> - <name>mud4j-core</name> - <comment></comment> - <projects> - </projects> - <buildSpec> - <buildCommand> - <name>org.eclipse.jdt.core.javabuilder</name> - <arguments> - </arguments> - </buildCommand> - </buildSpec> - <natures> - <nature>org.eclipse.jdt.core.javanature</nature> - </natures> -</projectDescription> + <name>mud4j-core</name> + <comment>mud4j core library that other modules will use.</comment> + <projects/> + <buildSpec> + <buildCommand> + <name>org.eclipse.jdt.core.javabuilder</name> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.jdt.core.javanature</nature> + </natures> +</projectDescription> \ No newline at end of file Modified: trunk/mud4j-core/pom.xml =================================================================== --- trunk/mud4j-core/pom.xml 2007-10-02 15:52:38 UTC (rev 145) +++ trunk/mud4j-core/pom.xml 2007-10-03 04:46:38 UTC (rev 146) @@ -3,6 +3,7 @@ <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> + <relativePath>../mud4j</relativePath> <groupId>net.sf.mud4j</groupId> <artifactId>mud4j-master</artifactId> <version>1.0-SNAPSHOT</version> @@ -23,6 +24,11 @@ <artifactId>junit</artifactId> <version>4.1</version> </dependency> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.12</version> + </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> Modified: trunk/mud4j-telnet/pom.xml =================================================================== --- trunk/mud4j-telnet/pom.xml 2007-10-02 15:52:38 UTC (rev 145) +++ trunk/mud4j-telnet/pom.xml 2007-10-03 04:46:38 UTC (rev 146) @@ -3,6 +3,7 @@ <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> + <relativePath>../mud4j</relativePath> <groupId>net.sf.mud4j</groupId> <artifactId>mud4j-master</artifactId> <version>1.0-SNAPSHOT</version> Modified: trunk/mud4j-web/.classpath =================================================================== --- trunk/mud4j-web/.classpath 2007-10-02 15:52:38 UTC (rev 145) +++ trunk/mud4j-web/.classpath 2007-10-03 04:46:38 UTC (rev 146) @@ -1,32 +1,43 @@ -<?xml version="1.0" encoding="UTF-8"?> <classpath> - <classpathentry kind="src" path="src/java"/> - <classpathentry kind="src" path="src/test/unit"/> - <classpathentry kind="src" path="src/test/functional"/> - <classpathentry kind="src" path="src/webapp"/> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> - <classpathentry combineaccessrules="false" kind="src" path="/mud4j-core"/> - <classpathentry kind="var" path="MAVEN_REPO/org.mortbay.jetty/jars/jetty-6.1.0rc3.jar" sourcepath="/OPT_JAVA/jetty-6.1.0rc3-src.zip"/> - <classpathentry kind="var" path="MAVEN_REPO/org.mortbay.jetty/jars/jetty-util-6.1.0rc3.jar"/> - <classpathentry kind="var" path="MAVEN_REPO/commons-logging/jars/commons-logging-1.1.jar"/> - <classpathentry kind="var" path="M2_REPO/org/apache/myfaces/core/myfaces-api/1.1.4/myfaces-api-1.1.4.jar"/> - <classpathentry kind="var" path="M2_REPO/org/apache/myfaces/core/myfaces-impl/1.1.4/myfaces-impl-1.1.4.jar"/> - <classpathentry kind="var" path="M2_REPO/commons-digester/commons-digester/1.8/commons-digester-1.8.jar"/> - <classpathentry kind="var" path="M2_REPO/commons-collections/commons-collections/3.1/commons-collections-3.1.jar"/> - <classpathentry kind="var" path="M2_REPO/commons-el/commons-el/1.0/commons-el-1.0.jar"/> - <classpathentry kind="var" path="M2_REPO/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar"/> - <classpathentry kind="var" path="M2_REPO/javax/servlet/jstl/1.1.0/jstl-1.1.0.jar"/> - <classpathentry kind="var" path="M2_REPO/org/mortbay/jetty/jsp-api-2.1/6.1-SNAPSHOT/jsp-api-2.1-6.1-SNAPSHOT.jar"/> - <classpathentry kind="var" path="M2_REPO/org/mortbay/jetty/jsp-2.1/6.1-SNAPSHOT/jsp-2.1-6.1-SNAPSHOT.jar"/> - <classpathentry kind="var" path="M2_REPO/org/mortbay/jetty/servlet-api-2.5/6.1-SNAPSHOT/servlet-api-2.5-6.1-SNAPSHOT.jar"/> - <classpathentry kind="var" path="M2_REPO/ant/ant/1.6.5/ant-1.6.5.jar"/> - <classpathentry kind="var" path="M2_REPO/commons-lang/commons-lang/2.1/commons-lang-2.1.jar"/> - <classpathentry kind="var" path="M2_REPO/org/apache/myfaces/tomahawk/tomahawk/1.1.5-SNAPSHOT/tomahawk-1.1.5-SNAPSHOT.jar"/> - <classpathentry kind="var" path="M2_REPO/hsqldb/hsqldb/1.8.0.7/hsqldb-1.8.0.7.jar"/> - <classpathentry kind="var" path="M2_REPO/commons-dbcp/commons-dbcp/1.2/commons-dbcp-1.2.jar"/> - <classpathentry kind="var" path="M2_REPO/commons-pool/commons-pool/1.3/commons-pool-1.3.jar"/> - <classpathentry kind="var" path="M2_REPO/dom4j/dom4j/1.6/dom4j-1.6.jar"/> - <classpathentry kind="var" path="M2_REPO/javax/transaction/jta/1.0.1B/jta-1.0.1B.jar"/> - <classpathentry kind="var" path="M2_REPO/org/hibernate/hibernate/3.2.0.cr5/hibernate-3.2.0.cr5.jar"/> - <classpathentry kind="output" path="bin"/> -</classpath> + <classpathentry kind="src" path="src/java"/> + <classpathentry kind="src" path="src/test" output="target/test-classes"/> + <classpathentry kind="src" path="src/functional" output="target/test-classes"/> + <classpathentry kind="output" path="target/classes"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="var" path="M2_REPO/commons-codec/commons-codec/1.3/commons-codec-1.3.jar"/> + <classpathentry kind="var" path="M2_REPO/org/mortbay/jetty/jetty/6.1.0rc3/jetty-6.1.0rc3.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/myfaces/shared/myfaces-shared-core/2.0.3/myfaces-shared-core-2.0.3.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-lang/commons-lang/2.0/commons-lang-2.0.jar"/> + <classpathentry kind="var" path="M2_REPO/net/sf/mud4j/mud4j-core/1.0-SNAPSHOT/mud4j-core-1.0-SNAPSHOT.jar"/> + <classpathentry kind="var" path="M2_REPO/org/mortbay/jetty/servlet-api/2.5-6.0.1/servlet-api-2.5-6.0.1.jar"/> + <classpathentry kind="var" path="M2_REPO/cglib/cglib/2.1_3/cglib-2.1_3.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/ant/ant-launcher/1.7.0/ant-launcher-1.7.0.jar"/> + <classpathentry kind="var" path="M2_REPO/xerces/xercesImpl/2.0.2/xercesImpl-2.0.2.jar"/> + <classpathentry kind="var" path="M2_REPO/logkit/logkit/1.0.1/logkit-1.0.1.jar"/> + <classpathentry kind="var" path="M2_REPO/org/hibernate/hibernate/3.2.0.cr5/hibernate-3.2.0.cr5.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/ant/ant/1.7.0/ant-1.7.0.jar"/> + <classpathentry kind="var" path="M2_REPO/net/sf/ehcache/ehcache/1.2/ehcache-1.2.jar"/> + <classpathentry kind="var" path="M2_REPO/log4j/log4j/1.2.12/log4j-1.2.12.jar"/> + <classpathentry kind="var" path="M2_REPO/dom4j/dom4j/1.6/dom4j-1.6.jar"/> + <classpathentry kind="var" path="M2_REPO/asm/asm-attrs/1.5.3/asm-attrs-1.5.3.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/myfaces/shared/myfaces-shared-tomahawk/2.0.3/myfaces-shared-tomahawk-2.0.3.jar"/> + <classpathentry kind="var" path="M2_REPO/asm/asm/1.5.3/asm-1.5.3.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-pool/commons-pool/1.3/commons-pool-1.3.jar"/> + <classpathentry kind="var" path="M2_REPO/org/springframework/spring/2.0/spring-2.0.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-collections/commons-collections/2.1/commons-collections-2.1.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-logging/commons-logging/1.1/commons-logging-1.1.jar"/> + <classpathentry kind="var" path="M2_REPO/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.jar"/> + <classpathentry kind="var" path="M2_REPO/org/mortbay/jetty/jetty-util/6.1.0rc3/jetty-util-6.1.0rc3.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-digester/commons-digester/1.8/commons-digester-1.8.jar"/> + <classpathentry kind="var" path="M2_REPO/junit/junit/4.1/junit-4.1.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-el/commons-el/1.0/commons-el-1.0.jar"/> + <classpathentry kind="var" path="M2_REPO/hsqldb/hsqldb/1.8.0.7/hsqldb-1.8.0.7.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-dbcp/commons-dbcp/1.2/commons-dbcp-1.2.jar"/> + <classpathentry kind="var" path="M2_REPO/javax/transaction/jta/1.0.1B/jta-1.0.1B.jar"/> + <classpathentry kind="var" path="M2_REPO/javax/servlet/servlet-api/2.4/servlet-api-2.4.jar"/> + <classpathentry kind="var" path="M2_REPO/aspectj/aspectjtools/1.5.1a/aspectjtools-1.5.1a.jar"/> + <classpathentry kind="var" path="M2_REPO/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar"/> + <classpathentry kind="var" path="M2_REPO/antlr/antlr/2.7.6/antlr-2.7.6.jar"/> + <classpathentry kind="var" path="M2_REPO/org/apache/myfaces/shared/myfaces-shared-impl/2.0.3/myfaces-shared-impl-2.0.3.jar"/> +</classpath> \ No newline at end of file Modified: trunk/mud4j-web/.project =================================================================== --- trunk/mud4j-web/.project 2007-10-02 15:52:38 UTC (rev 145) +++ trunk/mud4j-web/.project 2007-10-03 04:46:38 UTC (rev 146) @@ -1,24 +1,18 @@ -<?xml version="1.0" encoding="UTF-8"?> <projectDescription> - <name>mud4j-web</name> - <comment></comment> - <projects> - <project>mud4j-core</project> - </projects> - <buildSpec> - <buildCommand> - <name>org.eclipse.jdt.core.javabuilder</name> - <arguments> - </arguments> - </buildCommand> - <buildCommand> - <name>tk.eclipse.plugin.jsf.JSFProjectBuilder</name> - <arguments> - </arguments> - </buildCommand> - </buildSpec> - <natures> - <nature>org.eclipse.jdt.core.javanature</nature> - <nature>tk.eclipse.plugin.jsf.JSFProjectNature</nature> - </natures> -</projectDescription> + <name>mud4j-web</name> + <comment>An extension of the core framework to provide web presence such to various + view technologies through servlets and embedded solutions.</comment> + <projects/> + <buildSpec> + <buildCommand> + <name>org.eclipse.jdt.core.javabuilder</name> + </buildCommand> + <buildCommand> + <name>tk.eclipse.plugin.jsf.JSFProjectBuilder</name> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.jdt.core.javanature</nature> + <nature>tk.eclipse.plugin.jsf.JSFProjectNature</nature> + </natures> +</projectDescription> \ No newline at end of file Modified: trunk/mud4j-web/pom.xml =================================================================== --- trunk/mud4j-web/pom.xml 2007-10-02 15:52:38 UTC (rev 145) +++ trunk/mud4j-web/pom.xml 2007-10-03 04:46:38 UTC (rev 146) @@ -3,6 +3,7 @@ <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> + <relativePath>../mud4j</relativePath> <groupId>net.sf.mud4j</groupId> <artifactId>mud4j-master</artifactId> <version>1.0-SNAPSHOT</version> @@ -25,12 +26,22 @@ <version>4.1</version> </dependency> <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.12</version> + </dependency> + + <dependency> <groupId>net.sf.mud4j</groupId> <artifactId>mud4j-core</artifactId> <version>1.0-SNAPSHOT</version> </dependency> - <dependency> + <groupId>org.apache.ant</groupId> + <artifactId>ant</artifactId> + <version>1.7.0</version> + </dependency> + <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |