Ralph Goers wrote:
I too use maven and would be interested in knowing how you will be organizing this. I currently have all the Cocoon jars in a single cocoon group and all the jars have 2.1.3 in their names. Likewise, all the excalbur stuff is in one group as well.
Exactly. After running the script you can define Maven dependencies in your cocoon project as follows:
<dependency>
<groupId>cocoon</groupId>
<artifactId>cocoon</artifactId>
<version>2.1.2</version>
<type>jar</type>
</dependency> <dependency>
<groupId>cocoon</groupId>
<artifactId>cocoon-cron</artifactId>
<version>2.1.2</version>
<type>jar</type>
</dependency> <dependency>
<groupId>cocoon</groupId>
<artifactId>cocoon-mail</artifactId>
<version>2.1.2</version>
<type>jar</type>
</dependency>but also
<dependency>
<groupId>cocoon</groupId>
<artifactId>cocoon-war</artifactId>
<version>2.1.2</version>
<type>war</type>
</dependency>-- Giacomo Pati Otego AG, Switzerland - http://www.otego.com Orixo, the XML business alliance - http://www.orixo.com
