Hi,
I paste the poms from chlid to parent project:
D:\Projects\EL4J\external\framework\tests\remoting\web\pom.xml:
---------------------------------------------------------------
<?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>
<!-- Version: $Revision: 640 $ -->
<!-- URL: $URL:
https://svn.sourceforge.net/svnroot/el4j/branches/el4j_1.1-alpha-m2/el4j
/framework/tests/remoting/web/pom.xml $ -->
<!-- Date: $Date: 2006-07-21 12:31:31 +0200 (Fr, 21 Jul 2006) $ -->
<!-- Author: $Author: swisswheel $ -->
<parent>
<groupId>ch.elca.el4j.tests</groupId>
<artifactId>el4j-framework-tests-remoting</artifactId>
<version>1.1.0-SNAPSHOT</version>
</parent>
<artifactId>module-remoting-tests-web</artifactId>
<version>${version.module-remoting-tests}</version>
<packaging>war</packaging>
<name>EL4J web module for remoting tests</name>
<description>
Test web module for remoting modules of the EL4J framework.
</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<!-- EL4J framework modules -->
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-remoting_caucho</artifactId>
<type>jar</type>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-remoting_soap</artifactId>
<type>jar</type>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-web</artifactId>
<type>jar</type>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-env</artifactId>
<type>jar</type>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
</dependencies>
</project>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
D:\Projects\EL4J\external\framework\tests\remoting\pom.xml:
---------------------------------------------------------------
<?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>
<!-- Version: $Revision: 640 $ -->
<!-- URL: $URL:
https://svn.sourceforge.net/svnroot/el4j/branches/el4j_1.1-alpha-m2/el4j
/framework/tests/remoting/pom.xml $ -->
<!-- Date: $Date: 2006-07-21 12:31:31 +0200 (Fr, 21 Jul 2006) $ -->
<!-- Author: $Author: swisswheel $ -->
<parent>
<groupId>ch.elca.el4j.tests</groupId>
<artifactId>el4j-framework-tests</artifactId>
<version>1.1.0-SNAPSHOT</version>
</parent>
<artifactId>el4j-framework-tests-remoting</artifactId>
<packaging>pom</packaging>
<name>EL4J module for remoting tests</name>
<description>
Test module for remoting modules of the EL4J framework.
</description>
<modules>
<module>web</module>
<module>functional-tests</module>
</modules>
<dependencyManagement>
<dependencies>
<!-- module-remoting-tests -->
<dependency>
<groupId>ch.elca.el4j.tests</groupId>
<artifactId>module-remoting-tests-web</artifactId>
<version>${version.module-remoting-tests}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>ch.elca.el4j.tests</groupId>
<artifactId>module-remoting-tests-web</artifactId>
<version>${version.module-remoting-tests}</version>
<type>war</type>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
D:\Projects\EL4J\external\framework\tests\pom.xml:
---------------------------------------------------------------
<?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>
<!-- Version: $Revision: 639 $ -->
<!-- URL: $URL:
https://svn.sourceforge.net/svnroot/el4j/branches/el4j_1.1-alpha-m2/el4j
/framework/tests/pom.xml $ -->
<!-- Date: $Date: 2006-07-21 09:51:10 +0200 (Fr, 21 Jul 2006) $ -->
<!-- Author: $Author: swisswheel $ -->
<parent>
<groupId>ch.elca.el4j</groupId>
<artifactId>el4j-framework</artifactId>
<version>1.1.0-SNAPSHOT</version>
</parent>
<groupId>ch.elca.el4j.tests</groupId>
<artifactId>el4j-framework-tests</artifactId>
<packaging>pom</packaging>
<name>EL4J framework tests</name>
<description>
Special tests for modules of the EL4J framework.
</description>
<modules>
<module>core</module>
<module>core_integration</module>
<module>remoting</module>
</modules>
<dependencyManagement>
<dependencies>
<!-- module-core-tests -->
<dependency>
<groupId>ch.elca.el4j.tests</groupId>
<artifactId>module-core-tests</artifactId>
<version>${version.module-core}</version>
</dependency>
<dependency>
<groupId>ch.elca.el4j.tests</groupId>
<artifactId>module-core-tests</artifactId>
<version>${version.module-core}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
D:\Projects\EL4J\external\framework\pom.xml:
---------------------------------------------------------------
<?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>
<!-- Version: $Revision: 548 $ -->
<!-- URL: $URL:
https://svn.sourceforge.net/svnroot/el4j/branches/el4j_1.1-alpha-m2/el4j
/framework/pom.xml $ -->
<!-- Date: $Date: 2006-06-30 16:39:11 +0200 (Fr, 30 Jun 2006) $ -->
<!-- Author: $Author: swisswheel $ -->
<parent>
<groupId>ch.elca.el4j</groupId>
<artifactId>el4j</artifactId>
<version>1.1.0-SNAPSHOT</version>
</parent>
<artifactId>el4j-framework</artifactId>
<packaging>pom</packaging>
<name>EL4J framework</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
</plugin>
<plugin>
<groupId>ch.elca.el4j.plugins</groupId>
<artifactId>maven-manifest-decorator-plugin</artifactId>
</plugin>
</plugins>
</build>
<modules>
<!-- <module>plugins</module>-->
<!-- <module>modules</module>-->
<!-- <module>demos</module>-->
</modules>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
</project>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
D:\Projects\EL4J\external\pom.xml:
---------------------------------------------------------------
<?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>
<!-- Version: $Revision: 637 $ -->
<!-- URL: $URL:
https://svn.sourceforge.net/svnroot/el4j/branches/el4j_1.1-alpha-m2/el4j
/pom.xml $ -->
<!-- Date: $Date: 2006-07-21 09:45:20 +0200 (Fr, 21 Jul 2006) $ -->
<!-- Author: $Author: swisswheel $ -->
<groupId>ch.elca.el4j</groupId>
<artifactId>el4j</artifactId>
<packaging>pom</packaging>
<name>EL4J</name>
<version>1.1.0-SNAPSHOT</version>
<description>
EL4J, the Extension Library for the J2EE, adds incremental
improvements
to the Spring Java framework (http://www.springframework.org/).
</description>
<issueManagement>
<system>Sourceforge</system>
<url>http://sourceforge.net/tracker/?group_id=147215&atid=779814</ur
l>
</issueManagement>
<inceptionYear>2005</inceptionYear>
<mailingLists>
<mailingList>
<name>Version control commits</name>
<subscribe>https://lists.sourceforge.net/lists/listinfo/el4j-commits</su
bscribe>
<unsubscribe>https://lists.sourceforge.net/lists/listinfo/el4j-commits</
unsubscribe>
<post>[EMAIL PROTECTED]</post>
<archive>http://sourceforge.net/mailarchive/forum.php?forum=el4j-commits
</archive>
</mailingList>
</mailingLists>
<developers>
<developer>
<id>poser55</id>
<name>Philipp Oser</name>
<email/>
<roles>
<role>Project leader</role>
<role>Java developer</role>
</roles>
<timezone>+1</timezone>
</developer>
<developer>
<id>swisswheel</id>
<name>Martin Zeltner</name>
<email/>
<roles>
<role>Java developer</role>
</roles>
<timezone>+1</timezone>
</developer>
<developer>
<id>mathey</id>
<name>Alex Mathey</name>
<roles>
<role>Java developer</role>
</roles>
<timezone>+1</timezone>
</developer>
<developer>
<id>elca-ams</id>
<name>Adrian Moos</name>
<email/>
<roles>
<role>Intern</role>
<role>Java developer</role>
</roles>
<timezone>+1</timezone>
</developer>
<developer>
<id>rashid_w</id>
<name>Rashid Waraich</name>
<email/>
<roles>
<role>Intern</role>
<role>Java developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<contributors/>
<licenses>
<license>
<name>GPL version 2.0</name>
<url>http://www.gnu.org/licenses/gpl.txt</url>
</license>
</licenses>
<scm>
<connection>
scm:svn:https://svn.sourceforge.net/svnroot/el4j/trunk/el4j/
</connection>
<developerConnection>
scm:svn:https://svn.sourceforge.net/svnroot/el4j/trunk/el4j/
</developerConnection>
<url>
http://svn.sourceforge.net/viewcvs.cgi/el4j/trunk/el4j/
</url>
</scm>
<organization>
<name>ELCA</name>
<url>http://www.elca.ch</url>
</organization>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
</resource>
<resource>
<directory>src/main/env</directory>
<filtering>true</filtering>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>false</filtering>
</testResource>
<testResource>
<directory>src/test/env</directory>
<filtering>true</filtering>
</testResource>
</testResources>
<pluginManagement>
<plugins>
<!--
Last time synchronized with the latest plugin
releases:
2006-06-06
See
http://news.gmane.org/gmane.comp.apache.maven.announce
-->
<!-- Building -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-help-plugin</artifactId>
<version>2.0.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>commons-attributes-maven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.2</version>
<configuration>
<testFailureIgnore>false</testFailureIgnore>
<forkMode>never</forkMode>
<includes>
<include>**/*Test.java</include>
</includes>
<excludes>
<exclude>**/Abstract*</exclude>
</excludes>
</configuration>
</plugin>
<!-- Packaging -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<id>default</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<archive>
<manifestSections>
<manifestSection>
<name>el4j-config</name>
<manifestEntries>
<Module>${el4j-config.module}</Module>
<Files>${el4j-config.files}</Files>
<Dependencies>${el4j-config.dependencies}</Dependencies>
</manifestEntries>
</manifestSection>
</manifestSections>
</archive>
</configuration>
</execution>
<execution>
<id>createTestJar</id>
<goals>
<goal>test-jar</goal>
</goals>
<configuration>
<archive>
<manifestSections>
<manifestSection>
<name>el4j-config</name>
<manifestEntries>
<Module>${el4j-config.testmodule}</Module>
<Files>${el4j-config.testfiles}</Files>
<Dependencies>${el4j-config.testdependencies}</Dependencies>
</manifestEntries>
</manifestSection>
</manifestSections>
</archive>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.0.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1-SNAPSHOT</version>
<configuration>
<warName>${jee-web.war.name}</warName>
<webappDirectory>${jee-web.war.location}</webappDirectory>
<archiveClasses>true</archiveClasses>
<classifier>war</classifier>
</configuration>
<executions>
<execution>
<id>default</id>
<phase>package</phase>
<goals>
<goal>exploded</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>0.3-SNAPSHOT</version>
<configuration>
<container>
<containerId>${jee-web.containerId}</containerId>
<!-- <home>${jee-web.home}</home>-->
<zipUrlInstaller>
<url>${jee-web.zipDownloadUrl}</url>
<installDir>${jee-web.installDir}</installDir>
</zipUrlInstaller>
</container>
<configuration>
<type>existing</type>
<home>${jee-web.home}</home>
</configuration>
<deployer>
<deployables>
<deployable>
<location>${jee-web.war.location}</location>
<properties>
<context>${jee-web.context}</context>
</properties>
</deployable>
</deployables>
</deployer>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-archetype-plugin</artifactId>
<version>1.0-alpha-4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.2-SNAPSHOT</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-4</version>
<configuration>
<tagBase>
https://svn.sourceforge.net/svnroot/el4j/tags/
</tagBase>
</configuration>
</plugin>
<!-- IDE -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.2</version>
<configuration>
<downloadSources>true</downloadSources>
</configuration>
<executions>
<execution>
<id>actualizeEclipseProjects</id>
<phase>install</phase>
<goals>
<goal>eclipse</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Site -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>2.0-beta-5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>etc/checkstyle_el4j_checks.xml</configLocation>
<enableRSS>false</enableRSS>
<enableRulesSummary>false</enableRulesSummary>
</configuration>
</plugin>
<!-- EL4J specific plugins -->
<plugin>
<groupId>ch.elca.el4j.plugins</groupId>
<artifactId>maven-repohelper-plugin</artifactId>
<version>${version.maven-repohelper-plugin}</version>
</plugin>
<plugin>
<groupId>ch.elca.el4j.plugins</groupId>
<artifactId>maven-manifest-decorator-plugin</artifactId>
<version>${version.maven-manifest-decorator-plugin}</version>
<executions>
<execution>
<!--
Due to bug that goals are not executed
in the
defined order in the same phase the goal
below
must be executed before the package
phase!
Please see:
http://jira.codehaus.org/browse/MNG-2258
-->
<phase>test</phase>
<goals>
<goal>manifest-prepare-config-section</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
<version>1.0-beta-1</version>
</extension>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>1.0-beta-1</version>
</extension>
</extensions>
</build>
<modules>
<module>framework</module>
<!--module>helloworld</module-->
</modules>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>fast</id>
<properties>
<maven.test.skip>true</maven.test.skip>
</properties>
</profile>
<profile>
<id>rmi.settings.default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<rmi.host>localhost</rmi.host>
<rmi.port>8099</rmi.port>
</properties>
</profile>
<profile>
<id>jee-web.settings.war.exploded</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<jee-web.host>localhost</jee-web.host>
<jee-web.port>8080</jee-web.port>
<jee-web.war.name>${project.build.finalName}</jee-web.war.name>
<jee-web.war.location>${project.build.directory}/exploded-wars/${jee-web
.war.name}</jee-web.war.location>
<jee-web.context>${project.artifactId}</jee-web.context>
</properties>
</profile>
<profile>
<id>jee-web.container.tomcat5x</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<jee-web.containerId>tomcat5x</jee-web.containerId>
<jee-web.zipDownloadUrl>${tomcat5x.zipDownloadUrl}</jee-web.zipDownloadU
rl>
<jee-web.installDir>${tomcat5x.basedir}</jee-web.installDir>
<jee-web.home>${tomcat5x.home}</jee-web.home>
</properties>
</profile>
</profiles>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>el4jModuleRepository</id>
<name>External repository of the EL4J project</name>
<url>http://el4.elca-services.ch/el4j/maven2repository</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>el4jPluginRepository</id>
<name>External repository of the EL4J project</name>
<url>http://el4.elca-services.ch/el4j/maven2repository</url>
</pluginRepository>
</pluginRepositories>
<dependencyManagement>
<dependencies>
<!-- **************************** -->
<!-- * EL4J framework modules *-->
<!-- **************************** -->
<!-- module-core -->
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-core</artifactId>
<version>${version.module-core}</version>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-core</artifactId>
<version>${version.module-core}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- module-daemon_manager -->
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-daemon_manager</artifactId>
<version>${version.module-daemon_manager}</version>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-daemon_manager</artifactId>
<version>${version.module-daemon_manager}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- module-env -->
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-env</artifactId>
<version>${version.module-env}</version>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-env</artifactId>
<version>${version.module-env}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- module-exception_handling -->
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-exception_handling</artifactId>
<version>${version.module-exception_handling}</version>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-exception_handling</artifactId>
<version>${version.module-exception_handling}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- module-hibernate -->
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-hibernate</artifactId>
<version>${version.module-hibernate}</version>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-hibernate</artifactId>
<version>${version.module-hibernate}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- module-ibatis -->
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-ibatis</artifactId>
<version>${version.module-ibatis}</version>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-ibatis</artifactId>
<version>${version.module-ibatis}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- module-jmx -->
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-jmx</artifactId>
<version>${version.module-jmx}</version>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-jmx</artifactId>
<version>${version.module-jmx}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- module-light_statistics -->
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-light_statistics</artifactId>
<version>${version.module-light_statistics}</version>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-light_statistics</artifactId>
<version>${version.module-light_statistics}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- module-remoting_core -->
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-remoting_core</artifactId>
<version>${version.module-remoting_core}</version>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-remoting_core</artifactId>
<version>${version.module-remoting_core}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- module-remoting_caucho -->
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-remoting_caucho</artifactId>
<version>${version.module-remoting_caucho}</version>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-remoting_caucho</artifactId>
<version>${version.module-remoting_caucho}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- module-remoting_soap -->
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-remoting_soap</artifactId>
<version>${version.module-remoting_soap}</version>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-remoting_soap</artifactId>
<version>${version.module-remoting_soap}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- module-remoting_ejb -->
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-remoting_ejb</artifactId>
<version>${version.module-remoting_ejb}</version>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-remoting_ejb</artifactId>
<version>${version.module-remoting_ejb}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- module-security -->
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-security</artifactId>
<version>${version.module-security}</version>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-security</artifactId>
<version>${version.module-security}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- module-spring_rcp -->
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-spring_rcp</artifactId>
<version>${version.module-spring_rcp}</version>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-spring_rcp</artifactId>
<version>${version.module-spring_rcp}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- module-web -->
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-web</artifactId>
<version>${version.module-web}</version>
</dependency>
<dependency>
<groupId>ch.elca.el4j</groupId>
<artifactId>module-web</artifactId>
<version>${version.module-web}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- **************************** -->
<!-- * Other dependencies *-->
<!-- **************************** -->
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>[3.8.2]</version>
<scope>test</scope>
</dependency>
<!-- Springframework -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
<version>[1.2.8]</version>
</dependency>
<!-- Apache Commons Projects -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-attributes-api</artifactId>
<version>[2.1]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-attributes-compiler</artifactId>
<version>[2.1]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-attributes-plugin</artifactId>
<version>[2.1]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-beanutils</artifactId>
<version>[1.7.0]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-codec</artifactId>
<version>[1.3]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections</artifactId>
<version>[3.2]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-configuration</artifactId>
<version>[1.2]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-daemon</artifactId>
<version>[1.0.1]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp</artifactId>
<version>[1.2.1]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-digester</artifactId>
<version>[1.7]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-discovery</artifactId>
<version>[0.2]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-email</artifactId>
<version>[1.0]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-fileupload</artifactId>
<version>[1.1.1]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-httpclient</artifactId>
<version>[3.0.1]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-io</artifactId>
<version>[1.2]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang</artifactId>
<version>[2.1]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-logging</artifactId>
<version>[1.1]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-logging-api</artifactId>
<version>[1.1]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-logging-adapters</artifactId>
<version>[1.1]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math</artifactId>
<version>[1.1]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-net</artifactId>
<version>[1.4.1]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool</artifactId>
<version>[1.3]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-primitives</artifactId>
<version>[1.0]</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-validator</artifactId>
<version>[1.3.0]</version>
</dependency>
<!-- Apache projects -->
<dependency>
<groupId>org.apache.oro</groupId>
<artifactId>jakarta-oro</artifactId>
<version>[2.0.8]</version>
</dependency>
<!-- SourceForge projects -->
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>[1.2]</version>
</dependency>
<!-- Servlet APIs -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>[2.4]</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
<distributionManagement>
<repository>
<id>ftpEl4ElcaServices</id>
<name>FTP server ELCA services for EL4 projects</name>
<url>ftp://el4.elca-services.ch/htdocs/el4j/maven2repository/</url>
</repository>
<site>
<id>pcmzeSite</id>
<name>Local website tryout location of MZE.</name>
<url>scp://pcmze/maven2site</url>
</site>
</distributionManagement>
<properties>
<!-- EL4J framework plugin version numbers -->
<version.maven-repohelper-plugin>
1.0-alpha1
</version.maven-repohelper-plugin>
<version.maven-manifest-decorator-plugin>
1.0-alpha1
</version.maven-manifest-decorator-plugin>
<!-- EL4J framework module version numbers -->
<version.module-core>
1.5-alpha1
</version.module-core>
<version.module-daemon_manager>
1.4-alpha1
</version.module-daemon_manager>
<version.module-env>
1.3-alpha1
</version.module-env>
<version.module-exception_handling>
1.1-alpha1
</version.module-exception_handling>
<version.module-hibernate>
1.2-alpha1
</version.module-hibernate>
<version.module-ibatis>
1.1-alpha1
</version.module-ibatis>
<version.module-jmx>
1.3-alpha1
</version.module-jmx>
<version.module-light_statistics>
1.1-alpha1
</version.module-light_statistics>
<version.module-remoting_core>
2.1-alpha1
</version.module-remoting_core>
<version.module-remoting_caucho>
2.1-alpha1
</version.module-remoting_caucho>
<version.module-remoting_soap>
2.1-alpha1
</version.module-remoting_soap>
<version.module-remoting_ejb>
2.1-alpha1
</version.module-remoting_ejb>
<version.module-security>
1.2-alpha1
</version.module-security>
<version.module-spring_rcp>
1.3-alpha1
</version.module-spring_rcp>
<version.module-web>
1.4-alpha1
</version.module-web>
<version.module-remoting-tests>
1.0-alpha1
</version.module-remoting-tests>
</properties>
</project>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Thanks for your help!
Cheers,
Martin
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]