You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(57) |
Jun
(5) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
|
Feb
(86) |
Mar
(385) |
Apr
(198) |
May
(359) |
Jun
(199) |
Jul
(202) |
Aug
(667) |
Sep
(519) |
Oct
(128) |
Nov
(96) |
Dec
(65) |
2008 |
Jan
(145) |
Feb
(539) |
Mar
(1042) |
Apr
(48) |
May
(26) |
Jun
(11) |
Jul
(36) |
Aug
(9) |
Sep
(25) |
Oct
(46) |
Nov
(23) |
Dec
(19) |
2009 |
Jan
(6) |
Feb
|
Mar
(4) |
Apr
(1) |
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <id...@us...> - 2006-05-15 16:35:36
|
Revision: 25 Author: idueppe Date: 2006-05-15 09:35:28 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=25&view=rev Log Message: ----------- setup openuss 3.0 trunk Modified Paths: -------------- trunk/openuss/.project trunk/openuss/build.xml trunk/openuss/pom.xml Modified: trunk/openuss/.project =================================================================== --- trunk/openuss/.project 2006-05-15 16:35:14 UTC (rev 24) +++ trunk/openuss/.project 2006-05-15 16:35:28 UTC (rev 25) @@ -5,13 +5,7 @@ <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> Modified: trunk/openuss/build.xml =================================================================== --- trunk/openuss/build.xml 2006-05-15 16:35:14 UTC (rev 24) +++ trunk/openuss/build.xml 2006-05-15 16:35:28 UTC (rev 25) @@ -21,8 +21,8 @@ </target> <target name="eclipse"> <exec executable="mvn.bat"> - <arg line="eclipse:eclipse"/> - <arg line="-Declipse.downloadSources=true"/> + <arg line="eclipse:clean eclipse:eclipse"/> + <arg line="-DdownloadSources=true"/> </exec> </target> <target name="copy-profiles"> Modified: trunk/openuss/pom.xml =================================================================== --- trunk/openuss/pom.xml 2006-05-15 16:35:14 UTC (rev 24) +++ trunk/openuss/pom.xml 2006-05-15 16:35:28 UTC (rev 25) @@ -15,8 +15,8 @@ <name>OpenUSS</name> <url>http://openuss.sourceforge.net</url> </organization> - + <developers> <developer> <id>idueppe</id> @@ -33,11 +33,17 @@ </developer> </developers> - <scm> - <connection>scm:svn:https://svn.sourceforge.net/svnroot/openuss/trunk/openuss</connection> - <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/openuss/trunk/openuss</developerConnection> - <url>http://svn.sourceforge.net/viewcvs.cgi/openuss/trunk/openuss/</url> - </scm> + <scm> + <connection> + scm:svn:https://svn.sourceforge.net/svnroot/openuss/trunk/openuss + </connection> + <developerConnection> + scm:svn:https://svn.sourceforge.net/svnroot/openuss/trunk/openuss + </developerConnection> + <url> + http://svn.sourceforge.net/viewcvs.cgi/openuss/trunk/openuss/ + </url> + </scm> <modules> <module>foundation</module> @@ -45,7 +51,64 @@ <dependencyManagement> <dependencies> + + <!-- OpenUSS Runtime Dependencies --> + <dependency> + <groupId>commons-beanutils</groupId> + <artifactId>commons-beanutils</artifactId> + <version>[1.7.0,)</version> + </dependency> + + <dependency> + <groupId>org.hibernate</groupId> + <artifactId>hibernate</artifactId> + <version>[3.1.2,)</version> + </dependency> + <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + <version>[2.1,)</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring</artifactId> + <version>[2.0-m1,)</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-hibernate3</artifactId> + <version>[2.0-m1,)</version> + <exclusions> + <exclusion> + <groupId>javax.persistence</groupId> + <artifactId>ejb</artifactId> + </exclusion> + </exclusions> + </dependency> + + <dependency> + <groupId>jaybird</groupId> + <artifactId>jaybird-full</artifactId> + <scope>test</scope> + <version>[2.0.1,)</version> + </dependency> + <dependency> + <groupId>opensymphony</groupId> + <artifactId>oscache</artifactId> + <scope>test</scope> + <version>2.1.1</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-mock</artifactId> + <scope>test</scope> + <version>2.0-m1</version> + </dependency> + + + <!-- AndroMDA Dependencies --> + <dependency> <groupId>org.andromda.profiles.uml14</groupId> <artifactId>andromda-profile</artifactId> <version>3.2-RC1-SNAPSHOT</version> @@ -115,6 +178,8 @@ <version>3.2-RC1-SNAPSHOT</version> <scope>runtime</scope> </dependency> + + </dependencies> </dependencyManagement> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2006-05-15 16:35:23
|
Revision: 24 Author: idueppe Date: 2006-05-15 09:35:14 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=24&view=rev Log Message: ----------- setup openuss 3.0 trunk Modified Paths: -------------- trunk/openuss/foundation/foundation-core/.classpath trunk/openuss/foundation/foundation-core/build.xml Modified: trunk/openuss/foundation/foundation-core/.classpath =================================================================== --- trunk/openuss/foundation/foundation-core/.classpath 2006-05-15 16:12:54 UTC (rev 23) +++ trunk/openuss/foundation/foundation-core/.classpath 2006-05-15 16:35:14 UTC (rev 24) @@ -5,4 +5,23 @@ <classpathentry kind="src" path="target/src"/> <classpathentry kind="output" path="target/classes"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="var" path="M2_REPO/junit/junit/3.8.2/junit-3.8.2.jar" sourcepath="M2_REPO/junit/junit/3.8.2/junit-3.8.2-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/ehcache/ehcache/1.1/ehcache-1.1.jar" sourcepath="M2_REPO/ehcache/ehcache/1.1/ehcache-1.1-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/org/hibernate/hibernate/3.1.3/hibernate-3.1.3.jar" sourcepath="M2_REPO/org/hibernate/hibernate/3.1.3/hibernate-3.1.3-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-collections/commons-collections/2.1.1/commons-collections-2.1.1.jar" sourcepath="M2_REPO/commons-collections/commons-collections/2.1.1/commons-collections-2.1.1-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar" sourcepath="M2_REPO/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/asm/asm-attrs/1.5.3/asm-attrs-1.5.3.jar" sourcepath="M2_REPO/asm/asm-attrs/1.5.3/asm-attrs-1.5.3-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/org/springframework/spring/2.0-m4/spring-2.0-m4.jar" sourcepath="M2_REPO/org/springframework/spring/2.0-m4/spring-2.0-m4-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/org/springframework/spring-hibernate3/2.0-m1/spring-hibernate3-2.0-m1.jar" sourcepath="M2_REPO/org/springframework/spring-hibernate3/2.0-m1/spring-hibernate3-2.0-m1-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/opensymphony/oscache/2.1.1/oscache-2.1.1.jar" sourcepath="M2_REPO/opensymphony/oscache/2.1.1/oscache-2.1.1-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/javax/transaction/jta/1.0.1B/jta-1.0.1B.jar" sourcepath="M2_REPO/javax/transaction/jta/1.0.1B/jta-1.0.1B-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/org/springframework/spring-mock/2.0-m1/spring-mock-2.0-m1.jar" sourcepath="M2_REPO/org/springframework/spring-mock/2.0-m1/spring-mock-2.0-m1-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/asm/asm/1.5.3/asm-1.5.3.jar" sourcepath="M2_REPO/asm/asm/1.5.3/asm-1.5.3-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar" sourcepath="M2_REPO/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar" sourcepath="M2_REPO/dom4j/dom4j/1.6.1/dom4j-1.6.1-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/cglib/cglib/2.1_3/cglib-2.1_3.jar" sourcepath="M2_REPO/cglib/cglib/2.1_3/cglib-2.1_3-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/jaybird/jaybird-full/2.0.1/jaybird-full-2.0.1.jar" sourcepath="M2_REPO/jaybird/jaybird-full/2.0.1/jaybird-full-2.0.1-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/antlr/antlr/2.7.6rc1/antlr-2.7.6rc1.jar" sourcepath="M2_REPO/antlr/antlr/2.7.6rc1/antlr-2.7.6rc1-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-lang/commons-lang/2.1/commons-lang-2.1.jar" sourcepath="M2_REPO/commons-lang/commons-lang/2.1/commons-lang-2.1-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/org/openuss/foundation/foundation-api/3.0-SNAPSHOT/foundation-api-3.0-SNAPSHOT.jar" sourcepath="M2_REPO/org/openuss/foundation/foundation-api/3.0-SNAPSHOT/foundation-api-3.0-SNAPSHOT-sources.jar"/> </classpath> \ No newline at end of file Modified: trunk/openuss/foundation/foundation-core/build.xml =================================================================== --- trunk/openuss/foundation/foundation-core/build.xml 2006-05-15 16:12:54 UTC (rev 23) +++ trunk/openuss/foundation/foundation-core/build.xml 2006-05-15 16:35:14 UTC (rev 24) @@ -1,24 +1,24 @@ <project name="openuss :: foundation :: core :: build" default="install" basedir="."> <target name="compile"> <exec executable="mvn.bat"> - <arg line="install"/> + <arg line="install" /> </exec> </target> <target name="clean"> <exec executable="mvn.bat"> - <arg line="clean"/> + <arg line="clean" /> </exec> </target> <target name="install"> <exec executable="mvn.bat"> - <arg line="install"/> + <arg line="install" /> </exec> </target> <target name="eclipse"> <exec executable="mvn.bat"> - <arg line="eclipse:eclipse"/> - <arg line="-Declipse.downloadSources=true"/> + <arg line="eclipse:clean eclipse:eclipse" /> + <arg line="-DdownloadSources=true" /> </exec> </target> - + </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: <id...@us...> - 2006-05-15 16:12:59
|
Revision: 23 Author: idueppe Date: 2006-05-15 09:12:54 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=23&view=rev Log Message: ----------- setup openuss 3.0 trunk Modified Paths: -------------- trunk/openuss/foundation/foundation-core/pom.xml Modified: trunk/openuss/foundation/foundation-core/pom.xml =================================================================== --- trunk/openuss/foundation/foundation-core/pom.xml 2006-05-15 15:45:59 UTC (rev 22) +++ trunk/openuss/foundation/foundation-core/pom.xml 2006-05-15 16:12:54 UTC (rev 23) @@ -24,17 +24,14 @@ <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate</artifactId> - <version>3.1.2</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> - <version>2.1</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring</artifactId> - <version>2.0-m1</version> </dependency> <dependency> <groupId>org.springframework</groupId> @@ -68,19 +65,16 @@ <groupId>jaybird</groupId> <artifactId>jaybird-full</artifactId> <scope>test</scope> - <version>2.0.1</version> </dependency> <dependency> <groupId>opensymphony</groupId> <artifactId>oscache</artifactId> <scope>test</scope> - <version>2.1.1</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-mock</artifactId> <scope>test</scope> - <version>2.0-m1</version> </dependency> </dependencies> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2006-05-15 15:46:06
|
Revision: 22 Author: idueppe Date: 2006-05-15 08:45:59 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=22&view=rev Log Message: ----------- setup openuss 3.0 trunk Modified Paths: -------------- trunk/openuss/foundation/foundation-core/build.xml Modified: trunk/openuss/foundation/foundation-core/build.xml =================================================================== --- trunk/openuss/foundation/foundation-core/build.xml 2006-05-15 15:39:30 UTC (rev 21) +++ trunk/openuss/foundation/foundation-core/build.xml 2006-05-15 15:45:59 UTC (rev 22) @@ -17,6 +17,7 @@ <target name="eclipse"> <exec executable="mvn.bat"> <arg line="eclipse:eclipse"/> + <arg line="-Declipse.downloadSources=true"/> </exec> </target> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2006-05-15 15:39:37
|
Revision: 21 Author: idueppe Date: 2006-05-15 08:39:30 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=21&view=rev Log Message: ----------- setup openuss 3.0 trunk Added Paths: ----------- trunk/openuss/foundation/foundation-model/.project Added: trunk/openuss/foundation/foundation-model/.project =================================================================== --- trunk/openuss/foundation/foundation-model/.project (rev 0) +++ trunk/openuss/foundation/foundation-model/.project 2006-05-15 15:39:30 UTC (rev 21) @@ -0,0 +1,9 @@ +<projectDescription> + <name>foundation-model</name> + <comment/> + <projects/> + <buildSpec> + </buildSpec> + <natures> + </natures> +</projectDescription> \ 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: <id...@us...> - 2006-05-15 15:36:33
|
Revision: 20 Author: idueppe Date: 2006-05-15 08:36:25 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=20&view=rev Log Message: ----------- setup openuss 3.0 trunk Modified Paths: -------------- trunk/openuss/foundation/foundation-model/src/main/uml/foundation.xml.zip Modified: trunk/openuss/foundation/foundation-model/src/main/uml/foundation.xml.zip =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2006-05-15 15:33:46
|
Revision: 19 Author: idueppe Date: 2006-05-15 08:33:40 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=19&view=rev Log Message: ----------- setup openuss 3.0 trunk Modified Paths: -------------- trunk/openuss/build.xml Modified: trunk/openuss/build.xml =================================================================== --- trunk/openuss/build.xml 2006-05-15 15:29:23 UTC (rev 18) +++ trunk/openuss/build.xml 2006-05-15 15:33:40 UTC (rev 19) @@ -22,6 +22,7 @@ <target name="eclipse"> <exec executable="mvn.bat"> <arg line="eclipse:eclipse"/> + <arg line="-Declipse.downloadSources=true"/> </exec> </target> <target name="copy-profiles"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2006-05-15 15:29:37
|
Revision: 18 Author: idueppe Date: 2006-05-15 08:29:23 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=18&view=rev Log Message: ----------- setup openuss 3.0 trunk Modified Paths: -------------- trunk/openuss/foundation/foundation-api/.classpath Modified: trunk/openuss/foundation/foundation-api/.classpath =================================================================== --- trunk/openuss/foundation/foundation-api/.classpath 2006-05-15 15:09:33 UTC (rev 17) +++ trunk/openuss/foundation/foundation-api/.classpath 2006-05-15 15:29:23 UTC (rev 18) @@ -2,7 +2,7 @@ <classpathentry kind="src" path="target/src"/> <classpathentry kind="output" path="target/classes"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="var" path="M2_REPO/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.jar" sourcepath="M2_REPO/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar" sourcepath="M2_REPO/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0-sources.jar"/> <classpathentry kind="var" path="M2_REPO/junit/junit/3.8.2/junit-3.8.2.jar" sourcepath="M2_REPO/junit/junit/3.8.2/junit-3.8.2-sources.jar"/> - <classpathentry kind="var" path="M2_REPO/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar" sourcepath="M2_REPO/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0-sources.jar"/> - <classpathentry kind="var" path="M2_REPO/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.jar" sourcepath="M2_REPO/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3-sources.jar"/> </classpath> \ 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: <id...@us...> - 2006-05-15 15:09:44
|
Revision: 17 Author: idueppe Date: 2006-05-15 08:09:33 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=17&view=rev Log Message: ----------- setup openuss 3.0 trunk Modified Paths: -------------- trunk/openuss/foundation/foundation-core/.classpath trunk/openuss/foundation/foundation-core/.project Added Paths: ----------- trunk/openuss/.classpath trunk/openuss/.project trunk/openuss/foundation/foundation-api/.classpath trunk/openuss/foundation/foundation-api/.project Added: trunk/openuss/.classpath =================================================================== --- trunk/openuss/.classpath (rev 0) +++ trunk/openuss/.classpath 2006-05-15 15:09:33 UTC (rev 17) @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<classpath> + <classpathentry kind="src" path=""/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="output" path=""/> +</classpath> Added: trunk/openuss/.project =================================================================== --- trunk/openuss/.project (rev 0) +++ trunk/openuss/.project 2006-05-15 15:09:33 UTC (rev 17) @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>openuss</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> Added: trunk/openuss/foundation/foundation-api/.classpath =================================================================== --- trunk/openuss/foundation/foundation-api/.classpath (rev 0) +++ trunk/openuss/foundation/foundation-api/.classpath 2006-05-15 15:09:33 UTC (rev 17) @@ -0,0 +1,8 @@ +<classpath> + <classpathentry kind="src" path="target/src"/> + <classpathentry kind="output" path="target/classes"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="var" path="M2_REPO/junit/junit/3.8.2/junit-3.8.2.jar" sourcepath="M2_REPO/junit/junit/3.8.2/junit-3.8.2-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar" sourcepath="M2_REPO/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0-sources.jar"/> + <classpathentry kind="var" path="M2_REPO/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.jar" sourcepath="M2_REPO/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3-sources.jar"/> +</classpath> \ No newline at end of file Added: trunk/openuss/foundation/foundation-api/.project =================================================================== --- trunk/openuss/foundation/foundation-api/.project (rev 0) +++ trunk/openuss/foundation/foundation-api/.project 2006-05-15 15:09:33 UTC (rev 17) @@ -0,0 +1,14 @@ +<projectDescription> + <name>foundation-api</name> + <comment/> + <projects/> + <buildSpec> + <buildCommand> + <name>org.eclipse.jdt.core.javabuilder</name> + <arguments/> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.jdt.core.javanature</nature> + </natures> +</projectDescription> \ No newline at end of file Modified: trunk/openuss/foundation/foundation-core/.classpath =================================================================== --- trunk/openuss/foundation/foundation-core/.classpath 2006-05-15 15:07:35 UTC (rev 16) +++ trunk/openuss/foundation/foundation-core/.classpath 2006-05-15 15:09:33 UTC (rev 17) @@ -1,26 +1,8 @@ -<?xml version="1.0" encoding="UTF-8"?> -<classpath> - <classpathentry kind="src" path="src/main/java"/> - <classpathentry kind="src" path="src/test/java"/> - <classpathentry kind="src" path="target/src"/> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> - <classpathentry sourcepath="M2_REPO/commons-lang/commons-lang/2.1/commons-lang-2.1-sources.jar" kind="var" path="M2_REPO/commons-lang/commons-lang/2.1/commons-lang-2.1.jar"/> - <classpathentry sourcepath="/M2_REPO/org/springframework/spring/2.0-m1/spring-2.0-m1-sources.jar" kind="var" path="M2_REPO/org/springframework/spring/2.0-m1/spring-2.0-m1.jar"/> - <classpathentry sourcepath="M2_REPO/junit/junit/3.8.2/junit-3.8.2-sources.jar" kind="var" path="M2_REPO/junit/junit/3.8.2/junit-3.8.2.jar"/> - <classpathentry sourcepath="M2_REPO/javax/transaction/jta/1.0.1B/jta-1.0.1B-sources.jar" kind="var" path="M2_REPO/javax/transaction/jta/1.0.1B/jta-1.0.1B.jar"/> - <classpathentry sourcepath="M2_REPO/org/springframework/spring-mock/2.0-m1/spring-mock-2.0-m1-sources.jar" kind="var" path="M2_REPO/org/springframework/spring-mock/2.0-m1/spring-mock-2.0-m1.jar"/> - <classpathentry sourcepath="M2_REPO/antlr/antlr/2.7.6rc1/antlr-2.7.6rc1-sources.jar" kind="var" path="M2_REPO/antlr/antlr/2.7.6rc1/antlr-2.7.6rc1.jar"/> - <classpathentry sourcepath="M2_REPO/ehcache/ehcache/1.1/ehcache-1.1-sources.jar" kind="var" path="M2_REPO/ehcache/ehcache/1.1/ehcache-1.1.jar"/> - <classpathentry kind="src" path="/foundation-api"/> - <classpathentry sourcepath="M2_REPO/opensymphony/oscache/2.1.1/oscache-2.1.1-sources.jar" kind="var" path="M2_REPO/opensymphony/oscache/2.1.1/oscache-2.1.1.jar"/> - <classpathentry sourcepath="M2_REPO/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4-sources.jar" kind="var" path="M2_REPO/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar"/> - <classpathentry sourcepath="M2_REPO/dom4j/dom4j/1.6.1/dom4j-1.6.1-sources.jar" kind="var" path="M2_REPO/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar"/> - <classpathentry sourcepath="M2_REPO/org/hibernate/hibernate/3.1.2/hibernate-3.1.2-sources.jar" kind="var" path="M2_REPO/org/hibernate/hibernate/3.1.2/hibernate-3.1.2.jar"/> - <classpathentry kind="var" path="M2_REPO/jaybird/jaybird-full/2.0.1/jaybird-full-2.0.1.jar"/> - <classpathentry sourcepath="M2_REPO/org/springframework/spring-hibernate3/2.0-m1/spring-hibernate3-2.0-m1-sources.jar" kind="var" path="M2_REPO/org/springframework/spring-hibernate3/2.0-m1/spring-hibernate3-2.0-m1.jar"/> - <classpathentry sourcepath="M2_REPO/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0-sources.jar" kind="var" path="M2_REPO/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar"/> - <classpathentry sourcepath="M2_REPO/cglib/cglib/2.1_3/cglib-2.1_3-sources.jar" kind="var" path="M2_REPO/cglib/cglib/2.1_3/cglib-2.1_3.jar"/> - <classpathentry sourcepath="M2_REPO/asm/asm/1.5.3/asm-1.5.3-sources.jar" kind="var" path="M2_REPO/asm/asm/1.5.3/asm-1.5.3.jar"/> - <classpathentry sourcepath="M2_REPO/commons-collections/commons-collections/2.1.1/commons-collections-2.1.1-sources.jar" kind="var" path="M2_REPO/commons-collections/commons-collections/2.1.1/commons-collections-2.1.1.jar"/> - <classpathentry kind="output" path="target/classes"/> -</classpath> +<classpath> + <classpathentry kind="src" path="src/main/java"/> + <classpathentry kind="src" path="src/test/java" output="target/test-classes"/> + <classpathentry kind="src" path="src/test/resources" output="target/test-classes"/> + <classpathentry kind="src" path="target/src"/> + <classpathentry kind="output" path="target/classes"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> +</classpath> \ No newline at end of file Modified: trunk/openuss/foundation/foundation-core/.project =================================================================== --- trunk/openuss/foundation/foundation-core/.project 2006-05-15 15:07:35 UTC (rev 16) +++ trunk/openuss/foundation/foundation-core/.project 2006-05-15 15:09:33 UTC (rev 17) @@ -1,9 +1,7 @@ <projectDescription> <name>foundation-core</name> <comment/> - <projects> - <project>foundation-api</project> - </projects> + <projects/> <buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2006-05-15 15:07:40
|
Revision: 16 Author: idueppe Date: 2006-05-15 08:07:35 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=16&view=rev Log Message: ----------- setup openuss 3.0 trunk Modified Paths: -------------- trunk/openuss/build.xml Modified: trunk/openuss/build.xml =================================================================== --- trunk/openuss/build.xml 2006-05-15 15:06:19 UTC (rev 15) +++ trunk/openuss/build.xml 2006-05-15 15:07:35 UTC (rev 16) @@ -2,7 +2,7 @@ <target name="compile"> <exec executable="mvn.bat"> <arg line="compile"/> - </exec> + </exec> </target> <target name="install"> <exec executable="mvn.bat"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2006-05-15 15:06:24
|
Revision: 15 Author: idueppe Date: 2006-05-15 08:06:19 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=15&view=rev Log Message: ----------- setup openuss 3.0 trunk Property Changed: ---------------- trunk/openuss/servers/tomcat/ Property changes on: trunk/openuss/servers/tomcat ___________________________________________________________________ Name: svn:ignore + work This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2006-05-15 15:00:37
|
Revision: 14 Author: idueppe Date: 2006-05-15 08:00:29 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=14&view=rev Log Message: ----------- setup openuss 3.0 trunk Modified Paths: -------------- trunk/openuss/servers/tomcat/conf/tomcat-users.xml Modified: trunk/openuss/servers/tomcat/conf/tomcat-users.xml =================================================================== --- trunk/openuss/servers/tomcat/conf/tomcat-users.xml 2006-05-15 14:59:45 UTC (rev 13) +++ trunk/openuss/servers/tomcat/conf/tomcat-users.xml 2006-05-15 15:00:29 UTC (rev 14) @@ -5,6 +5,6 @@ <role rolename="manager"/> <role rolename="admin"/> <user username="tomcat" password="tomcat" roles="tomcat,manager,admin"/> + <user username="role1" password="tomcat" roles="role1"/> <user username="both" password="tomcat" roles="tomcat,role1"/> - <user username="role1" password="tomcat" roles="role1"/> </tomcat-users> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2006-05-15 14:59:54
|
Revision: 13 Author: idueppe Date: 2006-05-15 07:59:45 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=13&view=rev Log Message: ----------- setup openuss 3.0 trunk Property Changed: ---------------- trunk/openuss/foundation/foundation-api/ trunk/openuss/foundation/foundation-core/ trunk/openuss/foundation/foundation-web/ Property changes on: trunk/openuss/foundation/foundation-api ___________________________________________________________________ Name: svn:ignore + target Property changes on: trunk/openuss/foundation/foundation-core ___________________________________________________________________ Name: svn:ignore + target Property changes on: trunk/openuss/foundation/foundation-web ___________________________________________________________________ Name: svn:ignore + target This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2006-05-15 14:51:50
|
Revision: 12 Author: idueppe Date: 2006-05-15 07:51:44 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=12&view=rev Log Message: ----------- setup openuss 3.0 trunk Removed Paths: ------------- trunk/openuss/servers/tomcat/conf/Catalina/localhost/piggybank.xml Deleted: trunk/openuss/servers/tomcat/conf/Catalina/localhost/piggybank.xml =================================================================== --- trunk/openuss/servers/tomcat/conf/Catalina/localhost/piggybank.xml 2006-05-15 14:34:18 UTC (rev 11) +++ trunk/openuss/servers/tomcat/conf/Catalina/localhost/piggybank.xml 2006-05-15 14:51:44 UTC (rev 12) @@ -1,7 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<Context path="/piggybank"> - <Resource name="jdbc/ejosa" type="javax.sql.DataSource" - password="masterkey" driverClassName="org.firebirdsql.jdbc.FBDriver" - maxIdle="2" maxWait="5000" username="SYSDBA" - url="jdbc:firebirdsql:ejosa" maxActive="4" /> -</Context> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2006-05-15 14:38:08
|
Revision: 11 Author: idueppe Date: 2006-05-15 07:34:18 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=11&view=rev Log Message: ----------- setup openuss 3.0 trunk Added Paths: ----------- trunk/openuss/servers/servers.properties trunk/openuss/servers/servers.xml trunk/openuss/servers/tomcat/LICENSE trunk/openuss/servers/tomcat/NOTICE trunk/openuss/servers/tomcat/RELEASE-NOTES trunk/openuss/servers/tomcat/RUNNING.txt trunk/openuss/servers/tomcat/bin/ trunk/openuss/servers/tomcat/bin/bootstrap.jar trunk/openuss/servers/tomcat/bin/catalina-tasks.xml trunk/openuss/servers/tomcat/bin/catalina.bat trunk/openuss/servers/tomcat/bin/catalina.sh trunk/openuss/servers/tomcat/bin/commons-daemon.jar trunk/openuss/servers/tomcat/bin/commons-logging-api.jar trunk/openuss/servers/tomcat/bin/cpappend.bat trunk/openuss/servers/tomcat/bin/digest.bat trunk/openuss/servers/tomcat/bin/digest.sh trunk/openuss/servers/tomcat/bin/jkstatus-tasks.xml trunk/openuss/servers/tomcat/bin/jmxaccessor-tasks.xml trunk/openuss/servers/tomcat/bin/jsvc.tar.gz trunk/openuss/servers/tomcat/bin/service.bat trunk/openuss/servers/tomcat/bin/setclasspath.bat trunk/openuss/servers/tomcat/bin/setclasspath.sh trunk/openuss/servers/tomcat/bin/shutdown.bat trunk/openuss/servers/tomcat/bin/shutdown.sh trunk/openuss/servers/tomcat/bin/startup.bat trunk/openuss/servers/tomcat/bin/startup.sh trunk/openuss/servers/tomcat/bin/tomcat-juli.jar trunk/openuss/servers/tomcat/bin/tomcat-native.tar.gz trunk/openuss/servers/tomcat/bin/tomcat5.exe trunk/openuss/servers/tomcat/bin/tomcat5w.exe trunk/openuss/servers/tomcat/bin/tool-wrapper.bat trunk/openuss/servers/tomcat/bin/tool-wrapper.sh trunk/openuss/servers/tomcat/bin/version.bat trunk/openuss/servers/tomcat/bin/version.sh trunk/openuss/servers/tomcat/common/ trunk/openuss/servers/tomcat/common/classes/ trunk/openuss/servers/tomcat/common/endorsed/ trunk/openuss/servers/tomcat/common/i18n/ trunk/openuss/servers/tomcat/common/i18n/tomcat-i18n-en.jar trunk/openuss/servers/tomcat/common/i18n/tomcat-i18n-es.jar trunk/openuss/servers/tomcat/common/i18n/tomcat-i18n-fr.jar trunk/openuss/servers/tomcat/common/i18n/tomcat-i18n-ja.jar trunk/openuss/servers/tomcat/common/lib/ trunk/openuss/servers/tomcat/common/lib/commons-el.jar trunk/openuss/servers/tomcat/common/lib/jasper-compiler-jdt.jar trunk/openuss/servers/tomcat/common/lib/jasper-compiler.jar trunk/openuss/servers/tomcat/common/lib/jasper-runtime.jar trunk/openuss/servers/tomcat/common/lib/jsp-api.jar trunk/openuss/servers/tomcat/common/lib/naming-factory-dbcp.jar trunk/openuss/servers/tomcat/common/lib/naming-factory.jar trunk/openuss/servers/tomcat/common/lib/naming-resources.jar trunk/openuss/servers/tomcat/common/lib/servlet-api.jar trunk/openuss/servers/tomcat/conf/ trunk/openuss/servers/tomcat/conf/Catalina/ trunk/openuss/servers/tomcat/conf/Catalina/localhost/ trunk/openuss/servers/tomcat/conf/Catalina/localhost/admin.xml trunk/openuss/servers/tomcat/conf/Catalina/localhost/host-manager.xml trunk/openuss/servers/tomcat/conf/Catalina/localhost/manager.xml trunk/openuss/servers/tomcat/conf/Catalina/localhost/piggybank.xml trunk/openuss/servers/tomcat/conf/catalina.policy trunk/openuss/servers/tomcat/conf/catalina.properties trunk/openuss/servers/tomcat/conf/context.xml trunk/openuss/servers/tomcat/conf/logging.properties trunk/openuss/servers/tomcat/conf/server-minimal.xml trunk/openuss/servers/tomcat/conf/server.xml trunk/openuss/servers/tomcat/conf/tomcat-users.xml trunk/openuss/servers/tomcat/conf/web.xml trunk/openuss/servers/tomcat/server/ trunk/openuss/servers/tomcat/server/classes/ trunk/openuss/servers/tomcat/server/lib/ trunk/openuss/servers/tomcat/server/lib/catalina-ant-jmx.jar trunk/openuss/servers/tomcat/server/lib/catalina-ant.jar trunk/openuss/servers/tomcat/server/lib/catalina-cluster.jar trunk/openuss/servers/tomcat/server/lib/catalina-optional.jar trunk/openuss/servers/tomcat/server/lib/catalina-storeconfig.jar trunk/openuss/servers/tomcat/server/lib/catalina.jar trunk/openuss/servers/tomcat/server/lib/commons-modeler.jar trunk/openuss/servers/tomcat/server/lib/servlets-cgi.renametojar trunk/openuss/servers/tomcat/server/lib/servlets-default.jar trunk/openuss/servers/tomcat/server/lib/servlets-invoker.jar trunk/openuss/servers/tomcat/server/lib/servlets-ssi.renametojar trunk/openuss/servers/tomcat/server/lib/servlets-webdav.jar trunk/openuss/servers/tomcat/server/lib/tomcat-ajp.jar trunk/openuss/servers/tomcat/server/lib/tomcat-apr.jar trunk/openuss/servers/tomcat/server/lib/tomcat-coyote.jar trunk/openuss/servers/tomcat/server/lib/tomcat-http.jar trunk/openuss/servers/tomcat/server/lib/tomcat-jkstatus-ant.jar trunk/openuss/servers/tomcat/server/lib/tomcat-util.jar trunk/openuss/servers/tomcat/server/webapps/ trunk/openuss/servers/tomcat/server/webapps/admin/ trunk/openuss/servers/tomcat/server/webapps/admin/WEB-INF/ trunk/openuss/servers/tomcat/server/webapps/admin/WEB-INF/controls.tld trunk/openuss/servers/tomcat/server/webapps/admin/WEB-INF/lib/ trunk/openuss/servers/tomcat/server/webapps/admin/WEB-INF/lib/catalina-admin.jar trunk/openuss/servers/tomcat/server/webapps/admin/WEB-INF/lib/commons-beanutils.jar trunk/openuss/servers/tomcat/server/webapps/admin/WEB-INF/lib/commons-collections.jar trunk/openuss/servers/tomcat/server/webapps/admin/WEB-INF/lib/commons-digester-1.7.jar trunk/openuss/servers/tomcat/server/webapps/admin/WEB-INF/lib/struts.jar trunk/openuss/servers/tomcat/server/webapps/admin/WEB-INF/struts-config.xml trunk/openuss/servers/tomcat/server/webapps/admin/WEB-INF/web.xml trunk/openuss/servers/tomcat/server/webapps/admin/admin.css trunk/openuss/servers/tomcat/server/webapps/admin/admin.xml trunk/openuss/servers/tomcat/server/webapps/admin/connector/ trunk/openuss/servers/tomcat/server/webapps/admin/context/ trunk/openuss/servers/tomcat/server/webapps/admin/host/ trunk/openuss/servers/tomcat/server/webapps/admin/images/ trunk/openuss/servers/tomcat/server/webapps/admin/images/BlueTile.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/Connector.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/Context.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/Datasource.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/DefaultContext.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/EnvironmentEntries.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/Groups.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/Host.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/Logger.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/Login.jpg trunk/openuss/servers/tomcat/server/webapps/admin/images/LoginBackgroundTile.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/Mailsession.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/PaperTexture.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/Realm.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/ResourceLink.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/Roles.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/Server.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/Service.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/Thumbs.db trunk/openuss/servers/tomcat/server/webapps/admin/images/TomcatBanner.jpg trunk/openuss/servers/tomcat/server/webapps/admin/images/Users.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/Valve.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/folder_16_pad.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/handledownlast.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/handledownmiddle.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/handlerightlast.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/handlerightmiddle.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/linelastnode.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/linemiddlenode.gif trunk/openuss/servers/tomcat/server/webapps/admin/images/linevertical.gif trunk/openuss/servers/tomcat/server/webapps/admin/realm/ trunk/openuss/servers/tomcat/server/webapps/admin/resources/ trunk/openuss/servers/tomcat/server/webapps/admin/server/ trunk/openuss/servers/tomcat/server/webapps/admin/service/ trunk/openuss/servers/tomcat/server/webapps/admin/tree-control-test.css trunk/openuss/servers/tomcat/server/webapps/admin/users/ trunk/openuss/servers/tomcat/server/webapps/admin/valve/ trunk/openuss/servers/tomcat/server/webapps/host-manager/ trunk/openuss/servers/tomcat/server/webapps/host-manager/WEB-INF/ trunk/openuss/servers/tomcat/server/webapps/host-manager/WEB-INF/lib/ trunk/openuss/servers/tomcat/server/webapps/host-manager/WEB-INF/lib/catalina-host-manager.jar trunk/openuss/servers/tomcat/server/webapps/host-manager/WEB-INF/web.xml trunk/openuss/servers/tomcat/server/webapps/host-manager/host-manager.xml trunk/openuss/servers/tomcat/server/webapps/host-manager/images/ trunk/openuss/servers/tomcat/server/webapps/host-manager/images/add.gif trunk/openuss/servers/tomcat/server/webapps/host-manager/images/asf-logo.gif trunk/openuss/servers/tomcat/server/webapps/host-manager/images/code.gif trunk/openuss/servers/tomcat/server/webapps/host-manager/images/design.gif trunk/openuss/servers/tomcat/server/webapps/host-manager/images/docs.gif trunk/openuss/servers/tomcat/server/webapps/host-manager/images/fix.gif trunk/openuss/servers/tomcat/server/webapps/host-manager/images/tomcat.gif trunk/openuss/servers/tomcat/server/webapps/host-manager/images/update.gif trunk/openuss/servers/tomcat/server/webapps/host-manager/images/void.gif trunk/openuss/servers/tomcat/server/webapps/host-manager/manager.xml trunk/openuss/servers/tomcat/server/webapps/manager/ trunk/openuss/servers/tomcat/server/webapps/manager/WEB-INF/ trunk/openuss/servers/tomcat/server/webapps/manager/WEB-INF/lib/ trunk/openuss/servers/tomcat/server/webapps/manager/WEB-INF/lib/catalina-manager.jar trunk/openuss/servers/tomcat/server/webapps/manager/WEB-INF/lib/commons-fileupload-1.0.jar trunk/openuss/servers/tomcat/server/webapps/manager/WEB-INF/web.xml trunk/openuss/servers/tomcat/server/webapps/manager/html-manager-howto.html trunk/openuss/servers/tomcat/server/webapps/manager/images/ trunk/openuss/servers/tomcat/server/webapps/manager/images/add.gif trunk/openuss/servers/tomcat/server/webapps/manager/images/asf-logo.gif trunk/openuss/servers/tomcat/server/webapps/manager/images/code.gif trunk/openuss/servers/tomcat/server/webapps/manager/images/design.gif trunk/openuss/servers/tomcat/server/webapps/manager/images/docs.gif trunk/openuss/servers/tomcat/server/webapps/manager/images/fix.gif trunk/openuss/servers/tomcat/server/webapps/manager/images/tomcat.gif trunk/openuss/servers/tomcat/server/webapps/manager/images/update.gif trunk/openuss/servers/tomcat/server/webapps/manager/images/void.gif trunk/openuss/servers/tomcat/server/webapps/manager/manager-howto.html trunk/openuss/servers/tomcat/server/webapps/manager/manager.xml trunk/openuss/servers/tomcat/server/webapps/manager/status.xsd trunk/openuss/servers/tomcat/server/webapps/manager/xform.xsl trunk/openuss/servers/tomcat/shared/ trunk/openuss/servers/tomcat/shared/classes/ trunk/openuss/servers/tomcat/shared/lib/ Added: trunk/openuss/servers/servers.properties =================================================================== --- trunk/openuss/servers/servers.properties (rev 0) +++ trunk/openuss/servers/servers.properties 2006-05-15 14:34:18 UTC (rev 11) @@ -0,0 +1,17 @@ +## +## DO NOT EDIT THIS FILE. +## +## To update the properties of this file, create a separate properties file +## named "servers.${user.name}.properties" with the properties to overwrite. +## + +ejosa.home=./../ + +# Properties for Tomcat Server +tomcat.base=. +tomcat.home=${ejosa.home}/servers/tomcat +tomcat.server=localhost +tomcat.manager.url=http://${tomcat.server}:8080/manager +tomcat.username=manager +tomcat.password=manager + Added: trunk/openuss/servers/servers.xml =================================================================== --- trunk/openuss/servers/servers.xml (rev 0) +++ trunk/openuss/servers/servers.xml 2006-05-15 14:34:18 UTC (rev 11) @@ -0,0 +1,82 @@ +<!-- ================================================================= --> +<!-- Script file for Apache Tomcat --> +<!-- Author Ingo Düppe --> +<!-- ================================================================= --> +<project name="ejosa :: servers :: tomcat" basedir="." default="tomcat.debug" > + + <!-- =================================================================== --> + <!-- Global properties --> + <!-- =================================================================== --> + <property name="ejosa.home" value="./../" /> + <property file="tomcat.${user.name}.properties" /> + <property file="tomcat.properties" /> + + <property name="tomcat.home" value="${ejosa.home}/servers/tomcat" /> + <property name="tomcat.base" value="${tomcat.home}"/> + <property name="tomcat.logging.file" value="${tomcat.base}/conf/logging.properties"/> + + <path id="catalina.path"> + <fileset dir="${tomcat.home}/bin"> + <include name="*.jar" /> + </fileset> + <fileset dir="${tomcat.home}/common"> + <include name="**/*.jar" /> + </fileset> + <fileset dir="${tomcat.home}/server/lib"> + <include name="*.jar" /> + </fileset> + </path> + + <!-- =================================================================== --> + <!-- Tomcat Task Definition --> + <!-- =================================================================== --> + <taskdef resource="org/apache/catalina/ant/catalina.tasks" classpathref="catalina.path" /> + + <!-- =================================================================== --> + <!-- Targets --> + <!-- =================================================================== --> + + <target name="init"> + <!-- + <pathconvert property="dependencies.shared.classpath" refid="dependencies.classpath" dirsep="/" pathsep=",file:"/> + + <copy tofile="./conf/catalina.properties" file="./conf/catalina.template.properties" overwrite="true"> + <filterset> + <filter token="GENERATION-WARNING" value="Attention: Autogenerated File! Do not modify this file manually. See catalina.properties.template" /> + <filter token="catalina.common.classpath" value="${catalina.common.classpath}"/> + <filter token="catalina.shared.classpath" value="file:${dependencies.shared.classpath}"/> + </filterset> + </copy> + --> + </target> + + <target name="tomcat.start" depends="init" description="start tomcat"> + <java jar="${tomcat.home}/bin/bootstrap.jar" fork="true"> + <sysproperty key="catalina.home" value="${tomcat.home}"/> + <sysproperty key="catalina.base" value="${tomcat.base}"/> + <arg line="start" /> + </java> + </target> + + <target name="tomcat.stop" description="stop tomcat"> + <java jar="${tomcat.home}/bin/bootstrap.jar" fork="true"> + <sysproperty key="catalina.home" value="${tomcat.home}"/> + <sysproperty key="catalina.base" value="${tomcat.base}"/> + <arg line="stop" /> + </java> + </target> + + <target name="tomcat.debug" depends="init" description="stop"> + <java jar="${tomcat.home}/bin/bootstrap.jar" classpathref="catalina.path" fork="true"> + <sysproperty key="catalina.home" value="${tomcat.home}"/> + <sysproperty key="catalina.base" value="${tomcat.base}"/> +<!-- + <jvmarg line="-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager"/> + <jvmarg line="-Djava.util.logging.config.file=${tomcat.logging.file}"/> +--> + <jvmarg line="-Xdebug" /> + <jvmarg line="-Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n" /> + </java> + </target> + +</project> Added: trunk/openuss/servers/tomcat/LICENSE =================================================================== --- trunk/openuss/servers/tomcat/LICENSE (rev 0) +++ trunk/openuss/servers/tomcat/LICENSE 2006-05-15 14:34:18 UTC (rev 11) @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. Added: trunk/openuss/servers/tomcat/NOTICE =================================================================== --- trunk/openuss/servers/tomcat/NOTICE (rev 0) +++ trunk/openuss/servers/tomcat/NOTICE 2006-05-15 14:34:18 UTC (rev 11) @@ -0,0 +1,18 @@ +This product includes software developed by +The Apache Software Foundation (http://www.apache.org/). + +Java Management Extensions (JMX) support is provided by +the MX4J package, which is open source software. The +original software and related information is available +at http://mx4j.sourceforge.net. + +The Windows Installer is built with the Nullsoft +Scriptable Install Sysem (NSIS), which is +open source software. The original software and +related information is available at +http://nsis.sourceforge.net. + +Java compilation software for JSP pages is provided by Eclipse, +which is open source software. The orginal software and +related infomation is available at +http://www.eclipse.org. Added: trunk/openuss/servers/tomcat/RELEASE-NOTES =================================================================== --- trunk/openuss/servers/tomcat/RELEASE-NOTES (rev 0) +++ trunk/openuss/servers/tomcat/RELEASE-NOTES 2006-05-15 14:34:18 UTC (rev 11) @@ -0,0 +1,174 @@ + + + Apache Tomcat Version @VERSION@ + Release Notes + + +$Id: RELEASE-NOTES 351503 2005-12-01 22:12:48Z keith $ + + +============================= +KNOWN ISSUES IN THIS RELEASE: +============================= + +* Dependency Changes +* JNI Based Applications +* Bundled APIs +* Web application reloading and static fields in shared libraries +* Tomcat on Linux +* Enabling SSI and CGI Support +* Security manager URLs +* Symlinking static resources +* Enabling invoker servlet +* Viewing the Tomcat Change Log +* When all else fails + + +=================== +Dependency Changes: +=================== +Tomcat 5.5 is designed to run on J2SE 5.0 and later, and requires +configuration to run on J2SE 1.4. Make sure to read the "RUNNING.txt" +file in the fulldocs downloadable file(s) if you are using J2SE 1.4. + +In addition, Tomcat 5.5 uses the Eclipse JDT Java compiler for compiling +JSP pages. This means you no longer need to have the complete +Java Development Kit (JDK) to run Tomcat, but a Java Runtime Environment +(JRE) is sufficient. The Eclipse JDT Java compiler is bundled with the +binary Tomcat distributions. Tomcat can also be configured to use the +compiler from the JDK to compile JSPs, or any other Java compiler supported +by Apache Ant. + + +======================= +JNI Based Applications: +======================= +Applications that require native libraries must ensure that the libraries have +been loaded prior to use. Typically, this is done with a call like: + + static { + System.loadLibrary("path-to-library-file"); + } + +in some class. However, the application must also ensure that the library is +not loaded more than once. If the above code were placed in a class inside +the web application (i.e. under /WEB-INF/classes or /WEB-INF/lib), and the +application were reloaded, the loadLibrary() call would be attempted a second +time. + +To avoid this problem, place classes that load native libraries outside of the +web application, and ensure that the loadLibrary() call is executed only once +during the lifetime of a particular JVM. + + +============= +Bundled APIs: +============= +A standard installation of Tomcat 5.5 makes all of the following APIs available +for use by web applications (by placing them in "common/lib" or "shared/lib"): +* commons-el.jar (Commons Expression Language 1.0) +* commons-logging-api.jar (Commons Logging API 1.0.x) +* jasper-compiler.jar (Jasper 2 Compiler) +* jasper-compiler-jdt.jar (Eclipse JDT Java compiler) +* jasper-runtime.jar (Jasper 2 Runtime) +* jsp-api.jar (JSP 2.0 API) +* naming-common.jar (JNDI Context implementation) +* naming-factory.jar (JNDI object factories for J2EE ENC support) +* naming-factory-dbcp.jar (DataSource implementation based on commons-dbcp) +* naming-resources.jar (JNDI DirContext implementations) +* servlet-api.jar (Servlet 2.4 API) + +Installing the compatibility package will add the following to the list, which are +needed when running on J2SE 1.4: +* jmx.jar (Java Management Extensions API 1.2 or later) +* xercesImpl.jar (Xerces XML Parser, version 2.6.2 or later) + +You can make additional APIs available to all of your web applications by +putting unpacked classes into a "classes" directory (not created by default), +or by placing them in JAR files in the "lib" directory. + +To override the XML parser implementation or interfaces, use the endorsed +mechanism of the JVM. The default configuration defines JARs located in +"common/endorsed" as endorsed. + + +================================================================ +Web application reloading and static fields in shared libraries: +================================================================ +Some shared libraries (many are part of the JDK) keep references to objects +instantiated by the web application. To avoid class loading related problems +(ClassCastExceptions, messages indicating that the classloader +is stopped, etc.), the shared libraries state should be reinitialized. + +Something which might help is to avoid putting classes which would be +referenced by a shared static field in the web application classloader, +and putting them in the shared classloader instead (JARs should be put in the +"lib" folder, and classes should be put in the "classes" folder). + + +================ +Tomcat on Linux: +================ +GLIBC 2.2 / Linux 2.4 users should define an environment variable: +export LD_ASSUME_KERNEL=2.2.5 + +Redhat Linux 9.0 users should use the following setting to avoid +stability problems: +export LD_ASSUME_KERNEL=2.4.1 + + +============================= +Enabling SSI and CGI Support: +============================= +Because of the security risks associated with CGI and SSI available +to web applications, these features are disabled by default. + +To enable and configure CGI support, please see the cgi-howto.html page. + +To enable and configue SSI support, please see the ssi-howto.html page. + + +====================== +Security manager URLs: +====================== +In order to grant security permissions to JARs located inside the +web application repository, use URLs of of the following format +in your policy file: + +file:${catalina.home}/webapps/examples/WEB-INF/lib/driver.jar + + +============================ +Symlinking static resources: +============================ +By default, Unix symlinks will not work when used in a web application to link +resources located outside the web application root directory. + +This behavior is optional, and the "allowLinking" flag may be used to disable +the check. + + +========================= +Enabling invoker servlet: +========================= +Starting with Tomcat 4.1.12, the invoker servlet is no longer available by +default in all webapps. Enabling it for all webapps is possible by editing +$CATALINA_HOME/conf/web.xml to uncomment the "/servlet/*" servlet-mapping +definition. + +Using the invoker servlet in a production environment is not recommended and +is unsupported. More details are available on the Tomcat FAQ at +http://tomcat.apache.org/faq/misc.html#invoker. + + +============================== +Viewing the Tomcat Change Log: +============================== +See changelog.html in this directory. + + +==================== +When all else fails: +==================== +See the FAQ +http://tomcat.apache.org/faq/ Added: trunk/openuss/servers/tomcat/RUNNING.txt =================================================================== --- trunk/openuss/servers/tomcat/RUNNING.txt (rev 0) +++ trunk/openuss/servers/tomcat/RUNNING.txt 2006-05-15 14:34:18 UTC (rev 11) @@ -0,0 +1,182 @@ +$Id: RUNNING.txt 354430 2005-12-06 13:44:26Z yoavs $ + + ============================================ + Running The Tomcat 5.5 Servlet/JSP Container + ============================================ + +Out of the box, Tomcat 5.5 requires the Java 2 Standard Edition Runtime +Environment (JRE) version 5.0 or later. However, you can also run Tomcat +5.5 on earlier versions of the JRE, as detailed below. + +============================= +Running With JRE 5.0 Or Later +============================= + +(1) Download and Install the J2SE Runtime Environment (JRE) + +(1.1) Download the Java 2 Standard Edition Runtime Environment (JRE), + release version 5.0 or later, from http://java.sun.com/j2se. + +(1.2) Install the JRE according to the instructions included with the + release. + +(1.3) Set an environment variable named JAVA_HOME to the pathname of + the directory into which you installed the JRE, e.g. c:\j2sdk5.0 + or /usr/local/java/j2sdk5.0. + + +(2) Download and Install the Tomcat Binary Distribution + +NOTE: As an alternative to downloading a binary distribution, you can create +your own from the Tomcat source repository, as described in "BUILDING.txt". +If you do this, the value to use for "${catalina.home}" will be the "dist" +subdirectory of your source distribution. + +(2.1) Download a binary distribution of Tomcat from: + + http://tomcat.apache.org + +(2.2) Unpack the binary distribution into a convenient location so that the + distribution resides in its own directory (conventionally named + "apache-tomcat-[version]"). For the purposes of the remainder of this document, + the symbolic name "$CATALINA_HOME" is used to refer to the full + pathname of the release directory. + + +(3) Start Up Tomcat + +(3.1) Tomcat can be started by executing the following commands: + + $CATALINA_HOME\bin\startup.bat (Windows) + + $CATALINA_HOME/bin/startup.sh (Unix) + +(3.2) After startup, the default web applications included with Tomcat will be + available by visiting: + + http://localhost:8080/ + +(3.3) Further information about configuring and running Tomcat can be found in + the documentation included here, as well as on the Tomcat web site: + + http://tomcat.apache.org + + +(4) Shut Down Tomcat + +(4.1) Tomcat can be shut down by executing the following command: + + $CATALINA_HOME\bin\shutdown (Windows) + + $CATALINA_HOME/bin/shutdown.sh (Unix) + + + +==================================== +Running Tomcat With J2SE Version 1.4 +==================================== + +(1) Obtain the compat package: + +(1.1) Download the compat package from the binary download site: + http://tomcat.apache.org + + * Or build this package yourself from the source code: see + "BUILDING.txt" in this directory. + +(2) Unzip the package in $CATALINA_HOME. It will place the XML + parser APIs and Xerces implementation in the common/endorsed + directory, and the JMX API jar (jmx.jar from Sun) in the bin + directory. + +(3) Follow the same directions for starting and stopping the + server as if you were using J2SE 5.0. + + +================================================== +Advanced Configuration - Multiple Tomcat Instances +================================================== + +In many circumstances, it is desirable to have a single copy of a Tomcat +binary distribution shared among multiple users on the same server. To make +this possible, you can pass a "-Dcatalina.base=$CATALINA_BASE" argument when +executing the startup command (see (2)). In this +"-Dcatalina.base=$CATALINA_BASE" argument, replace $CATALINA_BASE with the +directory that contains the files for your 'personal' Tomcat instance. + +When you use this "-Dcatalina.base=$CATALINA_BASE" argument, Tomcat will +calculate all relative references for files in the following directories based +on the value of $CATALINA_BASE instead of $CATALINA_HOME: + +* conf - Server configuration files (including server.xml) + +* logs - Log and output files + +* shared - For classes and resources that must be shared across all web + applications + +* webapps - Automatically loaded web applications + +* work - Temporary working directories for web applications + +* temp - Directory used by the JVM for temporary files (java.io.tmpdir) + +If you do not pass the "-Dcatalina.base=$CATALINA_BASE" argument to the +startup command, $CATALINA_BASE will default to the same value as $CATALINA_HOME, + which means that the same directory is used for all relative path resolutions. + +The administration and manager web applications, which are defined in the +$CATALINA_BASE/conf/Catalina/localhost/admin.xml +and +$CATALINA_BASE/conf/Catalina/localhost/manager.xml files, will +not run in that configuration, unless either: +- The path specified in the docBase attribute of the Context element is made + absolute, and replaced respectively by $CATALINA_HOME/server/webapps/admin + and $CATALINA_HOME/server/webapps/manager +- Both web applications are copied or moved to $CATALINA_BASE, + and the path specified in the docBase attribute of the Context + element is modified appropriately. +- Both web applications are disabled by removing + $CATALINA_BASE/conf/Catalina/localhost/admin.xml + and + $CATALINA_BASE/conf/Catalina/localhost/manager.xml. + + +================ +Troubleshooting +================ + +There are only really 3 things likely to go wrong during the stand-alone +Tomcat install: + +(1) The most common hiccup is when another web server (or any process for that + matter) has laid claim to port 8080. This is the default HTTP port that + Tomcat attempts to bind to at startup. To change this, open the file: + + $CATALINA_HOME/conf/server.xml + + and search for '8080'. Change it to a port that isn't in use, and is + greater than 1024, as ports less than or equal to 1024 require superuser + access to bind under UNIX. + + Restart Tomcat and you're in business. Be sure that you replace the "8080" + in the URL you're using to access Tomcat. For example, if you change the + port to 1977, you would request the URL http://localhost:1977/ in your browser. + +(2) An "out of environment space" error when running the batch files in + Windows 95, 98, or ME operating systems. + + Right-click on the STARTUP.BAT and SHUTDOWN.BAT files. Click on + "Properties", then on the "Memory" tab. For the "Initial environment" field, + enter in something like 4096. + + After you click apply, Windows will create shortcuts which you can use + to start and stop the container. + +(3) The 'localhost' machine isn't found. This could happen if you're behind a + proxy. If that's the case, make sure the proxy configuration for your + browser knows that you shouldn't be going through the proxy to access the + "localhost". + + In Netscape, this is under Edit/Preferences -> Advanced/Proxies, and in + Internet Explorer, Tools -> Internet Options -> Connections -> LAN Settings. Added: trunk/openuss/servers/tomcat/bin/bootstrap.jar =================================================================== (Binary files differ) Property changes on: trunk/openuss/servers/tomcat/bin/bootstrap.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/servers/tomcat/bin/catalina-tasks.xml =================================================================== --- trunk/openuss/servers/tomcat/bin/catalina-tasks.xml (rev 0) +++ trunk/openuss/servers/tomcat/bin/catalina-tasks.xml 2006-05-15 14:34:18 UTC (rev 11) @@ -0,0 +1,20 @@ +<!-- + XML file for importing Catalina ant tasks. + <import file="${catalina.home}/bin/catalina-tasks.xml"/> +--> + +<project name="catalina-tasks"> + <description>Catalina Ant Manager and JSPC Tasks</description> + <!-- set catalina.home if it's not already set --> + <dirname property="catalina.home.bin.dir" file="${ant.file.catalina-tasks}"/> + <property name="catalina.home" value="${catalina.home.bin.dir}/.."/> + <taskdef resource="org/apache/catalina/ant/catalina.tasks"> + <classpath> + <fileset file="${catalina.home}/bin/commons-logging-api.jar"/> + <fileset file="${catalina.home}/common/lib/jasper-compiler.jar"/> + <fileset file="${catalina.home}/common/lib/jasper-runtime.jar"/> + <fileset file="${catalina.home}/common/lib/servlet-api.jar"/> + <fileset file="${catalina.home}/server/lib/catalina-ant.jar"/> + </classpath> + </taskdef> +</project> Added: trunk/openuss/servers/tomcat/bin/catalina.bat =================================================================== --- trunk/openuss/servers/tomcat/bin/catalina.bat (rev 0) +++ trunk/openuss/servers/tomcat/bin/catalina.bat 2006-05-15 14:34:18 UTC (rev 11) @@ -0,0 +1,206 @@ +@echo off +if "%OS%" == "Windows_NT" setlocal +rem --------------------------------------------------------------------------- +rem Start/Stop Script for the CATALINA Server +rem +rem Environment Variable Prequisites +rem +rem CATALINA_HOME May point at your Catalina "build" directory. +rem +rem CATALINA_BASE (Optional) Base directory for resolving dynamic portions +rem of a Catalina installation. If not present, resolves to +rem the same directory that CATALINA_HOME points to. +rem +rem CATALINA_OPTS (Optional) Java runtime options used when the "start", +rem "stop", or "run" command is executed. +rem +rem CATALINA_TMPDIR (Optional) Directory path location of temporary directory +rem the JVM should use (java.io.tmpdir). Defaults to +rem %CATALINA_BASE%\temp. +rem +rem JAVA_HOME Must point at your Java Development Kit installation. +rem Required to run the with the "debug" argument. +rem +rem JRE_HOME Must point at your Java Development Kit installation. +rem Defaults to JAVA_HOME if empty. +rem +rem JAVA_OPTS (Optional) Java runtime options used when the "start", +rem "stop", or "run" command is executed. +rem +rem JSSE_HOME (Optional) May point at your Java Secure Sockets Extension +rem (JSSE) installation, whose JAR files will be added to the +rem system class path used to start Tomcat. +rem +rem JPDA_TRANSPORT (Optional) JPDA transport used when the "jpda start" +rem command is executed. The default is "dt_shmem". +rem +rem JPDA_ADDRESS (Optional) Java runtime options used when the "jpda start" +rem command is executed. The default is "jdbconn". +rem +rem $Id: catalina.bat 355227 2005-12-08 21:44:16Z keith $ +rem --------------------------------------------------------------------------- + +rem Guess CATALINA_HOME if not defined +set CURRENT_DIR=%cd% +if not "%CATALINA_HOME%" == "" goto gotHome +set CATALINA_HOME=%CURRENT_DIR% +if exist "%CATALINA_HOME%\bin\catalina.bat" goto okHome +cd .. +set CATALINA_HOME=%cd% +cd %CURRENT_DIR% +:gotHome +if exist "%CATALINA_HOME%\bin\catalina.bat" goto okHome +echo The CATALINA_HOME environment variable is not defined correctly +echo This environment variable is needed to run this program +goto end +:okHome + +rem Get standard environment variables +if exist "%CATALINA_HOME%\bin\setenv.bat" call "%CATALINA_HOME%\bin\setenv.bat" + +rem Get standard Java environment variables +if exist "%CATALINA_HOME%\bin\setclasspath.bat" goto okSetclasspath +echo Cannot find %CATALINA_HOME%\bin\setclasspath.bat +echo This file is needed to run this program +goto end +:okSetclasspath +set BASEDIR=%CATALINA_HOME% +call "%CATALINA_HOME%\bin\setclasspath.bat" %1 +if errorlevel 1 goto end + +rem Add on extra jar files to CLASSPATH +if "%JSSE_HOME%" == "" goto noJsse +set CLASSPATH=%CLASSPATH%;%JSSE_HOME%\lib\jcert.jar;%JSSE_HOME%\lib\jnet.jar;%JSSE_HOME%\lib\jsse.jar +:noJsse +set CLASSPATH=%CLASSPATH%;%CATALINA_HOME%\bin\bootstrap.jar + +if not "%CATALINA_BASE%" == "" goto gotBase +set CATALINA_BASE=%CATALINA_HOME% +:gotBase + +if not "%CATALINA_TMPDIR%" == "" goto gotTmpdir +set CATALINA_TMPDIR=%CATALINA_BASE%\temp +:gotTmpdir + +if not exist "%CATALINA_HOME%\bin\tomcat-juli.jar" goto noJuli +set JAVA_OPTS=%JAVA_OPTS% -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.util.logging.config.file="%CATALINA_BASE%\conf\logging.properties" +:noJuli + +rem ----- Execute The Requested Command --------------------------------------- + +echo Using CATALINA_BASE: %CATALINA_BASE% +echo Using CATALINA_HOME: %CATALINA_HOME% +echo Using CATALINA_TMPDIR: %CATALINA_TMPDIR% +if ""%1"" == ""debug"" goto use_jdk +echo Using JRE_HOME: %JRE_HOME% +goto java_dir_displayed +:use_jdk +echo Using JAVA_HOME: %JAVA_HOME% +:java_dir_displayed + +set _EXECJAVA=%_RUNJAVA% +set MAINCLASS=org.apache.catalina.startup.Bootstrap +set ACTION=start +set SECURITY_POLICY_FILE= +set DEBUG_OPTS= +set JPDA= + +if not ""%1"" == ""jpda"" goto noJpda +set JPDA=jpda +if not "%JPDA_TRANSPORT%" == "" goto gotJpdaTransport +set JPDA_TRANSPORT=dt_shmem +:gotJpdaTransport +if not "%JPDA_ADDRESS%" == "" goto gotJpdaAddress +set JPDA_ADDRESS=jdbconn +:gotJpdaAddress +shift +:noJpda + +if ""%1"" == ""debug"" goto doDebug +if ""%1"" == ""run"" goto doRun +if ""%1"" == ""start"" goto doStart +if ""%1"" == ""stop"" goto doStop +if ""%1"" == ""version"" goto doVersion + +echo Usage: catalina ( commands ... ) +echo commands: +echo debug Start Catalina in a debugger +echo debug -security Debug Catalina with a security manager +echo jpda start Start Catalina under JPDA debugger +echo run Start Catalina in the current window +echo run -security Start in the current window with security manager +echo start Start Catalina in a separate window +echo start -security Start in a separate window with security manager +echo stop Stop Catalina +echo version What version of tomcat are you running? +goto end + +:doDebug +shift +set _EXECJAVA=%_RUNJDB% +set DEBUG_OPTS=-sourcepath "%CATALINA_HOME%\..\..\jakarta-tomcat-catalina\catalina\src\share" +if not ""%1"" == ""-security"" goto execCmd +shift +echo Using Security Manager +set SECURITY_POLICY_FILE=%CATALINA_BASE%\conf\catalina.policy +goto execCmd + +:doRun +shift +if not ""%1"" == ""-security"" goto execCmd +shift +echo Using Security Manager +set SECURITY_POLICY_FILE=%CATALINA_BASE%\conf\catalina.policy +goto execCmd + +:doStart +shift +if not "%OS%" == "Windows_NT" goto noTitle +set _EXECJAVA=start "Tomcat" %_RUNJAVA% +goto gotTitle +:noTitle +set _EXECJAVA=start %_RUNJAVA% +:gotTitle +if not ""%1"" == ""-security"" goto execCmd +shift +echo Using Security Manager +set SECURITY_POLICY_FILE=%CATALINA_BASE%\conf\catalina.policy +goto execCmd + +:doStop +shift +set ACTION=stop +goto execCmd + +:doVersion +%_EXECJAVA% -classpath "%CATALINA_HOME%\server\lib\catalina.jar" org.apache.catalina.util.ServerInfo +goto end + + +:execCmd +rem Get remaining unshifted command line arguments and save them in the +set CMD_LINE_ARGS= +:setArgs +if ""%1""=="""" goto doneSetArgs +set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1 +shift +goto setArgs +:doneSetArgs + +rem Execute Java with the applicable properties +if not "%JPDA%" == "" goto doJpda +if not "%SECURITY_POLICY_FILE%" == "" goto doSecurity +%_EXECJAVA% %JAVA_OPTS% %CATALINA_OPTS% %DEBUG_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION% +goto end +:doSecurity +%_EXECJAVA% %JAVA_OPTS% %CATALINA_OPTS% %DEBUG_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Djava.security.manager -Djava.security.policy=="%SECURITY_POLICY_FILE%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION% +goto end +:doJpda +if not "%SECURITY_POLICY_FILE%" == "" goto doSecurityJpda +%_EXECJAVA% %JAVA_OPTS% %CATALINA_OPTS% -Xdebug -Xrunjdwp:transport=%JPDA_TRANSPORT%,address=%JPDA_ADDRESS%,server=y,suspend=n %DEBUG_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION% +goto end +:doSecurityJpda +%_EXECJAVA% %JAVA_OPTS% %CATALINA_OPTS% -Xdebug -Xrunjdwp:transport=%JPDA_TRANSPORT%,address=%JPDA_ADDRESS%,server=y,suspend=n %DEBUG_OPTS% -Djava.endorsed.dirs="%JAVA_ENDORSED_DIRS%" -classpath "%CLASSPATH%" -Djava.security.manager -Djava.security.policy=="%SECURITY_POLICY_FILE%" -Dcatalina.base="%CATALINA_BASE%" -Dcatalina.home="%CATALINA_HOME%" -Djava.io.tmpdir="%CATALINA_TMPDIR%" %MAINCLASS% %CMD_LINE_ARGS% %ACTION% +goto end + +:end Added: trunk/openuss/servers/tomcat/bin/catalina.sh =================================================================== --- trunk/openuss/servers/tomcat/bin/catalina.sh (rev 0) +++ trunk/openuss/servers/tomcat/bin/catalina.sh 2006-05-15 14:34:18 UTC (rev 11) @@ -0,0 +1,323 @@ +#!/bin/sh +# ----------------------------------------------------------------------------- +# Start/Stop Script for the CATALINA Server +# +# Environment Variable Prequisites +# +# CATALINA_HOME May point at your Catalina "build" directory. +# +# CATALINA_BASE (Optional) Base directory for resolving dynamic portions +# of a Catalina installation. If not present, resolves to +# the same directory that CATALINA_HOME points to. +# +# CATALINA_OPTS (Optional) Java runtime options used when the "start", +# "stop", or "run" command is executed. +# +# CATALINA_TMPDIR (Optional) Directory path location of temporary directory +# the JVM should use (java.io.tmpdir). Defaults to +# $CATALINA_BASE/temp. +# +# JAVA_HOME Must point at your Java Development Kit installation. +# Required to run the with the "debug" or "javac" argument. +# +# JRE_HOME Must point at your Java Development Kit installation. +# Defaults to JAVA_HOME if empty. +# +# JAVA_OPTS (Optional) Java runtime options used when the "start", +# "stop", or "run" command is executed. +# +# JPDA_TRANSPORT (Optional) JPDA transport used when the "jpda start" +# command is executed. The default is "dt_socket". +# +# JPDA_ADDRESS (Optional) Java runtime options used when the "jpda start" +# command is executed. The default is 8000. +# +# JSSE_HOME (Optional) May point at your Java Secure Sockets Extension +# (JSSE) installation, whose JAR files will be added to the +# system class path used to start Tomcat. +# +# CATALINA_PID (Optional) Path of the file which should contains the pid +# of catalina startup java process, when start (fork) is used +# +# $Id: catalina.sh 394120 2006-04-14 15:25:07Z yoavs $ +# ----------------------------------------------------------------------------- + +# OS specific support. $var _must_ be set to either true or false. +cygwin=false +os400=false +darwin=false +case "`uname`" in +CYGWIN*) cygwin=true;; +OS400*) os400=true;; +Darwin*) darwin=true;; +esac + +# resolve links - $0 may be a softlink +PRG="$0" + +while [ -h "$PRG" ]; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`/"$link" + fi +done + +# Get standard environment variables +PRGDIR=`dirname "$PRG"` + +# Only set CATALINA_HOME if not already set +[ -z "$CATALINA_HOME" ] && CATALINA_HOME=`cd "$PRGDIR/.." ; pwd` + +if [ -r "$CATALINA_HOME"/bin/setenv.sh ]; then + . "$CATALINA_HOME"/bin/setenv.sh +fi + +# For Cygwin, ensure paths are in UNIX format before anything is touched +if $cygwin; then + [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` + [ -n "$JRE_HOME" ] && JRE_HOME=`cygpath --unix "$JRE_HOME"` + [ -n "$CATALINA_HOME" ] && CATALINA_HOME=`cygpath --unix "$CATALINA_HOME"` + [ -n "$CATALINA_BASE" ] && CATALINA_BASE=`cygpath --unix "$CATALINA_BASE"` + [ -n "$CLASSPATH" ] && CLASSPATH=`cygpath --path --unix "$CLASSPATH"` + [ -n "$JSSE_HOME" ] && JSSE_HOME=`cygpath --absolute --unix "$JSSE_HOME"` +fi + +# For OS400 +if $os400; then + # Set job priority to standard for interactive (interactive - 6) by using + # the interactive priority - 6, the helper threads that respond to requests + # will be running at the same priority as interactive jobs. + COMMAND='chgjob job('$JOBNAME') runpty(6)' + system $COMMAND + + # Enable multi threading + export QIBM_MULTI_THREADED=Y +fi + +# Get standard Java environment variables +if $os400; then + # -r will Only work on the os400 if the files are: + # 1. owned by the user + # 2. owned by the PRIMARY group of the user + # this will not work if the user belongs in secondary groups + BASEDIR="$CATALINA_HOME" + . "$CATALINA_HOME"/bin/setclasspath.sh +else + if [ -r "$CATALINA_HOME"/bin/setclasspath.sh ]; then + BASEDIR="$CATALINA_HOME" + . "$CATALINA_HOME"/bin/setclasspath.sh + else + echo "Cannot find $CATALINA_HOME/bin/setclasspath.sh" + echo "This file is needed to run this program" + exit 1 + fi +fi + +# Add on extra jar files to CLASSPATH +if [ -n "$JSSE_HOME" ]; then + CLASSPATH="$CLASSPATH":"$JSSE_HOME"/lib/jcert.jar:"$JSSE_HOME"/lib/jnet.jar:"$JSSE_HOME"/lib/jsse.jar +fi +CLASSPATH="$CLASSPATH":"$CATALINA_HOME"/bin/bootstrap.jar:"$CATALINA_HOME"/bin/commons-logging-api.jar + +if [ -z "$CATALINA_BASE" ] ; then + CATALINA_BASE="$CATALINA_HOME" +fi + +if [ -z "$CATALINA_TMPDIR" ] ; then + # Define the java.io.tmpdir to use for Catalina + CATALINA_TMPDIR="$CATALINA_BASE"/temp +fi + +# Bugzilla 37848: When no TTY is available, don't output to console +have_tty=0 +if [ "`tty`" != "not a tty" ]; then + have_tty=1 +fi + +# For Cygwin, switch paths to Windows format before running java +if $cygwin; then + JAVA_HOME=`cygpath --absolute --windows "$JAVA_HOME"` + JRE_HOME=`cygpath --absolute --windows "$JRE_HOME"` + CATALINA_HOME=`cygpath --absolute --windows "$CATALINA_HOME"` + CATALINA_BASE=`cygpath --absolute --windows "$CATALINA_BASE"` + CATALINA_TMPDIR=`cygpath --absolute --windows "$CATALINA_TMPDIR"` + CLASSPATH=`cygpath --path --windows "$CLASSPATH"` + [ -n "$JSSE_HOME" ] && JSSE_HOME=`cygpath --absolute --windows "$JSSE_HOME"` + JAVA_ENDORSED_DIRS=`cygpath --path --windows "$JAVA_ENDORSED_DIRS"` +fi + +# Set juli LogManager if it is present +if [ -r "$CATALINA_HOME"/bin/tomcat-juli.jar ]; then + JAVA_OPTS="$JAVA_OPTS "-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager" "-Djava.util.logging.config.file="$CATALINA_BASE/conf/logging.properties" +fi + +# ----- Execute The Requested Command ----------------------------------------- + +# Bugzilla 37848: only output this if we have a TTY +if [ $have_tty -eq 1 ]; then + echo "Using CATALINA_BASE: $CATALINA_BASE" + echo "Using CATALINA_HOME: $CATALINA_HOME" + echo "Using CATALINA_TMPDIR: $CATALINA_TMPDIR" + if [ "$1" = "debug" -o "$1" = "javac" ] ; then + echo "Using JAVA_HOME: $JAVA_HOME" + else + echo "Using JRE_HOME: $JRE_HOME" + fi +fi + +if [ "$1" = "jpda" ] ; then + if [ -z "$JPDA_TRANSPORT" ]; then + JPDA_TRANSPORT="dt_socket" + fi + if [ -z "$JPDA_ADDRESS" ]; then + JPDA_ADDRESS="8000" + fi + if [ -z "$JPDA_OPTS" ]; then + JPDA_OPTS="-Xdebug -Xrunjdwp:transport=$JPDA_TRANSPORT,address=$JPDA_ADDRESS,server=y,suspend=n" + fi + CATALINA_OPTS="$CATALINA_OPTS $JPDA_OPTS" + shift +fi + +if [ "$1" = "debug" ] ; then + if $os400; then + echo "Debug command not available on OS400" + exit 1 + else + shift + if [ "$... [truncated message content] |
From: <id...@us...> - 2006-05-15 14:33:39
|
Revision: 10 Author: idueppe Date: 2006-05-15 07:33:18 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=10&view=rev Log Message: ----------- setup openuss 3.0 trunk Added Paths: ----------- trunk/openuss/servers/tomcat/webapps/ROOT/ trunk/openuss/servers/tomcat/webapps/ROOT/RELEASE-NOTES.txt trunk/openuss/servers/tomcat/webapps/ROOT/WEB-INF/ trunk/openuss/servers/tomcat/webapps/ROOT/WEB-INF/lib/ trunk/openuss/servers/tomcat/webapps/ROOT/WEB-INF/lib/catalina-root.jar trunk/openuss/servers/tomcat/webapps/ROOT/WEB-INF/web.xml trunk/openuss/servers/tomcat/webapps/ROOT/admin/ trunk/openuss/servers/tomcat/webapps/ROOT/admin/index.html trunk/openuss/servers/tomcat/webapps/ROOT/asf-logo-wide.gif trunk/openuss/servers/tomcat/webapps/ROOT/favicon.ico trunk/openuss/servers/tomcat/webapps/ROOT/index.jsp trunk/openuss/servers/tomcat/webapps/ROOT/tomcat-power.gif trunk/openuss/servers/tomcat/webapps/ROOT/tomcat.gif trunk/openuss/servers/tomcat/webapps/balancer/ trunk/openuss/servers/tomcat/webapps/balancer/META-INF/ trunk/openuss/servers/tomcat/webapps/balancer/META-INF/context.xml trunk/openuss/servers/tomcat/webapps/balancer/WEB-INF/ trunk/openuss/servers/tomcat/webapps/balancer/WEB-INF/config/ trunk/openuss/servers/tomcat/webapps/balancer/WEB-INF/config/rules.xml trunk/openuss/servers/tomcat/webapps/balancer/WEB-INF/lib/ trunk/openuss/servers/tomcat/webapps/balancer/WEB-INF/lib/catalina-balancer.jar trunk/openuss/servers/tomcat/webapps/balancer/WEB-INF/web.xml trunk/openuss/servers/tomcat/webapps/balancer/images/ Added: trunk/openuss/servers/tomcat/webapps/ROOT/RELEASE-NOTES.txt =================================================================== --- trunk/openuss/servers/tomcat/webapps/ROOT/RELEASE-NOTES.txt (rev 0) +++ trunk/openuss/servers/tomcat/webapps/ROOT/RELEASE-NOTES.txt 2006-05-15 14:33:18 UTC (rev 10) @@ -0,0 +1,174 @@ + + + Apache Tomcat Version 5.5.17 + Release Notes + + +$Id: RELEASE-NOTES 351503 2005-12-01 22:12:48Z keith $ + + +============================= +KNOWN ISSUES IN THIS RELEASE: +============================= + +* Dependency Changes +* JNI Based Applications +* Bundled APIs +* Web application reloading and static fields in shared libraries +* Tomcat on Linux +* Enabling SSI and CGI Support +* Security manager URLs +* Symlinking static resources +* Enabling invoker servlet +* Viewing the Tomcat Change Log +* When all else fails + + +=================== +Dependency Changes: +=================== +Tomcat 5.5 is designed to run on J2SE 5.0 and later, and requires +configuration to run on J2SE 1.4. Make sure to read the "RUNNING.txt" +file in the fulldocs downloadable file(s) if you are using J2SE 1.4. + +In addition, Tomcat 5.5 uses the Eclipse JDT Java compiler for compiling +JSP pages. This means you no longer need to have the complete +Java Development Kit (JDK) to run Tomcat, but a Java Runtime Environment +(JRE) is sufficient. The Eclipse JDT Java compiler is bundled with the +binary Tomcat distributions. Tomcat can also be configured to use the +compiler from the JDK to compile JSPs, or any other Java compiler supported +by Apache Ant. + + +======================= +JNI Based Applications: +======================= +Applications that require native libraries must ensure that the libraries have +been loaded prior to use. Typically, this is done with a call like: + + static { + System.loadLibrary("path-to-library-file"); + } + +in some class. However, the application must also ensure that the library is +not loaded more than once. If the above code were placed in a class inside +the web application (i.e. under /WEB-INF/classes or /WEB-INF/lib), and the +application were reloaded, the loadLibrary() call would be attempted a second +time. + +To avoid this problem, place classes that load native libraries outside of the +web application, and ensure that the loadLibrary() call is executed only once +during the lifetime of a particular JVM. + + +============= +Bundled APIs: +============= +A standard installation of Tomcat 5.5 makes all of the following APIs available +for use by web applications (by placing them in "common/lib" or "shared/lib"): +* commons-el.jar (Commons Expression Language 1.0) +* commons-logging-api.jar (Commons Logging API 1.0.x) +* jasper-compiler.jar (Jasper 2 Compiler) +* jasper-compiler-jdt.jar (Eclipse JDT Java compiler) +* jasper-runtime.jar (Jasper 2 Runtime) +* jsp-api.jar (JSP 2.0 API) +* naming-common.jar (JNDI Context implementation) +* naming-factory.jar (JNDI object factories for J2EE ENC support) +* naming-factory-dbcp.jar (DataSource implementation based on commons-dbcp) +* naming-resources.jar (JNDI DirContext implementations) +* servlet-api.jar (Servlet 2.4 API) + +Installing the compatibility package will add the following to the list, which are +needed when running on J2SE 1.4: +* jmx.jar (Java Management Extensions API 1.2 or later) +* xercesImpl.jar (Xerces XML Parser, version 2.6.2 or later) + +You can make additional APIs available to all of your web applications by +putting unpacked classes into a "classes" directory (not created by default), +or by placing them in JAR files in the "lib" directory. + +To override the XML parser implementation or interfaces, use the endorsed +mechanism of the JVM. The default configuration defines JARs located in +"common/endorsed" as endorsed. + + +================================================================ +Web application reloading and static fields in shared libraries: +================================================================ +Some shared libraries (many are part of the JDK) keep references to objects +instantiated by the web application. To avoid class loading related problems +(ClassCastExceptions, messages indicating that the classloader +is stopped, etc.), the shared libraries state should be reinitialized. + +Something which might help is to avoid putting classes which would be +referenced by a shared static field in the web application classloader, +and putting them in the shared classloader instead (JARs should be put in the +"lib" folder, and classes should be put in the "classes" folder). + + +================ +Tomcat on Linux: +================ +GLIBC 2.2 / Linux 2.4 users should define an environment variable: +export LD_ASSUME_KERNEL=2.2.5 + +Redhat Linux 9.0 users should use the following setting to avoid +stability problems: +export LD_ASSUME_KERNEL=2.4.1 + + +============================= +Enabling SSI and CGI Support: +============================= +Because of the security risks associated with CGI and SSI available +to web applications, these features are disabled by default. + +To enable and configure CGI support, please see the cgi-howto.html page. + +To enable and configue SSI support, please see the ssi-howto.html page. + + +====================== +Security manager URLs: +====================== +In order to grant security permissions to JARs located inside the +web application repository, use URLs of of the following format +in your policy file: + +file:${catalina.home}/webapps/examples/WEB-INF/lib/driver.jar + + +============================ +Symlinking static resources: +============================ +By default, Unix symlinks will not work when used in a web application to link +resources located outside the web application root directory. + +This behavior is optional, and the "allowLinking" flag may be used to disable +the check. + + +========================= +Enabling invoker servlet: +========================= +Starting with Tomcat 4.1.12, the invoker servlet is no longer available by +default in all webapps. Enabling it for all webapps is possible by editing +$CATALINA_HOME/conf/web.xml to uncomment the "/servlet/*" servlet-mapping +definition. + +Using the invoker servlet in a production environment is not recommended and +is unsupported. More details are available on the Tomcat FAQ at +http://tomcat.apache.org/faq/misc.html#invoker. + + +============================== +Viewing the Tomcat Change Log: +============================== +See changelog.html in this directory. + + +==================== +When all else fails: +==================== +See the FAQ +http://tomcat.apache.org/faq/ Added: trunk/openuss/servers/tomcat/webapps/ROOT/WEB-INF/lib/catalina-root.jar =================================================================== (Binary files differ) Property changes on: trunk/openuss/servers/tomcat/webapps/ROOT/WEB-INF/lib/catalina-root.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/servers/tomcat/webapps/ROOT/WEB-INF/web.xml =================================================================== --- trunk/openuss/servers/tomcat/webapps/ROOT/WEB-INF/web.xml (rev 0) +++ trunk/openuss/servers/tomcat/webapps/ROOT/WEB-INF/web.xml 2006-05-15 14:33:18 UTC (rev 10) @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + Copyright 2004 The Apache Software Foundation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<web-app xmlns="http://java.sun.com/xml/ns/j2ee" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" + version="2.4"> + + <display-name>Welcome to Tomcat</display-name> + <description> + Welcome to Tomcat + </description> + +<!-- JSPC servlet mappings start --> + + <servlet> + <servlet-name>org.apache.jsp.index_jsp</servlet-name> + <servlet-class>org.apache.jsp.index_jsp</servlet-class> + </servlet> + + <servlet-mapping> + <servlet-name>org.apache.jsp.index_jsp</servlet-name> + <url-pattern>/index.jsp</url-pattern> + </servlet-mapping> + +<!-- JSPC servlet mappings end --> + +</web-app> Added: trunk/openuss/servers/tomcat/webapps/ROOT/admin/index.html =================================================================== --- trunk/openuss/servers/tomcat/webapps/ROOT/admin/index.html (rev 0) +++ trunk/openuss/servers/tomcat/webapps/ROOT/admin/index.html 2006-05-15 14:33:18 UTC (rev 10) @@ -0,0 +1,14 @@ +<!doctype html public "-//w3c//dtd html 4.0 transitional//en" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> + <title>Administration</title> +</head> + +<body> + +Tomcat's administration web application is no longer installed by default. Download and install +the "admin" package to use it. + +</body> +</html> Added: trunk/openuss/servers/tomcat/webapps/ROOT/asf-logo-wide.gif =================================================================== (Binary files differ) Property changes on: trunk/openuss/servers/tomcat/webapps/ROOT/asf-logo-wide.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/servers/tomcat/webapps/ROOT/favicon.ico =================================================================== (Binary files differ) Property changes on: trunk/openuss/servers/tomcat/webapps/ROOT/favicon.ico ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/servers/tomcat/webapps/ROOT/index.jsp =================================================================== --- trunk/openuss/servers/tomcat/webapps/ROOT/index.jsp (rev 0) +++ trunk/openuss/servers/tomcat/webapps/ROOT/index.jsp 2006-05-15 14:33:18 UTC (rev 10) @@ -0,0 +1,218 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<%@ page session="false" %> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> + <head> + <title><%= application.getServerInfo() %></title> + <style type="text/css"> + /*<![CDATA[*/ + body { + color: #000000; + background-color: #FFFFFF; + font-family: Arial, "Times New Roman", Times, serif; + margin: 10px 0px; + } + + img { + border: none; + } + + a:link, a:visited { + color: blue + } + + th { + font-family: Verdana, "Times New Roman", Times, serif; + font-size: 110%; + font-weight: normal; + font-style: italic; + background: #D2A41C; + text-align: left; + } + + td { + color: #000000; + font-family: Arial, Helvetica, sans-serif; + } + + td.menu { + background: #FFDC75; + } + + .center { + text-align: center; + } + + .code { + color: #000000; + font-family: "Courier New", Courier, monospace; + font-size: 110%; + margin-left: 2.5em; + } + + #banner { + margin-bottom: 12px; + } + + p#congrats { + margin-top: 0; + font-weight: bold; + text-align: center; + } + + p#footer { + text-align: right; + font-size: 80%; + } + /*]]>*/ + </style> +</head> + +<body> + +<!-- Header --> +<table id="banner" width="100%"> + <tr> + <td align="left" style="width:130px"> + <a href="http://tomcat.apache.org/"> + <img src="tomcat.gif" height="92" width="130" alt="The Mighty Tomcat - MEOW!"/> + </a> + </td> + <td align="left" valign="top"><b><%= application.getServerInfo() %></b></td> + <td align="right"> + <a href="http://jakarta.apache.org/"> + <img src="asf-logo-wide.gif" height="51" width="537" alt="The Apache Software Foundation"/> + </a> + </td> + </tr> +</table> + +<table> + <tr> + + <!-- Table of Contents --> + <td valign="top"> + <table width="100%" border="1" cellspacing="0" cellpadding="3"> + <tr> + <th>Administration</th> + </tr> + <tr> + <td class="menu"> + <a href="manager/status">Status</a><br/> + <a href="admin">Tomcat Administration</a><br/> + <a href="manager/html">Tomcat Manager</a><br/> + + </td> + </tr> + </table> + + <br /> + <table width="100%" border="1" cellspacing="0" cellpadding="3"> + <tr> + <th>Documentation</th> + </tr> + <tr> + <td class="menu"> + <a href="RELEASE-NOTES.txt">Release Notes</a><br/> + <a href="tomcat-docs/changelog.html">Change Log</a><br/> + <a href="tomcat-docs">Tomcat Documentation</a><br/> + + </td> + </tr> + </table> + + <br/> + <table width="100%" border="1" cellspacing="0" cellpadding="3"> + <tr> + <th>Tomcat Online</th> + </tr> + <tr> + <td class="menu"> + <a href="http://tomcat.apache.org/">Home Page</a><br/> + <a href="http://tomcat.apache.org/faq/">FAQ</a><br/> + <a href="http://tomcat.apache.org/bugreport.html">Bug Database</a><br/> + <a href="http://issues.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&resolution=LATER&resolution=REMIND&resolution=---&bugidtype=include&product=Tomcat+5&cmdtype=doit&order=Importance">Open Bugs</a><br/> + <a href="http://mail-archives.apache.org/mod_mbox/tomcat-users/">Users Mailing List</a><br/> + <a href="http://mail-archives.apache.org/mod_mbox/tomcat-dev/">Developers Mailing List</a><br/> + <a href="irc://irc.freenode.net/#tomcat">IRC</a><br/> + + </td> + </tr> + </table> + + <br/> + <table width="100%" border="1" cellspacing="0" cellpadding="3"> + <tr> + <th>Examples</th> + </tr> + <tr> + <td class="menu"> + <a href="jsp-examples/">JSP Examples</a><br/> + <a href="servlets-examples/">Servlet Examples</a><br/> + <a href="webdav/">WebDAV capabilities</a><br/> + + </td> + </tr> + </table> + + <br/> + <table width="100%" border="1" cellspacing="0" cellpadding="3"> + <tr> + <th>Miscellaneous</th> + </tr> + <tr> + <td class="menu"> + <a href="http://java.sun.com/products/jsp">Sun's Java Server Pages Site</a><br/> + <a href="http://java.sun.com/products/servlet">Sun's Servlet Site</a><br/> + + </td> + </tr> + </table> + </td> + + <td style="width:20px"> </td> + + <!-- Body --> + <td align="left" valign="top"> + <p id="congrats">If you're seeing this page via a web browser, it means you've setup Tomcat successfully. Congratulations!</p> + + <p>As you may have guessed by now, this is the default Tomcat home page. It can be found on the local filesystem at:</p> + <p class="code">$CATALINA_HOME/webapps/ROOT/index.jsp</p> + + <p>where "$CATALINA_HOME" is the root of the Tomcat installation directory. If you're seeing this page, and you don't think you should be, then either you're either a user who has arrived at new installation of Tomcat, or you're an administrator who hasn't got his/her setup quite right. Providing the latter is the case, please refer to the <a href="tomcat-docs">Tomcat Documentation</a> for more detailed setup and administration information than is found in the INSTALL file.</p> + + <p><b>NOTE:</b> This page is precompiled. If you change it, this page will not change since + it was compiled into a servlet at build time. + (See <tt>$CATALINA_HOME/webapps/ROOT/WEB-INF/web.xml</tt> as to how it was mapped.) + </p> + + <p><b>NOTE: For security reasons, using the administration webapp + is restricted to users with role "admin". The manager webapp + is restricted to users with role "manager".</b> + Users are defined in <code>$CATALINA_HOME/conf/tomcat-users.xml</code>.</p> + + <p>Included with this release are a host of sample Servlets and JSPs (with associated source code), extensive documentation (including the Servlet 2.4 and JSP 2.0 API JavaDoc), and an introductory guide to developing web applications.</p> + + <p>Tomcat mailing lists are available at the Tomcat project web site:</p> + + <ul> + <li><b><a href="mailto:us...@to...">us...@to...</a></b> for general questions related to configuring and using Tomcat</li> + <li><b><a href="mailto:de...@to...">de...@to...</a></b> for developers working on Tomcat</li> + </ul> + + <p>Thanks for using Tomcat!</p> + + <p id="footer"><img src="tomcat-power.gif" width="77" height="80" alt="Powered by Tomcat"/><br/> + + + Copyright © 1999-2005 Apache Software Foundation<br/> + All Rights Reserved + </p> + </td> + + </tr> +</table> + +</body> +</html> Added: trunk/openuss/servers/tomcat/webapps/ROOT/tomcat-power.gif =================================================================== (Binary files differ) Property changes on: trunk/openuss/servers/tomcat/webapps/ROOT/tomcat-power.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/servers/tomcat/webapps/ROOT/tomcat.gif =================================================================== (Binary files differ) Property changes on: trunk/openuss/servers/tomcat/webapps/ROOT/tomcat.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/servers/tomcat/webapps/balancer/META-INF/context.xml =================================================================== --- trunk/openuss/servers/tomcat/webapps/balancer/META-INF/context.xml (rev 0) +++ trunk/openuss/servers/tomcat/webapps/balancer/META-INF/context.xml 2006-05-15 14:33:18 UTC (rev 10) @@ -0,0 +1,12 @@ +<!-- + + Context configuration file for the Tomcat Balancer Web App + This is only needed to keep the distribution small and avoid duplicating + commons libraries + + $Id: context.xml 303123 2004-08-26 17:03:35Z remm $ + +--> + + +<Context privileged="true" antiResourceLocking="false" antiJARLocking="false" /> Added: trunk/openuss/servers/tomcat/webapps/balancer/WEB-INF/config/rules.xml =================================================================== --- trunk/openuss/servers/tomcat/webapps/balancer/WEB-INF/config/rules.xml (rev 0) +++ trunk/openuss/servers/tomcat/webapps/balancer/WEB-INF/config/rules.xml 2006-05-15 14:33:18 UTC (rev 10) @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<rules> + <!-- If the URL contains News (case-sensitive), go to CNN.com --> + <rule className="org.apache.webapp.balancer.rules.URLStringMatchRule" + targetString="News" + redirectUrl="http://www.cnn.com" /> + + <!-- If the request contains a parameter named paramName whose value + is paramValue, go to Yahoo.com. --> + <rule className="org.apache.webapp.balancer.rules.RequestParameterRule" + paramName="paramName" + paramValue="paramValue" + redirectUrl="http://www.yahoo.com" /> + + <!-- Redirect all requests to jakarta.apache.org. --> + <rule className="org.apache.webapp.balancer.rules.AcceptEverythingRule" + redirectUrl="http://jakarta.apache.org" /> +</rules> Added: trunk/openuss/servers/tomcat/webapps/balancer/WEB-INF/lib/catalina-balancer.jar =================================================================== (Binary files differ) Property changes on: trunk/openuss/servers/tomcat/webapps/balancer/WEB-INF/lib/catalina-balancer.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/servers/tomcat/webapps/balancer/WEB-INF/web.xml =================================================================== --- trunk/openuss/servers/tomcat/webapps/balancer/WEB-INF/web.xml (rev 0) +++ trunk/openuss/servers/tomcat/webapps/balancer/WEB-INF/web.xml 2006-05-15 14:33:18 UTC (rev 10) @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<web-app xmlns="http://java.sun.com/xml/ns/j2ee" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" + version="2.4"> + + <display-name>Tomcat Simple Load Balancer Example App</display-name> + <description> + Tomcat Simple Load Balancer Example App + </description> + + <!-- BalancerFilter definition --> + <filter> + <filter-name>BalancerFilter</filter-name> + <filter-class>org.apache.webapp.balancer.BalancerFilter</filter-class> + <init-param> + <param-name>configUrl</param-name> + <param-value>/WEB-INF/config/rules.xml</param-value> + </init-param> + </filter> + + <!-- BalancerFilter mapping --> + <filter-mapping> + <filter-name>BalancerFilter</filter-name> + <url-pattern>/*</url-pattern> + </filter-mapping> +</web-app> \ 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: <id...@us...> - 2006-05-15 14:27:11
|
Revision: 9 Author: idueppe Date: 2006-05-15 07:26:59 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=9&view=rev Log Message: ----------- setup openuss 3.0 trunk Added Paths: ----------- trunk/openuss/servers/tomcat/webapps/webdav/ trunk/openuss/servers/tomcat/webapps/webdav/WEB-INF/ trunk/openuss/servers/tomcat/webapps/webdav/WEB-INF/web.xml trunk/openuss/servers/tomcat/webapps/webdav/index.html trunk/openuss/servers/tomcat/webapps/webdav/tomcat-power.gif trunk/openuss/servers/tomcat/webapps/webdav/tomcat.gif Added: trunk/openuss/servers/tomcat/webapps/webdav/WEB-INF/web.xml =================================================================== --- trunk/openuss/servers/tomcat/webapps/webdav/WEB-INF/web.xml (rev 0) +++ trunk/openuss/servers/tomcat/webapps/webdav/WEB-INF/web.xml 2006-05-15 14:26:59 UTC (rev 9) @@ -0,0 +1,91 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + Copyright 2004 The Apache Software Foundation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<web-app xmlns="http://java.sun.com/xml/ns/j2ee" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" + version="2.4"> + + <display-name>Webdav Content Management</display-name> + <description> + Webdav Content Management + </description> + + <servlet> + <servlet-name>webdav</servlet-name> + <servlet-class>org.apache.catalina.servlets.WebdavServlet</servlet-class> + <init-param> + <param-name>debug</param-name> + <param-value>0</param-value> + </init-param> + <init-param> + <param-name>listings</param-name> + <param-value>true</param-value> + </init-param> + <!-- Uncomment this to enable read and write access --> +<!-- + <init-param> + <param-name>readonly</param-name> + <param-value>false</param-value> + </init-param> +--> + <!--load-on-startup>1</load-on-startup--> + </servlet> + + <!-- The mapping for the webdav servlet --> + <!-- Using /* as the mapping ensures that jasper, welcome files etc are + over-ridden and all requests are processed by the webdav servlet. + This also overcomes a number of issues with some webdav clients + (including MS Webfolders) that do not respond correctly + to the + redirects (302) that result from using a mapping of / --> + <servlet-mapping> + <servlet-name>webdav</servlet-name> + <url-pattern>/*</url-pattern> + </servlet-mapping> + + <!-- ================ Security Constraints for Testing =============== --> + +<!-- + <security-constraint> + <web-resource-collection> + <web-resource-name>The Entire Web Application</web-resource-name> + <url-pattern>/*</url-pattern> + </web-resource-collection> + <auth-constraint> + <role-name>tomcat</role-name> + </auth-constraint> + </security-constraint> + + <login-config> + <auth-method>BASIC</auth-method> + <realm-name>Tomcat Supported Realm</realm-name> + </login-config> + + <security-role> + <description> + An example role defined in "conf/tomcat-users.xml" + </description> + <role-name>tomcat</role-name> + </security-role> +--> + + <welcome-file-list> + <welcome-file/> + </welcome-file-list> + +</web-app> Added: trunk/openuss/servers/tomcat/webapps/webdav/index.html =================================================================== --- trunk/openuss/servers/tomcat/webapps/webdav/index.html (rev 0) +++ trunk/openuss/servers/tomcat/webapps/webdav/index.html 2006-05-15 14:26:59 UTC (rev 9) @@ -0,0 +1,76 @@ +<!doctype html public "-//w3c//dtd html 4.0 transitional//en"> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> +<meta name="GENERATOR" content="Mozilla/4.72 [en] (WinNT; U) [Netscape]"> +<meta name="Author" content="Anil K. Vijendran"> +<title>Tomcat WebDAV support</title> +</head> +<body bgcolor="#FFFFFF"> +<img SRC="tomcat.gif" height=92 width=130 align=LEFT><b><font face="Arial, Helvetica, sans-serif"><font size=+3>Tomcat</font></font></b> +<br> +<b><font face="Arial, Helvetica, sans-serif"><font size=-1>WebDAV support</font></font></b> +<p>This is the home page for the webdav context. This page is located at: +<ul> +<li> +<font face="Courier New, Courier,mono">$TOMCAT_HOME/webapps/webdav/index.html</font></li> +</ul> + +<p>Tomcat includes built-in support for WebDAV level 2, which enables +remote authoring of the website. You can test these capabilities using a WebDAV +client like MS WebFolders (included with IE 4.0 and up), MS Office 2000, DAV +Explorer (others are listed on the webpages linked below), and point to the +<b>/webdav</b> path of the server. + +<p>This test context is DAV enabled, but has been set up in read-only mode for +safety reasons. It can be put in read-write mode by editing the web +application descriptor file (WEB-INF/web.xml). + +<p>To add remote authoring to your web application, you need to make the following +changes: +<ul> +<li>Add the webDAV servlet to your web application. See the web application +deployment descriptor for an example. Don't forget to make it read/write. +<li>Add a servlet mapping for the webDAV servlet with a url pattern of "/webdav/*" +to your web.xml. +<li>Add an appropriate security constraint to prevent unauthorised changes to your +web application. +<li>You can then edit your web application using a webDAV client using a url +like <font face="Courier New, Courier,mono">http://host:port/webapp/webdav</font></li> +</ul> + +<p>Working WebDAV clients include : +<ul> +<li>Adobe GoLive 5.0 (and other WebDAV-enabled Adobe products, like + Photoshop)</li> +<li>Cadaver 0.15</li> +<li>DAV Explorer 0.60 and 0.70</li> +<li>Internet Explorer 5 (Windows 2000)</li> +<li>Internet Explorer 5.5 (Windows 2000)</li> +<li>Jakarta Slide 1.0 WebDAV client library</li> +<li>Office 2000 (Windows 2000)</li> +<li>SkunkDAV 1.0</li> +<li>Xythos Drive</li> +</ul> + +<p>WebDAV links:</p> +<ul> +<li><b><a href="http://www.webdav.org">General info on WebDAV</a></b></li> +<li><b><a href="http://www.ics.uci.edu/pub/ietf/webdav/">WebDAV working +group</a></b></li> +<li><b><a href="http://www.webdav.org/projects/">WebDAV clients</a></b></li> +<li><b> +<a href="http://jakarta.apache.org/slide/">The Jakarta Slide Project</a> +</b></li> +</ul> + + +<hr> +<p align="right"><font size=-1><img src="tomcat-power.gif" width="77" height="80"></font><br> + +<font size=-1>Copyright © 1999-2001 Apache Software Foundation</font><br> +<font size=-1>All Rights Reserved</font> <br> + </p> +<p align="right"> </p> +</body> +</html> Added: trunk/openuss/servers/tomcat/webapps/webdav/tomcat-power.gif =================================================================== (Binary files differ) Property changes on: trunk/openuss/servers/tomcat/webapps/webdav/tomcat-power.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/servers/tomcat/webapps/webdav/tomcat.gif =================================================================== (Binary files differ) Property changes on: trunk/openuss/servers/tomcat/webapps/webdav/tomcat.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2006-05-15 14:26:56
|
Revision: 8 Author: idueppe Date: 2006-05-15 07:26:50 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=8&view=rev Log Message: ----------- setup openuss 3.0 trunk Added Paths: ----------- trunk/openuss/servers/ trunk/openuss/servers/tomcat/ trunk/openuss/servers/tomcat/webapps/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2006-05-15 14:14:08
|
Revision: 7 Author: idueppe Date: 2006-05-15 07:13:35 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=7&view=rev Log Message: ----------- setup openuss 3.0 trunk Added Paths: ----------- trunk/openuss/foundation/build.xml trunk/openuss/foundation/foundation-api/ trunk/openuss/foundation/foundation-api/.settings/ trunk/openuss/foundation/foundation-api/.settings/org.eclipse.jdt.core.prefs trunk/openuss/foundation/foundation-api/build.xml trunk/openuss/foundation/foundation-api/pom.xml trunk/openuss/foundation/foundation-core/.settings/ trunk/openuss/foundation/foundation-core/.settings/org.eclipse.jdt.core.prefs trunk/openuss/foundation/foundation-core/build.xml trunk/openuss/foundation/foundation-core/pom.xml trunk/openuss/foundation/foundation-core/src/ trunk/openuss/foundation/foundation-core/src/main/ trunk/openuss/foundation/foundation-core/src/main/java/ trunk/openuss/foundation/foundation-core/src/main/java/org/ trunk/openuss/foundation/foundation-core/src/main/java/org/openuss/ trunk/openuss/foundation/foundation-core/src/main/java/org/openuss/foundation/ trunk/openuss/foundation/foundation-core/src/main/java/org/openuss/foundation/lecture/ trunk/openuss/foundation/foundation-core/src/main/java/org/openuss/foundation/lecture/FacultyDaoImpl.java trunk/openuss/foundation/foundation-core/src/main/java/org/openuss/foundation/lecture/FacultyServiceImpl.java trunk/openuss/foundation/foundation-core/src/test/ trunk/openuss/foundation/foundation-core/src/test/java/ trunk/openuss/foundation/foundation-core/src/test/java/org/ trunk/openuss/foundation/foundation-core/src/test/java/org/openuss/ trunk/openuss/foundation/foundation-core/src/test/java/org/openuss/foundation/ trunk/openuss/foundation/foundation-core/src/test/java/org/openuss/foundation/lecture/ trunk/openuss/foundation/foundation-core/src/test/resources/ trunk/openuss/foundation/foundation-core/src/test/resources/log4j.properties trunk/openuss/foundation/foundation-model/ trunk/openuss/foundation/foundation-model/build.xml trunk/openuss/foundation/foundation-model/pom.xml trunk/openuss/foundation/foundation-model/src/ trunk/openuss/foundation/foundation-model/src/main/ trunk/openuss/foundation/foundation-model/src/main/config/ trunk/openuss/foundation/foundation-model/src/main/config/andromda.xml trunk/openuss/foundation/foundation-model/src/main/uml/ trunk/openuss/foundation/foundation-model/src/main/uml/foundation.xml.zip trunk/openuss/foundation/foundation-web/ trunk/openuss/foundation/foundation-web/build.xml trunk/openuss/foundation/foundation-web/pom.xml trunk/openuss/foundation/foundation-web/src/ trunk/openuss/foundation/foundation-web/src/main/ trunk/openuss/foundation/pom.xml Added: trunk/openuss/foundation/build.xml =================================================================== --- trunk/openuss/foundation/build.xml (rev 0) +++ trunk/openuss/foundation/build.xml 2006-05-15 14:13:35 UTC (rev 7) @@ -0,0 +1,24 @@ +<project name="openuss :: foundation :: build" default="install" basedir="."> + <target name="compile"> + <exec executable="mvn.bat"> + <arg line="compile"/> + </exec> + </target> + <target name="install"> + <exec executable="mvn.bat"> + <arg line="-e install"/> + </exec> + </target> + <target name="clean"> + <exec executable="mvn.bat"> + <arg line="clean"/> + </exec> + </target> + <target name="eclipse"> + <exec executable="mvn.bat"> + <arg line="eclipse:eclipse"/> + </exec> + </target> + + +</project> Added: trunk/openuss/foundation/foundation-api/.settings/org.eclipse.jdt.core.prefs =================================================================== --- trunk/openuss/foundation/foundation-api/.settings/org.eclipse.jdt.core.prefs (rev 0) +++ trunk/openuss/foundation/foundation-api/.settings/org.eclipse.jdt.core.prefs 2006-05-15 14:13:35 UTC (rev 7) @@ -0,0 +1,5 @@ +#Thu May 11 16:00:13 CEST 2006 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.source=1.5 +org.eclipse.jdt.core.compiler.compliance=1.5 Added: trunk/openuss/foundation/foundation-api/build.xml =================================================================== --- trunk/openuss/foundation/foundation-api/build.xml (rev 0) +++ trunk/openuss/foundation/foundation-api/build.xml 2006-05-15 14:13:35 UTC (rev 7) @@ -0,0 +1,17 @@ +<project name="openuss :: foundation :: api :: build" default="install" basedir="."> + <target name="compile"> + <exec executable="mvn.bat"> + <arg line="install"/> + </exec> + </target> + <target name="clean"> + <exec executable="mvn.bat"> + <arg line="clean"/> + </exec> + </target> + <target name="install"> + <exec executable="mvn.bat"> + <arg line="install"/> + </exec> + </target> +</project> \ No newline at end of file Added: trunk/openuss/foundation/foundation-api/pom.xml =================================================================== --- trunk/openuss/foundation/foundation-api/pom.xml (rev 0) +++ trunk/openuss/foundation/foundation-api/pom.xml 2006-05-15 14:13:35 UTC (rev 7) @@ -0,0 +1,26 @@ +<?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> + <parent> + <groupId>org.openuss.foundation</groupId> + <artifactId>openuss-foundation</artifactId> + <version>3.0-SNAPSHOT</version> + </parent> + <groupId>org.openuss.foundation</groupId> + <artifactId>foundation-api</artifactId> + <name>OpenUSS - Foundation - API</name> + <packaging>jar</packaging> + + <dependencies> + <dependency> + <groupId>commons-beanutils</groupId> + <artifactId>commons-beanutils</artifactId> + <version>1.7.0</version> + </dependency> + </dependencies> + +</project> Added: trunk/openuss/foundation/foundation-core/.settings/org.eclipse.jdt.core.prefs =================================================================== --- trunk/openuss/foundation/foundation-core/.settings/org.eclipse.jdt.core.prefs (rev 0) +++ trunk/openuss/foundation/foundation-core/.settings/org.eclipse.jdt.core.prefs 2006-05-15 14:13:35 UTC (rev 7) @@ -0,0 +1,5 @@ +#Thu May 11 16:00:15 CEST 2006 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.source=1.5 +org.eclipse.jdt.core.compiler.compliance=1.5 Added: trunk/openuss/foundation/foundation-core/build.xml =================================================================== --- trunk/openuss/foundation/foundation-core/build.xml (rev 0) +++ trunk/openuss/foundation/foundation-core/build.xml 2006-05-15 14:13:35 UTC (rev 7) @@ -0,0 +1,23 @@ +<project name="openuss :: foundation :: core :: build" default="install" basedir="."> + <target name="compile"> + <exec executable="mvn.bat"> + <arg line="install"/> + </exec> + </target> + <target name="clean"> + <exec executable="mvn.bat"> + <arg line="clean"/> + </exec> + </target> + <target name="install"> + <exec executable="mvn.bat"> + <arg line="install"/> + </exec> + </target> + <target name="eclipse"> + <exec executable="mvn.bat"> + <arg line="eclipse:eclipse"/> + </exec> + </target> + +</project> \ No newline at end of file Added: trunk/openuss/foundation/foundation-core/pom.xml =================================================================== --- trunk/openuss/foundation/foundation-core/pom.xml (rev 0) +++ trunk/openuss/foundation/foundation-core/pom.xml 2006-05-15 14:13:35 UTC (rev 7) @@ -0,0 +1,87 @@ +<?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> + <parent> + <groupId>org.openuss.foundation</groupId> + <artifactId>openuss-foundation</artifactId> + <version>3.0-SNAPSHOT</version> + </parent> + <groupId>org.openuss.foundation</groupId> + <artifactId>foundation-core</artifactId> + <name>OpenUSS - Foundation - CORE</name> + <packaging>jar</packaging> + + <dependencies> + <dependency> + <groupId>org.openuss.foundation</groupId> + <artifactId>foundation-api</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.hibernate</groupId> + <artifactId>hibernate</artifactId> + <version>3.1.2</version> + </dependency> + <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + <version>2.1</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring</artifactId> + <version>2.0-m1</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-hibernate3</artifactId> + <version>2.0-m1</version> + <exclusions> + <exclusion> + <groupId>ehcache</groupId> + <artifactId>ehcache</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-jdbc</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>dap</artifactId> + </exclusion> + <exclusion> + <groupId>org.hibernate</groupId> + <artifactId>hibernate-annotations</artifactId> + </exclusion> + <exclusion> + <groupId>javax.persistence</groupId> + <artifactId>ejb</artifactId> + </exclusion> + </exclusions> + </dependency> + + <dependency> + <groupId>jaybird</groupId> + <artifactId>jaybird-full</artifactId> + <scope>test</scope> + <version>2.0.1</version> + </dependency> + <dependency> + <groupId>opensymphony</groupId> + <artifactId>oscache</artifactId> + <scope>test</scope> + <version>2.1.1</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-mock</artifactId> + <scope>test</scope> + <version>2.0-m1</version> + </dependency> + + </dependencies> +</project> Added: trunk/openuss/foundation/foundation-core/src/main/java/org/openuss/foundation/lecture/FacultyDaoImpl.java =================================================================== --- trunk/openuss/foundation/foundation-core/src/main/java/org/openuss/foundation/lecture/FacultyDaoImpl.java (rev 0) +++ trunk/openuss/foundation/foundation-core/src/main/java/org/openuss/foundation/lecture/FacultyDaoImpl.java 2006-05-15 14:13:35 UTC (rev 7) @@ -0,0 +1,14 @@ +// license-header java merge-point +/** + * This is only generated once! It will never be overwritten. + * You can (and have to!) safely modify it by hand. + */ +package org.openuss.foundation.lecture; + +/** + * @see org.openuss.foundation.lecture.Faculty + */ +public class FacultyDaoImpl + extends org.openuss.foundation.lecture.FacultyDaoBase +{ +} \ No newline at end of file Added: trunk/openuss/foundation/foundation-core/src/main/java/org/openuss/foundation/lecture/FacultyServiceImpl.java =================================================================== --- trunk/openuss/foundation/foundation-core/src/main/java/org/openuss/foundation/lecture/FacultyServiceImpl.java (rev 0) +++ trunk/openuss/foundation/foundation-core/src/main/java/org/openuss/foundation/lecture/FacultyServiceImpl.java 2006-05-15 14:13:35 UTC (rev 7) @@ -0,0 +1,35 @@ +// license-header java merge-point +/** + * This is only generated once! It will never be overwritten. + * You can (and have to!) safely modify it by hand. + */ +package org.openuss.foundation.lecture; + +/** + * @see org.openuss.foundation.lecture.FacultyService + */ +public class FacultyServiceImpl + extends org.openuss.foundation.lecture.FacultyServiceBase +{ + + /** + * @see org.openuss.foundation.lecture.FacultyService#createFaculty(org.openuss.foundation.lecture.Faculty) + */ + protected void handleCreateFaculty(org.openuss.foundation.lecture.Faculty faculty) + throws java.lang.Exception + { + // @todo implement protected void handleCreateFaculty(org.openuss.foundation.lecture.Faculty faculty) + throw new java.lang.UnsupportedOperationException("org.openuss.foundation.lecture.FacultyService.handleCreateFaculty(org.openuss.foundation.lecture.Faculty faculty) Not implemented!"); + } + + /** + * @see org.openuss.foundation.lecture.FacultyService#getAllFaculties() + */ + protected java.util.List handleGetAllFaculties() + throws java.lang.Exception + { + // @todo implement protected java.util.List handleGetAllFaculties() + return null; + } + +} \ No newline at end of file Added: trunk/openuss/foundation/foundation-core/src/test/resources/log4j.properties =================================================================== --- trunk/openuss/foundation/foundation-core/src/test/resources/log4j.properties (rev 0) +++ trunk/openuss/foundation/foundation-core/src/test/resources/log4j.properties 2006-05-15 14:13:35 UTC (rev 7) @@ -0,0 +1,23 @@ +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%p %c - %m%n +#log4j.appender.stdout.layout.ConversionPattern=%d %p %c - %m%n +log4j.rootLogger=INFO, stdout +log4j.logger.org.springframework=INFO +log4j.logger.org.hibernate=INFO + +# Configure logging for testing: optionally with log file +# log4j.rootLogger=DEBUG, stdout +# log4j.rootLogger=WARN, stdout, logfile + +# log4j.appender.stdout=org.apache.log4j.ConsoleAppender +# log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +# log4j.appender.stdout.layout.ConversionPattern=%d %p [%c] - %m%n + +# log4j.appender.logfile=org.apache.log4j.FileAppender +# log4j.appender.logfile.File=target/spring.log +# log4j.appender.logfile.layout=org.apache.log4j.PatternLayout +# log4j.appender.logfile.layout.ConversionPattern=%d %p [%c] - %m%n + +# log4j.logger.org.springframework=DEBUG +# log4j.logger.org.hibernate=DEBUG \ No newline at end of file Added: trunk/openuss/foundation/foundation-model/build.xml =================================================================== --- trunk/openuss/foundation/foundation-model/build.xml (rev 0) +++ trunk/openuss/foundation/foundation-model/build.xml 2006-05-15 14:13:35 UTC (rev 7) @@ -0,0 +1,18 @@ +<project name="openuss :: foundation :: model :: build" default="compile" basedir="."> + <target name="compile"> + <exec executable="mvn.bat"> + <arg line="compile"/> + </exec> + </target> + <target name="andromda :: start-server"> + <exec executable="mvn.bat"> + <arg line="andromda:start-server"/> + </exec> + </target> + <target name="andromda :: stop-server"> + <exec executable="mvn.bat"> + <arg line="andromda:stop-server"/> + </exec> + </target> + +</project> \ No newline at end of file Added: trunk/openuss/foundation/foundation-model/pom.xml =================================================================== --- trunk/openuss/foundation/foundation-model/pom.xml (rev 0) +++ trunk/openuss/foundation/foundation-model/pom.xml 2006-05-15 14:13:35 UTC (rev 7) @@ -0,0 +1,107 @@ +<?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> + <parent> + <groupId>org.openuss.foundation</groupId> + <artifactId>openuss-foundation</artifactId> + <version>3.0-SNAPSHOT</version> + </parent> + <groupId>org.openuss.foundation</groupId> + <artifactId>foundation-model</artifactId> + <name>OpenUSS - Foundation - MODEL</name> + <packaging>pom</packaging> + + + <dependencies> + <dependency> + <groupId>org.andromda.profiles.uml14</groupId> + <artifactId>andromda-profile</artifactId> + <type>xml.zip</type> + </dependency> + <dependency> + <groupId>org.andromda.cartridges</groupId> + <artifactId>andromda-spring-cartridge</artifactId> + <exclusions> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.andromda.cartridges</groupId> + <artifactId>andromda-hibernate-cartridge</artifactId> + </dependency> + <dependency> + <groupId>org.andromda.cartridges</groupId> + <artifactId>andromda-jsf-cartridge</artifactId> + </dependency> + <dependency> + <groupId>org.andromda.cartridges</groupId> + <artifactId>andromda-java-cartridge</artifactId> + </dependency> + <dependency> + <groupId>org.andromda.translationlibraries</groupId> + <artifactId>andromda-ocl-validation-library</artifactId> + </dependency> + <dependency> + <groupId>org.andromda.translationlibraries</groupId> + <artifactId>andromda-ocl-query-library</artifactId> + </dependency> + </dependencies> + + <build> + <sourceDirectory> + ${project.basedir}/src/main/uml + </sourceDirectory> + <plugins> + <plugin> + <groupId>org.andromda.maven.plugins</groupId> + <artifactId>andromda-maven-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <configuration> + <configurationUri> + ${pom.basedir}/src/main/config/andromda.xml + </configurationUri> + </configuration> + </plugin> + </plugins> + </build> + + <properties> + <model.uri> + jar:file:${project.build.sourceDirectory}/foundation.xml.zip!/foundation.xml + </model.uri> + <filter></filter> + <validation>true</validation> + <conf.dir>${pom.basedir}/src/main/config</conf.dir> + <!-- cartridge output locations --> + <core.generated.dir> + ${pom.basedir}/../foundation-core/target/src + </core.generated.dir> + <core.manual.dir> + ${pom.basedir}/../foundation-core/src/main/java + </core.manual.dir> + <web.generated.dir> + ${pom.basedir}/../foundation-web/target/src + </web.generated.dir> + <web.manual.java.dir> + ${pom.basedir}/../foundation-web/src/main/java + </web.manual.java.dir> + <api.generated.dir> + ${pom.basedir}/../foundation-api/target/src + </api.generated.dir> + <web.application.name>openuss</web.application.name> + <web.generated.dir>${pom.basedir}/../foundation-web/target/src</web.generated.dir> + <web.manual.java.dir>${pom.basedir}/../foundation-web/src/main/java</web.manual.java.dir> + </properties> +</project> Added: trunk/openuss/foundation/foundation-model/src/main/config/andromda.xml =================================================================== --- trunk/openuss/foundation/foundation-model/src/main/config/andromda.xml (rev 0) +++ trunk/openuss/foundation/foundation-model/src/main/config/andromda.xml 2006-05-15 14:13:35 UTC (rev 7) @@ -0,0 +1,95 @@ +<andromda> + <properties> + <property name="modelValidation">${validation}</property> + <property name="cartridgeFilter">${filter}</property> + </properties> + + <server> + <host>localhost</host> + <port>4446</port> + </server> + + <repositories> + <repository name="netBeansMDR"> + <models> + <model> + <uri>${model.uri}</uri> + <moduleSearchLocations> + <location patterns="**/*.xml.zip, **/*.uml2">${settings.localRepository}/org/andromda/profiles</location> + </moduleSearchLocations> + </model> + </models> + </repository> + </repositories> + + <namespaces> + <namespace name="default"> + <properties> + <property name="languageMappingsUri">Java</property> + <property name="wrapperMappingsUri">JavaWrapper</property> + <property name="sqlMappingsUri">Firebird</property> + <property name="jdbcMappingsUri">JDBC</property> + <property name="maxSqlNameLength">30</property> + <property name="foreignKeySuffix">_FK</property> + <property name="hibernateVersion">3</property> + <property name="hibernateCacheProvider">org.hibernate.cache.OSCacheProvider</property> + <property name="hibernateQueryCacheFactory">org.hibernate.cache.StandardQueryCacheFactory</property> + </properties> + </namespace> + + <namespace name="spring"> + <properties> + <property name="dataSource">java:comp/env/jdbc/openuss</property> + <property name="username">sysdba</property> + <property name="password">masterkey</property> + <property name="driver">org.firebirdsql.jdbc.FBDriver</property> + <property name="connectionUrl">jdbc:firebirdsql:localhost:openuss-revo</property> + <property name="daos">${core.generated.dir}</property> + <property name="dao-impls">${core.manual.dir}</property> + <property name="spring-configuration">${core.generated.dir}</property> + <property name="services">${core.generated.dir}</property> + <property name="service-impls">${core.manual.dir}</property> + <property name="service-interfaces">${api.generated.dir}</property> + <property name="hibernateDialect">org.hibernate.dialect.FirebirdDialect</property> + <property name="hibernateHbm2DDLAuto">create</property> + <property name="hibernateShowSql">true</property> + <!-- Bugfixing of AndroMDA for properly support of Hibernate 3 --> + <property name="sessionFactory">org.springframework.orm.hibernate3.LocalSessionFactoryBean</property> + <property name="localTransactionManager">org.springframework.orm.hibernate3.HibernateTransactionManager</property> + <property name="transactionManager">org.springframework.orm.hibernate3.HibernateTransactionManager</property> + <property name="acegiServiceSecurity">true</property> + </properties> + </namespace> + + <namespace name="hibernate"> + <properties> + <property name="defaultHibernateGeneratorClass">sequence</property> + <property name="hibernateTypeMappingsUri">Hibernate</property> + <property name="entities">${api.generated.dir}</property> + <property name="entity-impls">${core.manual.dir}</property> + <property name="entity-mappings">${core.generated.dir}</property> + <property name="user-types">${core.generated.dir}</property> + </properties> + </namespace> + + <namespace name="jsf"> + <properties> + <property name="applicationName">openuss</property> + <property name="configuration">${web.generated.dir}</property> + <property name="controllers">${web.generated.dir}</property> + <property name="controller-impls">${web.manual.java.dir}</property> + <property name="managed-beans">${web.generated.dir}</property> + <property name="messages">${web.generated.dir}</property> + <property name="views">${web.generated.dir}</property> + <property name="forms">${web.generated.dir}</property> + <property name="enableFaceletsDevelopmentSupport">true</property> + </properties> + </namespace> + + <namespace name="java"> + <properties> + <property name="exceptions">${core.generated.dir}</property> + </properties> + </namespace> + </namespaces> +</andromda> Added: trunk/openuss/foundation/foundation-model/src/main/uml/foundation.xml.zip =================================================================== (Binary files differ) Property changes on: trunk/openuss/foundation/foundation-model/src/main/uml/foundation.xml.zip ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/foundation/foundation-web/build.xml =================================================================== --- trunk/openuss/foundation/foundation-web/build.xml (rev 0) +++ trunk/openuss/foundation/foundation-web/build.xml 2006-05-15 14:13:35 UTC (rev 7) @@ -0,0 +1,27 @@ +<project name="openuss :: foundation :: web :: build" default="install" basedir="."> + <target name="compile"> + <exec executable="mvn.bat"> + <arg line="compile"/> + </exec> + </target> + <target name="clean"> + <exec executable="mvn.bat"> + <arg line="clean"/> + </exec> + </target> + <target name="install"> + <exec executable="mvn.bat"> + <arg line="-e install"/> + </exec> + </target> + <target name="eclipse"> + <exec executable="mvn.bat"> + <arg line="eclipse:eclipse"/> + </exec> + </target> + <target name="tomcat start"> + <exec executable="mvn.bat"> + <arg line="-e cargo:start"/> + </exec> + </target> +</project> \ No newline at end of file Added: trunk/openuss/foundation/foundation-web/pom.xml =================================================================== --- trunk/openuss/foundation/foundation-web/pom.xml (rev 0) +++ trunk/openuss/foundation/foundation-web/pom.xml 2006-05-15 14:13:35 UTC (rev 7) @@ -0,0 +1,45 @@ +<?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> + <parent> + <groupId>org.openuss.foundation</groupId> + <artifactId>openuss-foundation</artifactId> + <version>3.0-SNAPSHOT</version> + </parent> + <groupId>org.openuss.foundation</groupId> + <artifactId>foundation-web</artifactId> + <name>OpenUSS - Foundation - WEB</name> + <packaging>war</packaging> + + <dependencies> + <dependency> + <groupId>org.ejosa</groupId> + <artifactId>piggybank-api</artifactId> + <version>1.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.ejosa</groupId> + <artifactId>piggybank-core</artifactId> + <version>1.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>myfaces</groupId> + <artifactId>myfaces-all</artifactId> + <version>[1.1.1,)</version> + </dependency> + <dependency> + <groupId>myfaces</groupId> + <artifactId>tomahawk</artifactId> + <version>[1.1.1,)</version> + </dependency> + <dependency> + <groupId>opensymphony</groupId> + <artifactId>oscache</artifactId> + <version>2.1.1</version> + </dependency> + </dependencies> + +</project> Added: trunk/openuss/foundation/pom.xml =================================================================== --- trunk/openuss/foundation/pom.xml (rev 0) +++ trunk/openuss/foundation/pom.xml 2006-05-15 14:13:35 UTC (rev 7) @@ -0,0 +1,50 @@ +<?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> + <parent> + <groupId>org.openuss</groupId> + <artifactId>openuss</artifactId> + <version>3.0-SNAPSHOT</version> + </parent> + <groupId>org.openuss.foundation</groupId> + <artifactId>openuss-foundation</artifactId> + <name>OpenUSS - Foundation</name> + <packaging>pom</packaging> + <url>http://openuss.sf.net</url> + + <organization> + <name>openuss</name> + <url>http://openuss.sourceforge.net</url> + </organization> + + <build> + <plugins> + <plugin> + <groupId>org.andromda.maven.plugins</groupId> + <artifactId>andromda-multi-source-plugin</artifactId> + </plugin> + </plugins> + <resources> + <resource> + <directory>target/src</directory> + <excludes> + <exclude>**/*.java</exclude> + </excludes> + </resource> + <resource> + <directory>src/main/resources</directory> + </resource> + </resources> + </build> + + <modules> + <module>foundation-model</module> + <module>foundation-api</module> + <module>foundation-core</module> + </modules> + +</project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2006-05-15 14:11:40
|
Revision: 6 Author: idueppe Date: 2006-05-15 07:11:33 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=6&view=rev Log Message: ----------- setup openuss 3.0 trunk Added Paths: ----------- trunk/openuss/foundation/ trunk/openuss/foundation/foundation-core/ trunk/openuss/foundation/foundation-core/.classpath trunk/openuss/foundation/foundation-core/.project Added: trunk/openuss/foundation/foundation-core/.classpath =================================================================== --- trunk/openuss/foundation/foundation-core/.classpath (rev 0) +++ trunk/openuss/foundation/foundation-core/.classpath 2006-05-15 14:11:33 UTC (rev 6) @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<classpath> + <classpathentry kind="src" path="src/main/java"/> + <classpathentry kind="src" path="src/test/java"/> + <classpathentry kind="src" path="target/src"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry sourcepath="M2_REPO/commons-lang/commons-lang/2.1/commons-lang-2.1-sources.jar" kind="var" path="M2_REPO/commons-lang/commons-lang/2.1/commons-lang-2.1.jar"/> + <classpathentry sourcepath="/M2_REPO/org/springframework/spring/2.0-m1/spring-2.0-m1-sources.jar" kind="var" path="M2_REPO/org/springframework/spring/2.0-m1/spring-2.0-m1.jar"/> + <classpathentry sourcepath="M2_REPO/junit/junit/3.8.2/junit-3.8.2-sources.jar" kind="var" path="M2_REPO/junit/junit/3.8.2/junit-3.8.2.jar"/> + <classpathentry sourcepath="M2_REPO/javax/transaction/jta/1.0.1B/jta-1.0.1B-sources.jar" kind="var" path="M2_REPO/javax/transaction/jta/1.0.1B/jta-1.0.1B.jar"/> + <classpathentry sourcepath="M2_REPO/org/springframework/spring-mock/2.0-m1/spring-mock-2.0-m1-sources.jar" kind="var" path="M2_REPO/org/springframework/spring-mock/2.0-m1/spring-mock-2.0-m1.jar"/> + <classpathentry sourcepath="M2_REPO/antlr/antlr/2.7.6rc1/antlr-2.7.6rc1-sources.jar" kind="var" path="M2_REPO/antlr/antlr/2.7.6rc1/antlr-2.7.6rc1.jar"/> + <classpathentry sourcepath="M2_REPO/ehcache/ehcache/1.1/ehcache-1.1-sources.jar" kind="var" path="M2_REPO/ehcache/ehcache/1.1/ehcache-1.1.jar"/> + <classpathentry kind="src" path="/foundation-api"/> + <classpathentry sourcepath="M2_REPO/opensymphony/oscache/2.1.1/oscache-2.1.1-sources.jar" kind="var" path="M2_REPO/opensymphony/oscache/2.1.1/oscache-2.1.1.jar"/> + <classpathentry sourcepath="M2_REPO/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4-sources.jar" kind="var" path="M2_REPO/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar"/> + <classpathentry sourcepath="M2_REPO/dom4j/dom4j/1.6.1/dom4j-1.6.1-sources.jar" kind="var" path="M2_REPO/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar"/> + <classpathentry sourcepath="M2_REPO/org/hibernate/hibernate/3.1.2/hibernate-3.1.2-sources.jar" kind="var" path="M2_REPO/org/hibernate/hibernate/3.1.2/hibernate-3.1.2.jar"/> + <classpathentry kind="var" path="M2_REPO/jaybird/jaybird-full/2.0.1/jaybird-full-2.0.1.jar"/> + <classpathentry sourcepath="M2_REPO/org/springframework/spring-hibernate3/2.0-m1/spring-hibernate3-2.0-m1-sources.jar" kind="var" path="M2_REPO/org/springframework/spring-hibernate3/2.0-m1/spring-hibernate3-2.0-m1.jar"/> + <classpathentry sourcepath="M2_REPO/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0-sources.jar" kind="var" path="M2_REPO/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar"/> + <classpathentry sourcepath="M2_REPO/cglib/cglib/2.1_3/cglib-2.1_3-sources.jar" kind="var" path="M2_REPO/cglib/cglib/2.1_3/cglib-2.1_3.jar"/> + <classpathentry sourcepath="M2_REPO/asm/asm/1.5.3/asm-1.5.3-sources.jar" kind="var" path="M2_REPO/asm/asm/1.5.3/asm-1.5.3.jar"/> + <classpathentry sourcepath="M2_REPO/commons-collections/commons-collections/2.1.1/commons-collections-2.1.1-sources.jar" kind="var" path="M2_REPO/commons-collections/commons-collections/2.1.1/commons-collections-2.1.1.jar"/> + <classpathentry kind="output" path="target/classes"/> +</classpath> Added: trunk/openuss/foundation/foundation-core/.project =================================================================== --- trunk/openuss/foundation/foundation-core/.project (rev 0) +++ trunk/openuss/foundation/foundation-core/.project 2006-05-15 14:11:33 UTC (rev 6) @@ -0,0 +1,16 @@ +<projectDescription> + <name>foundation-core</name> + <comment/> + <projects> + <project>foundation-api</project> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.jdt.core.javabuilder</name> + <arguments/> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.jdt.core.javanature</nature> + </natures> +</projectDescription> \ 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: <id...@us...> - 2006-05-15 13:16:17
|
Revision: 5 Author: idueppe Date: 2006-05-15 06:16:10 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=5&view=rev Log Message: ----------- setup openuss 3.0 subversion trunk Added Paths: ----------- trunk/openuss/build.xml Added: trunk/openuss/build.xml =================================================================== --- trunk/openuss/build.xml (rev 0) +++ trunk/openuss/build.xml 2006-05-15 13:16:10 UTC (rev 5) @@ -0,0 +1,33 @@ +<project name="openuss :: build" default="install" basedir="."> + <target name="compile"> + <exec executable="mvn.bat"> + <arg line="compile"/> + </exec> + </target> + <target name="install"> + <exec executable="mvn.bat"> + <arg line="-o install"/> + </exec> + </target> + <target name="clean"> + <exec executable="mvn.bat"> + <arg line="-o clean"/> + </exec> + </target> + <target name="site"> + <exec executable="mvn.bat"> + <arg line="site:site"/> + </exec> + </target> + <target name="eclipse"> + <exec executable="mvn.bat"> + <arg line="eclipse:eclipse"/> + </exec> + </target> + <target name="copy-profiles"> + <copy todir="D:/development/programs/MagicDraw UML/profiles" flatten="true" verbose="true"> + <fileset dir="D:/development/repository/maven-2.0/org/andromda/profiles/uml14" includes="**/*.xml.zip"/> + </copy> + </target> + +</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: <id...@us...> - 2006-05-15 13:14:44
|
Revision: 4 Author: idueppe Date: 2006-05-15 06:14:37 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=4&view=rev Log Message: ----------- setup openuss 3.0 subversion trunk Added Paths: ----------- trunk/openuss/pom.xml Added: trunk/openuss/pom.xml =================================================================== --- trunk/openuss/pom.xml (rev 0) +++ trunk/openuss/pom.xml 2006-05-15 13:14:37 UTC (rev 4) @@ -0,0 +1,324 @@ +<?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> + <groupId>org.openuss</groupId> + <artifactId>openuss</artifactId> + <version>3.0-SNAPSHOT</version> + <packaging>pom</packaging> + + <name>OpenUSS</name> + <url>http://openuss.sourceforge.net</url> + + <organization> + <name>OpenUSS</name> + <url>http://openuss.sourceforge.net</url> + </organization> + + + <developers> + <developer> + <id>idueppe</id> + <name>Ingo Dueppe</name> + <email>id...@us...</email> + <organization> + ERCIS - European Research Center for Information Systems + </organization> + <roles> + <role>Lead Developer</role> + <role>Project Admin</role> + </roles> + <timezone>2</timezone> + </developer> + </developers> + + <scm> + <connection>scm:svn:https://svn.sourceforge.net/svnroot/openuss/trunk/openuss</connection> + <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/openuss/trunk/openuss</developerConnection> + <url>http://svn.sourceforge.net/viewcvs.cgi/openuss/trunk/openuss/</url> + </scm> + + <modules> + <module>foundation</module> + </modules> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.andromda.profiles.uml14</groupId> + <artifactId>andromda-profile</artifactId> + <version>3.2-RC1-SNAPSHOT</version> + <type>xml.zip</type> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.andromda</groupId> + <artifactId>andromda-core</artifactId> + <version>3.2-RC1-SNAPSHOT</version> + <exclusions> + <exclusion> + <groupId>xml-apis</groupId> + <artifactId>xml-apis</artifactId> + </exclusion> + <exclusion> + <groupId>xerces</groupId> + <artifactId>xercesImpl</artifactId> + </exclusion> + <exclusion> + <groupId>xalan</groupId> + <artifactId>xalan</artifactId> + </exclusion> + <exclusion> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.andromda.translationlibraries</groupId> + <artifactId>andromda-ocl-translation-core</artifactId> + <version>3.2-RC1-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.andromda.translationlibraries</groupId> + <artifactId>andromda-ocl-validation-library</artifactId> + <version>3.2-RC1-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.andromda.cartridges</groupId> + <artifactId>andromda-spring-cartridge</artifactId> + <version>3.2-RC1-SNAPSHOT</version> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.andromda.cartridges</groupId> + <artifactId>andromda-hibernate-cartridge</artifactId> + <version>3.2-RC1-SNAPSHOT</version> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.andromda.cartridges</groupId> + <artifactId>andromda-jsf-cartridge</artifactId> + <version>3.2-RC1-SNAPSHOT</version> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.andromda.cartridges</groupId> + <artifactId>andromda-java-cartridge</artifactId> + <version>3.2-RC1-SNAPSHOT</version> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.andromda.translationlibraries</groupId> + <artifactId>andromda-ocl-query-library</artifactId> + <version>3.2-RC1-SNAPSHOT</version> + <scope>runtime</scope> + </dependency> + </dependencies> + </dependencyManagement> + + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.2</version> + </dependency> + </dependencies> + + <build> + <defaultGoal>install</defaultGoal> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.andromda.maven.plugins</groupId> + <artifactId> + andromda-multi-source-plugin + </artifactId> + <version>3.2-RC1-SNAPSHOT</version> + <executions> + <execution> + <goals> + <goal>add-source</goal> + </goals> + <configuration> + <sourceDirectories> + <directory>target/src</directory> + </sourceDirectories> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.andromda.maven.plugins</groupId> + <artifactId>andromda-maven-plugin</artifactId> + <version>3.2-RC1-SNAPSHOT</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>andromdapp-maven-plugin</artifactId> + <version>3.2-RC1-SNAPSHOT</version> + </plugin> + <plugin> + <inherited>true</inherited> + <groupId>org.codehaus.cargo</groupId> + <artifactId>cargo-maven2-plugin</artifactId> + <executions> + <execution> + <id>verify-deploy</id> + <phase>install</phase> + <goals> + <goal>deployer-deploy</goal> + </goals> + </execution> + <execution> + <id>clean-undeploy</id> + <phase>pre-clean</phase> + <goals> + <goal>deployer-undeploy</goal> + </goals> + </execution> + </executions> + + <configuration> + + <!-- Container Configuration --> + <container> + <containerId>tomcat5x</containerId> + <type>remote</type> + </container> + + <!-- Configuration to use with the container --> + <configuration> + <type>runtime</type> + <properties> + <cargo.tomcat.manager.url> + http://localhost:8080/manager + </cargo.tomcat.manager.url> + <cargo.remote.username> + manager + </cargo.remote.username> + <cargo.remote.password> + manager + </cargo.remote.password> + </properties> + </configuration> + + <!-- Deployer and Deployables configuration --> + <deployer> + <type>remote</type> + <deployables> + <deployable> + <groupId>${pom.groupId}</groupId> + <artifactId> + ${pom.artifactId} + </artifactId> + <type>war</type> + </deployable> + </deployables> + </deployer> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>tomcat-maven-plugin</artifactId> + <configuration> + <mode>both</mode> + </configuration> + <version>1.0-SNAPSHOT</version> + </plugin> + </plugins> + </pluginManagement> + <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> + </build> + + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-report-plugin</artifactId> + <configuration> + <showSuccess>false</showSuccess> + <outputDirectory> + ${project.build.directory}/surefire-reports + </outputDirectory> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <minmemory>128m</minmemory> + <maxmemory>512</maxmemory> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>jdepend-maven-plugin</artifactId> + <version>2.0-beta-1-SNAPSHOT</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + </plugin> + </plugins> + </reporting> + + <repositories> + <repository> + <id>andromda</id> + <name>AndroMDA Repository</name> + <url>http://team.andromda.org/maven2</url> + </repository> + <repository> + <id>ibiblio</id> + <name>ibiblio</name> + <url>http://repo1.ibilio.org/maven2</url> + </repository> + <repository> + <id>apache</id> + <name>apache</name> + <url>http://cvs.apache.org/repository</url> + </repository> + <repository> + <id>Maven Snapshots</id> + <url>http://snapshots.maven.codehaus.org/maven2/</url> + <snapshots> + <enabled>true</enabled> + </snapshots> + <releases> + <enabled>true</enabled> + </releases> + </repository> + </repositories> + <pluginRepositories> + <pluginRepository> + <id>andromda</id> + <name>AndroMDA Repository</name> + <url>http://team.andromda.org/maven2</url> + </pluginRepository> + <pluginRepository> + <id>Maven Snapshots</id> + <url>http://snapshots.maven.codehaus.org/maven2/</url> + <snapshots> + <enabled>true</enabled> + </snapshots> + <releases> + <enabled>true</enabled> + </releases> + </pluginRepository> + </pluginRepositories> + <prerequisites> + <maven>2.0.1</maven> + </prerequisites> + +</project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2006-05-15 12:49:55
|
Revision: 3 Author: idueppe Date: 2006-05-15 05:49:27 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=3&view=rev Log Message: ----------- setup openuss 3.0 subversion trunk Added Paths: ----------- trunk/openuss/tools/ trunk/openuss/tools/missing-dependencies/ trunk/openuss/tools/missing-dependencies/install-missing.xml trunk/openuss/tools/missing-dependencies/javax.transaction/ trunk/openuss/tools/missing-dependencies/javax.transaction/jta-1.0.1B.jar trunk/openuss/tools/missing-dependencies/jaybird/ trunk/openuss/tools/missing-dependencies/jaybird/jaybird-2.0.1.jar trunk/openuss/tools/missing-dependencies/jaybird/jaybird-2.0.1.rar trunk/openuss/tools/missing-dependencies/jaybird/jaybird-full-2.0.1.jar trunk/openuss/tools/missing-dependencies/jaybird/jaybird-pool-2.0.1.jar trunk/openuss/tools/missing-dependencies/readme.txt Added: trunk/openuss/tools/missing-dependencies/install-missing.xml =================================================================== --- trunk/openuss/tools/missing-dependencies/install-missing.xml (rev 0) +++ trunk/openuss/tools/missing-dependencies/install-missing.xml 2006-05-15 12:49:27 UTC (rev 3) @@ -0,0 +1,26 @@ +<project name="install-mising-files" default="install-all" basedir="."> + <target name="install-all"> + <antcall target="jaybird"/> + <antcall target="jta"/> + </target> + <target name="jaybird"> + <exec executable="mvn.bat"> + <arg value="install:install-file"/> + <arg value="-Dfile=./jaybird/jaybird-full-2.0.1.jar"/> + <arg value="-DgroupId=jaybird"/> + <arg value="-DartifactId=jaybird-full"/> + <arg value="-Dversion=2.0.1"/> + <arg value="-Dpackaging=jar"/> + </exec> + </target> + <target name="jta"> + <exec executable="mvn.bat"> + <arg value="install:install-file"/> + <arg value="-Dfile=./javax.transaction/jta-1.0.1B.jar"/> + <arg value="-DgroupId=javax.transaction"/> + <arg value="-DartifactId=jtal"/> + <arg value="-Dversion=1.0.1B"/> + <arg value="-Dpackaging=jar"/> + </exec> + </target> +</project> Added: trunk/openuss/tools/missing-dependencies/javax.transaction/jta-1.0.1B.jar =================================================================== (Binary files differ) Property changes on: trunk/openuss/tools/missing-dependencies/javax.transaction/jta-1.0.1B.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/tools/missing-dependencies/jaybird/jaybird-2.0.1.jar =================================================================== (Binary files differ) Property changes on: trunk/openuss/tools/missing-dependencies/jaybird/jaybird-2.0.1.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/tools/missing-dependencies/jaybird/jaybird-2.0.1.rar =================================================================== (Binary files differ) Property changes on: trunk/openuss/tools/missing-dependencies/jaybird/jaybird-2.0.1.rar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/tools/missing-dependencies/jaybird/jaybird-full-2.0.1.jar =================================================================== (Binary files differ) Property changes on: trunk/openuss/tools/missing-dependencies/jaybird/jaybird-full-2.0.1.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/tools/missing-dependencies/jaybird/jaybird-pool-2.0.1.jar =================================================================== (Binary files differ) Property changes on: trunk/openuss/tools/missing-dependencies/jaybird/jaybird-pool-2.0.1.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/tools/missing-dependencies/readme.txt =================================================================== --- trunk/openuss/tools/missing-dependencies/readme.txt (rev 0) +++ trunk/openuss/tools/missing-dependencies/readme.txt 2006-05-15 12:49:27 UTC (rev 3) @@ -0,0 +1,11 @@ +The libraries in this folder can't be find within public remote repositories. +There for this libraries have to be copied manualy to your local repository. + +----------------------------------------------------------------------------- +Jaybird +Jaybird 2.0.1 is not deployed to remote repositories + +Sun Microsystems - Java Transaction API +Due to license restrictions this jar is not deployed to public repositories. + +----------------------------------------------------------------------------- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2006-05-15 08:21:52
|
Revision: 2 Author: idueppe Date: 2006-05-15 01:21:43 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=2&view=rev Log Message: ----------- Initial import. Added Paths: ----------- trunk/openuss/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2006-05-15 08:21:42
|
Revision: 1 Author: idueppe Date: 2006-05-15 01:21:35 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=1&view=rev Log Message: ----------- Initial import. Added Paths: ----------- trunk/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |