with this patch it's possibe to build the jar with maven ... next step is to enable torque generation ... there are 2 ways to do this:

* using ant and build-torque.xml
* using the torque plugin

which way should we go??

martin

Index: project.xml
===================================================================
RCS file: /home/cvs/jakarta-jetspeed/project.xml,v
retrieving revision 1.10
diff -u -r1.10 project.xml
--- project.xml 3 Dec 2002 19:36:25 -0000 1.10
+++ project.xml 5 Jan 2003 15:57:49 -0000
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<project>
-
<pomVersion>3</pomVersion>
<name>jakarta-jetspeed</name>
<id>jetspeed</id>
@@ -10,7 +9,7 @@
<url>http://www.apache.org/</url>
</organization>
<inceptionYear>2000</inceptionYear>
- <package>org.apache.turbine</package>
+ <package>org.apache.jetspeed</package>

<!-- Gump integration. -->
<gumpRepositoryId>jakarta</gumpRepositoryId>
@@ -21,15 +20,15 @@

<description>
Jetspeed is an Open Source implementation of an Enterprise Information Portal, using Java and XML.
- A portal makes network resources (applications, databases and so forth) available to end-users. The
+ A portal makes network resources (applications, databases and so forth) available to end-users. The
user can access the portal via a web browser, WAP-phone, pager or any other device. Jetspeed acts as the central hub where information from multiple sources are made available in an easy to use manner.
The data presented via Jetspeed is independent of content type, This means that content from for example
- XML,RSS or SMTP can be integrated with Jetspeed. The actual presentation of the data is
- handled via ates XSL and delivered to the user for example via the combination of Java Server Pages (JSPs)
- and HTML. Jetspeed provides support for templating and content publication frameworks such as
- Cocoon, WebMacro and
+ XML,RSS or SMTP can be integrated with Jetspeed. The actual presentation of the data is
+ handled via ates XSL and delivered to the user for example via the combination of Java Server Pages (JSPs)
+ and HTML. Jetspeed provides support for templating and content publication frameworks such as
+ Cocoon, WebMacro and
Velocity. Note that outside of regualar browser Jetspeed also supports WAP devices.
- Jetspeed helps you build portal applications quickly. The goal is to make Jetspeed a tool for both portal developers as well
+ Jetspeed helps you build portal applications quickly. The goal is to make Jetspeed a tool for both portal developers as well
as user interface designers. Currently the focus is on providing developers with a set of tools that facilitates building
the base for the portal. With Jetspeed you can quickly build an XML
portal and also syndicate your own content.
@@ -41,7 +40,7 @@
<siteDirectory>/www/jakarta.apache.org/jetspeed/</siteDirectory>

<repository>
- <connection>scm:cvs:pserver:[EMAIL PROTECTED]:/home/cvspublic/jakarta-jetspeed</connection>
+ <connection>scm:cvs:pserver:[EMAIL PROTECTED]:/home/cvspublic:jakarta-jetspeed</connection>
<url>http://cvs.apache.org/viewcvs/jakarta-jetspeed/</url>
</repository>

@@ -151,93 +150,95 @@
<!-- Need to mark these as compile-time/run-time -->

<dependencies>
-
<dependency>
<id>castor</id>
<version>0.9.3</version>
</dependency>
-
<dependency>
<id>commons-collections</id>
- <version>1.0</version>
+ <version>2.0</version>
</dependency>
-
<dependency>
- <id>commons-lang</id>
+ <id>commons-configuration</id>
<version>1.0-dev</version>
</dependency>
-
+ <dependency>
+ <id>commons-lang</id>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <id>commons-logging</id>
+ <version>1.0.2</version>
+ </dependency>
<dependency>
<id>ecs</id>
<version>1.4.1</version>
</dependency>
-
+ <dependency>
+ <id>fulcrum</id>
+ <version>3.0-b2-dev</version>
+ </dependency>
<dependency>
<id>javamail</id>
<version>1.2</version>
</dependency>
-
<dependency>
<id>jaf</id>
<version>1.0.1</version>
<jar>activation-1.0.1.jar</jar>
</dependency>
-
<dependency>
<id>jdbc</id>
<version>2.0</version>
</dependency>
-
<dependency>
<id>log4j</id>
- <version>1.1.3</version>
+ <version>1.2.6</version>
+ </dependency>
+ <dependency>
+ <id>regexp</id>
+ <version>1.2</version>
</dependency>
-
<dependency>
<id>servletapi</id>
<version>2.2</version>
</dependency>
-
<dependency>
- <id>turbine</id>
- <version>2.2-b2-dev</version>
+ <id>soap</id>
+ <version>2.1</version>
</dependency>
-
<dependency>
- <id>fulcrum</id>
- <version>3.0-b2-dev</version>
+ <id>stratum</id>
+ <version>1.0-b4-dev</version>
</dependency>
-
<dependency>
- <id>stratum</id>
- <version>1.0-b2-dev</version>
+ <id>turbine</id>
+ <version>2.2</version>
+ </dependency>
+ <dependency>
+ <id>uddi4j</id>
+ <version>2.0</version>
</dependency>
-
<dependency>
<id>torque</id>
- <version>3.0-b2-dev</version>
+ <version>3.0</version>
</dependency>
-
<dependency>
<id>velocity</id>
- <version>1.3-dev</version>
+ <version>1.3</version>
</dependency>
-
<dependency>
- <id>obj</id>
+ <id>ojb</id>
<version>0.7.343</version>
</dependency>
-
<dependency>
<id>village</id>
- <version>1.5.3-dev.jar</version>
+ <version>1.5.3</version>
</dependency>
-
<dependency>
<id>xerces</id>
<version>1.4.4</version>
</dependency>
-
<dependency>
<id>xalan</id>
<version>2.1.0</version>
@@ -252,26 +253,21 @@
<id>commons-httpclient</id>
<version>1.0</version>
</dependency>
-
<dependency>
<id>cactus</id>
<version>1.2</version>
</dependency>
-
<dependency>
<id>cactus-ant</id>
<version>1.2</version>
</dependency>
-
<dependency>
<id>junit</id>
<version>3.7</version>
</dependency>
-
</dependencies>

<build>
-
<sourceDirectory>src/java</sourceDirectory>
<testSourceDirectory>src/java</testSourceDirectory>
<aspectSourceDirectory/>

The command completed successfully.


--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to