Title: [1001] trunk/jbi/pom.xml: POM.xml for building in maven 2.
- Revision
- 1001
- Author
- foconer
- Date
- 2005-12-03 01:08:08 -0500 (Sat, 03 Dec 2005)
Log Message
POM.xml for building in maven 2. Goal "install" should work but we temporarily recommend to skip running the test cases.
Modified Paths
Diff
Modified: trunk/jbi/pom.xml (1000 => 1001)
--- trunk/jbi/pom.xml 2005-12-03 06:06:10 UTC (rev 1000)
+++ trunk/jbi/pom.xml 2005-12-03 06:08:08 UTC (rev 1001)
@@ -1,23 +1,31 @@
-<model xsi:defaultSchemaLocation="http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns="http://maven.apache.org/POM/4.0.0">
+
<parent>
<groupId>servicemix</groupId>
<artifactId>servicemix</artifactId>
- <version>2.0-SNAPSHOT</version>
+ <version>2.1-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
</parent>
-
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>servicemix</groupId>
<artifactId>servicemix-jbi</artifactId>
<packaging>jar</packaging>
- <name>ServiceMix JBI Specification</name>
-
-
- <dependencies>
-
- <dependency>
- <groupId>geronimo-spec</groupId>
- <artifactId>geronimo-spec-activation</artifactId>
- </dependency>
- </dependencies>
-
-</model>
+ <name>ServiceMix :: JBI</name>
+ <dependencies>
+ <dependency>
+ <groupId>servicemix</groupId>
+ <artifactId>jaxp</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>geronimo-spec</groupId>
+ <artifactId>geronimo-spec-activation</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>mx4j</groupId>
+ <artifactId>mx4j</artifactId>
+ </dependency>
+ </dependencies>
+</project>