CVS: ivory project.xml,1.3,1.4
[email protected] Sun, 4 May 2003 15:25:58 -0500
| Newsgroups | gmane.comp.java.plexus.devel |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/plexus/ivory
In directory eng.werken.com:/tmp/cvs-serv24814
Modified Files:
project.xml
Log Message:
- Documentation corrections
- move the servlets to the plexus package.
- IvoryTestCase which should make testing services a little easier.
See the unit tests if you're interested. More testing utilities coming
soon!
- You do not need to call AxisServer.start() as it turns out, the
AxisServer constructor already does that.
- AxisService will not expose methods that return a List or take it
as a parameter. Axis does not know how to hanlde this yet.
Index: project.xml
===================================================================
RCS file: /cvsroot/plexus/ivory/project.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- project.xml 2 May 2003 15:17:21 -0000 1.3
+++ project.xml 4 May 2003 20:25:56 -0000 1.4
@@ -2,7 +2,7 @@
<project>
<id>ivory</id>
<name>Ivory</name>
- <currentVersion>1.0-alpha-1</currentVersion>
+ <currentVersion>1.0-alpha-2</currentVersion>
<shortDescription>A component which allows easy deployment of SOAP servics.</shortDescription>
<package>org.codehaus.ivory</package>
<organization>
@@ -56,6 +56,11 @@
</dependency>
<dependency>
+ <id>bcel</id>
+ <version>5.0</version>
+ </dependency>
+
+ <dependency>
<id>xml-axis</id>
<version>1.1-RC2</version>
<url>http://ws.apache.org/axis/</url>
@@ -115,30 +120,18 @@
<id>classworlds</id>
<version>1.0-beta-5</version>
</dependency>
-
- <dependency>
- <id>log4j</id>
- <version>1.2.6</version>
- </dependency>
-
- <!--
- |
- | Required for the componentmanifest generation.
- |
- -->
-
+
<dependency>
- <groupId>velocity</groupId>
- <artifactId>velocity</artifactId>
- <version>1.4-dev</version>
+ <id>junit</id>
+ <version>3.8.1</version>
</dependency>
<dependency>
- <groupId>commons-jelly</groupId>
- <artifactId>commons-jelly-tags-velocity</artifactId>
- <version>20030211.144921</version>
+ <groupId>xpp3</groupId>
+ <artifactId>xpp3</artifactId>
+ <version>1.1.2a</version>
</dependency>
-
+
</dependencies>
@@ -166,7 +159,22 @@
</resources>
</unitTest>
- <resources/>
+ <resources>
+ <resource>
+ <directory>${basedir}/src/conf</directory>
+ <targetPath>org/codehaus/ivory/axis</targetPath>
+ <includes>
+ <include>**/*.wsdd</include>
+ </includes>
+ </resource>
+ <resource>
+ <directory>${basedir}/src/conf</directory>
+ <targetPath>org/codehaus/ivory/axis/plexus</targetPath>
+ <includes>
+ <include>**/web.xml</include>
+ </includes>
+ </resource>
+ </resources>
</build>
</project>