Title: [1007] trunk/core/pom.xml: Fix core pom
- Revision
- 1007
- Author
- gnt
- Date
- 2005-12-03 07:49:54 -0500 (Sat, 03 Dec 2005)
Log Message
Fix core pom
Modified Paths
Diff
Modified: trunk/core/pom.xml (1006 => 1007)
--- trunk/core/pom.xml 2005-12-03 06:20:26 UTC (rev 1006)
+++ trunk/core/pom.xml 2005-12-03 12:49:54 UTC (rev 1007)
@@ -4,14 +4,13 @@
<parent>
<groupId>servicemix</groupId>
<artifactId>servicemix</artifactId>
- <version>2.0-SNAPSHOT</version>
+ <version>2.1-SNAPSHOT</version>
</parent>
<artifactId>servicemix-core</artifactId>
<packaging>jar</packaging>
<name>ServiceMix Container</name>
-
<dependencies>
<dependency>
@@ -22,13 +21,21 @@
<dependency>
<groupId>activemq</groupId>
- <artifactId>activemq-core</artifactId>
+ <artifactId>activemq</artifactId>
</dependency>
+ <dependency>
+ <groupId>activemq</groupId>
+ <artifactId>activemq-ra</artifactId>
+ </dependency>
<dependency>
<groupId>concurrent</groupId>
<artifactId>concurrent</artifactId>
</dependency>
+ <dependency>
+ <groupId>backport-util-concurrent</groupId>
+ <artifactId>backport-util-concurrent</artifactId>
+ </dependency>
<dependency>
<groupId>commons-logging</groupId>
@@ -55,12 +62,14 @@
<groupId>geronimo-spec</groupId>
<artifactId>geronimo-spec-j2ee-connector</artifactId>
</dependency>
-
<dependency>
- <groupId>xbean</groupId>
+ <groupId>org.xbean</groupId>
+ <artifactId>xbean-server</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.xbean</groupId>
<artifactId>xbean-spring</artifactId>
</dependency>
-
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
@@ -99,11 +108,20 @@
<groupId>ant</groupId>
<artifactId>ant</artifactId>
</dependency>
-
<dependency>
<groupId>jencks</groupId>
<artifactId>jencks</artifactId>
</dependency>
+ <dependency>
+ <groupId>geronimo</groupId>
+ <artifactId>geronimo-connector</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>geronimo</groupId>
+ <artifactId>geronimo-transaction</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ </dependency>
<dependency>
<groupId>xstream</groupId>
<artifactId>xstream</artifactId>
@@ -121,10 +139,18 @@
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ </dependency>
+ <dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
</dependency>
<dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ </dependency>
+ <dependency>
<groupId>stax-utils</groupId>
<artifactId>stax-utils</artifactId>
</dependency>
@@ -135,15 +161,40 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
- <scope>test</scope>
</dependency>
<dependency>
+ <groupId>servicemix</groupId>
+ <artifactId>DdlUtils</artifactId>
+ <version>1.0-dev</version>
+ </dependency>
+ <dependency>
+ <groupId>xmlbeans</groupId>
+ <artifactId>xmlpublic</artifactId>
+ <version>2.0.0</version>
+ </dependency>
+ <dependency>
+ <groupId>xmlbeans</groupId>
+ <artifactId>xbean</artifactId>
+ <version>2.0.0</version>
+ </dependency>
+
+ <dependency>
<groupId>annogen</groupId>
<artifactId>annogen</artifactId>
+ <scope>compile</scope>
</dependency>
-
+ <dependency>
+ <groupId>hsqldb</groupId>
+ <artifactId>hsqldb</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>easymock</groupId>
+ <artifactId>easymock</artifactId>
+ <version>1.2_Java1.3</version>
+ <scope>test</scope>
+ </dependency>
-
</dependencies>
<build>
@@ -171,21 +222,17 @@
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
- <phase>generate-resources</phase>
+ <phase>process-classes</phase>
<configuration>
<tasks>
- <path id="test.classpath">
- <pathelement path="${maven.build.dest}" />
- <pathelement path="C:/java/jdk1.5.0_05/lib/tools.jar" />
- <pathelement path="target/classes" />
- <path refid="maven.dependency.classpath" />
- </path>
- <taskdef name="xsdGenerate" classname="org.xbean.spring.task.SchemaGenerateTask">
- <classpath refid="test.classpath" />
+ <taskdef classname="org.xbean.spring.generator.MappingGeneratorTask" name="mapping">
+ <classpath>
+ <pathelement path="${basedir}/target/classes"></pathelement>
+ <path refid="maven.dependency.classpath"></path>
+ </classpath>
</taskdef>
- <mkdir dir="target"/>
- <xsdGenerate destFile="target/servicemix.xsd" namespace="http://servicemix.org/config/1.0"
- classpathref="test.classpath" srcdir="src/main/java" metaInfDir="target/generated/"/>
+ <mapping destFile="target/servicemix.xsd" namespace="http://servicemix.org/config/1.0"
+ srcdir="src/main/java" metaInfDir="target/generated/"/>
</tasks>
</configuration>
<goals>