vmassol 01/03/27 09:24:13
Modified: j2eeunit/conf manifest manifest-ant
j2eeunit/conf/sample/build build.xml
j2eeunit/conf/sample/build/servlet22 build-tests.xml
j2eeunit/conf/sample/build/servlet23 build-tests.xml
j2eeunit/conf/sample/conf manifest
j2eeunit/conf/sample/conf/test web.xml
Log:
changed license from GPL to APL + changed copyrights from Vincent Massol to Apache
Software Foundation + changed packages from j2eeunit.* to org.apache.commons.j2eeunit.*
Revision Changes Path
1.2 +2 -2 jakarta-commons-sandbox/j2eeunit/conf/manifest
Index: manifest
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/j2eeunit/conf/manifest,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- manifest 2001/03/26 19:40:30 1.1
+++ manifest 2001/03/27 17:23:52 1.2
@@ -3,8 +3,8 @@
Name: j2eeunit/
Specification-Title: J2EEUnit
-Specification-Vendor: Vincent Massol
-Implementation-Vendor: Vincent Massol
+Specification-Vendor: Apache Software Foundation
+Implementation-Vendor: Apache Software Foundation
Specification-Version: @version@
Implementation-Version: @version@
Implementation-Title: j2eeunit
1.2 +2 -2 jakarta-commons-sandbox/j2eeunit/conf/manifest-ant
Index: manifest-ant
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/j2eeunit/conf/manifest-ant,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- manifest-ant 2001/03/26 19:40:30 1.1
+++ manifest-ant 2001/03/27 17:23:53 1.2
@@ -3,8 +3,8 @@
Name: j2eeunit/ant/
Specification-Title: Custom J2EEUnit tasks for Ant
-Specification-Vendor: Vincent Massol
-Implementation-Vendor: Vincent Massol
+Specification-Vendor: Apache Software Foundation
+Implementation-Vendor: Apache Software Foundation
Specification-Version: @version@
Implementation-Version: @version@
Implementation-Title: j2eeunit-ant
1.2 +12 -12 jakarta-commons-sandbox/j2eeunit/conf/sample/build/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/j2eeunit/conf/sample/build/build.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- build.xml 2001/03/26 19:40:31 1.1
+++ build.xml 2001/03/27 17:23:58 1.2
@@ -147,7 +147,7 @@
<include name="**/*.properties"/>
<!-- Other misc files -->
- <include name="**/license.gpl"/>
+ <include name="**/license.apl"/>
</patternset>
@@ -175,7 +175,7 @@
<filter token="year" value="${year}"/>
<!-- Initialize custom Ant task needed for running the server tests -->
- <taskdef name="runservertests" classname="j2eeunit.ant.RunServerTestsTask">
+ <taskdef name="runservertests"
classname="org.apache.commons.j2eeunit.ant.RunServerTestsTask">
<classpath>
<pathelement location="${j2eeunit.ant.jar}"/>
<pathelement path="${java.class.path}"/>
@@ -340,7 +340,7 @@
<javadoc
sourcepath="${out.src.dir}"
- packagenames="j2eeunit.sample.*"
+ packagenames="org.apache.commons.j2eeunit.sample.*"
destdir="${out.javadoc.dir}"
author="true"
public="true"
@@ -348,7 +348,7 @@
use="true"
windowtitle="${project.fullname} ${project.version} for Servlet
@servlet.api@ API"
doctitle="${project.fullname} ${project.version} for Servlet
@servlet.api@ API"
- bottom="Copyright &copy; ${year} Vincent Massol.">
+ bottom="Copyright &copy; ${year} Apache Software Foundation. All
Rights Reserved.">
<classpath>
<pathelement path="${java.class.path}"/>
@@ -428,16 +428,16 @@
<formatter type="plain" usefile="false"/>
<!-- Functional tests -->
- <test name="j2eeunit.sample.TestSampleServlet"/>
- <test name="j2eeunit.sample.TestSampleServletConfig"/>
+ <test name="org.apache.commons.j2eeunit.sample.TestSampleServlet"/>
+ <test
name="org.apache.commons.j2eeunit.sample.TestSampleServletConfig"/>
<!-- J2EEUnit unit tests requiring servlet engine -->
- <test name="j2eeunit.sample.unit.TestServletTestCase1"/>
- <test name="j2eeunit.sample.unit.TestServletTestCase2"/>
- <test name="j2eeunit.sample.unit.TestServletTestCase3"/>
- <test name="j2eeunit.sample.unit.TestServletTestCase4"/>
- <test name="j2eeunit.sample.unit.TestServletTestCaseSpecific"/>
- <test name="j2eeunit.sample.unit.TestJspTestCase"/>
+ <test
name="org.apache.commons.j2eeunit.sample.unit.TestServletTestCase1"/>
+ <test
name="org.apache.commons.j2eeunit.sample.unit.TestServletTestCase2"/>
+ <test
name="org.apache.commons.j2eeunit.sample.unit.TestServletTestCase3"/>
+ <test
name="org.apache.commons.j2eeunit.sample.unit.TestServletTestCase4"/>
+ <test
name="org.apache.commons.j2eeunit.sample.unit.TestServletTestCaseSpecific"/>
+ <test name="org.apache.commons.j2eeunit.sample.unit.TestJspTestCase"/>
</junit>
1.2 +2 -2
jakarta-commons-sandbox/j2eeunit/conf/sample/build/servlet22/build-tests.xml
Index: build-tests.xml
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/j2eeunit/conf/sample/build/servlet22/build-tests.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- build-tests.xml 2001/03/26 19:40:32 1.1
+++ build-tests.xml 2001/03/27 17:24:02 1.2
@@ -62,7 +62,7 @@
-->
<target name="start_resin_12">
- <java classname="j2eeunit.ant.ResinRun" fork="yes">
+ <java classname="org.apache.commons.j2eeunit.ant.ResinRun" fork="yes">
<arg value="-start"/>
@@ -91,7 +91,7 @@
-->
<target name="stop_resin_12">
- <java classname="j2eeunit.ant.ResinRun" fork="yes">
+ <java classname="org.apache.commons.j2eeunit.ant.ResinRun" fork="yes">
<arg value="-stop"/>
1.2 +2 -2
jakarta-commons-sandbox/j2eeunit/conf/sample/build/servlet23/build-tests.xml
Index: build-tests.xml
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/j2eeunit/conf/sample/build/servlet23/build-tests.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- build-tests.xml 2001/03/26 19:40:33 1.1
+++ build-tests.xml 2001/03/27 17:24:05 1.2
@@ -59,7 +59,7 @@
-->
<target name="start_resin_13">
- <java classname="j2eeunit.ant.ResinRun" fork="yes">
+ <java classname="org.apache.commons.j2eeunit.ant.ResinRun" fork="yes">
<arg value="-start"/>
@@ -88,7 +88,7 @@
-->
<target name="stop_resin_13">
- <java classname="j2eeunit.ant.ResinRun" fork="yes">
+ <java classname="org.apache.commons.j2eeunit.ant.ResinRun" fork="yes">
<arg value="-stop"/>
1.2 +2 -2 jakarta-commons-sandbox/j2eeunit/conf/sample/conf/manifest
Index: manifest
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/j2eeunit/conf/sample/conf/manifest,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- manifest 2001/03/26 19:40:34 1.1
+++ manifest 2001/03/27 17:24:07 1.2
@@ -3,8 +3,8 @@
Name: j2eeunit/sample
Specification-Title: J2EEUnit Sample
-Specification-Vendor: Vincent Massol
-Implementation-Vendor: Vincent Massol
+Specification-Vendor: Apache Software Foundation
+Implementation-Vendor: Apache Software Foundation
Specification-Version: @version@
Implementation-Version: @version@
Implementation-Title: j2eeunit-sample
1.2 +1 -1 jakarta-commons-sandbox/j2eeunit/conf/sample/conf/test/web.xml
Index: web.xml
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/j2eeunit/conf/sample/conf/test/web.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- web.xml 2001/03/26 19:40:35 1.1
+++ web.xml 2001/03/27 17:24:10 1.2
@@ -8,7 +8,7 @@
<servlet>
<servlet-name>ServletRedirector</servlet-name>
- <servlet-class>j2eeunit.server.ServletTestRedirector</servlet-class>
+
<servlet-class>org.apache.commons.j2eeunit.server.ServletTestRedirector</servlet-class>
<init-param>
<param-name>param1</param-name>
<param-value>value1 used for testing</param-value>