riftsaw SVN: r412 - branches/ODE/ODE-2.0-maven/bpel-compiler.
by riftsaw-commits@lists.jboss.org
Author: danieldominguez
Date: 2009-12-17 11:14:09 -0500 (Thu, 17 Dec 2009)
New Revision: 412
Modified:
branches/ODE/ODE-2.0-maven/bpel-compiler/pom.xml
Log:
Copy bpel-scripts for tests
Modified: branches/ODE/ODE-2.0-maven/bpel-compiler/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/bpel-compiler/pom.xml 2009-12-17 15:22:31 UTC (rev 411)
+++ branches/ODE/ODE-2.0-maven/bpel-compiler/pom.xml 2009-12-17 16:14:09 UTC (rev 412)
@@ -47,10 +47,6 @@
<artifactId>ode-bpel-schemas</artifactId>
</dependency>
<dependency>
- <groupId>org.apache.ode</groupId>
- <artifactId>ode-bpel-scripts</artifactId>
- </dependency>
- <dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</dependency>
@@ -117,4 +113,30 @@
</dependency>
</dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-bpel-scripts-for-tests</id>
+ <phase>process-test-resources</phase>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-scripts</artifactId>
+ <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
</project>
15 years
riftsaw SVN: r411 - in branches/ODE/ODE-2.0-maven: bpel-compiler and 1 other directory.
by riftsaw-commits@lists.jboss.org
Author: jeff.yuchang
Date: 2009-12-17 10:22:31 -0500 (Thu, 17 Dec 2009)
New Revision: 411
Added:
branches/ODE/ODE-2.0-maven/bpel-compiler/pom.xml
Modified:
branches/ODE/ODE-2.0-maven/pom.xml
Log:
* add pom for bpel-compiler, noted that test case running failed atm.
Added: branches/ODE/ODE-2.0-maven/bpel-compiler/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/bpel-compiler/pom.xml (rev 0)
+++ branches/ODE/ODE-2.0-maven/bpel-compiler/pom.xml 2009-12-17 15:22:31 UTC (rev 411)
@@ -0,0 +1,120 @@
+<?xml version="1.0"?>
+<!--
+ ~ Licensed to the Apache Software Foundation (ASF) under one
+ ~ or more contributor license agreements. See the NOTICE file
+ ~ distributed with this work for additional information
+ ~ regarding copyright ownership. The ASF licenses this file
+ ~ to you under the Apache License, Version 2.0 (the
+ ~ "License"); you may not use this file except in compliance
+ ~ with the License. You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing,
+ ~ software distributed under the License is distributed on an
+ ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ ~ KIND, either express or implied. See the License for the
+ ~ specific language governing permissions and limitations
+ ~ under the License.
+ -->
+
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-compiler</artifactId>
+ <name>ODE :: BPEL Compiler</name>
+ <parent>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ </parent>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-utils</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-runtimes</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-schemas</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-scripts</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>jaxen</groupId>
+ <artifactId>jaxen</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-jta_1.1_spec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-stax-api_1.0_spec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.persistence</groupId>
+ <artifactId>persistence-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>wsdl4j</groupId>
+ <artifactId>wsdl4j</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.xmlbeans</groupId>
+ <artifactId>xmlbeans</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>net.sf.saxon</groupId>
+ <artifactId>saxon</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>net.sf.saxon</groupId>
+ <artifactId>saxon-xpath</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>net.sf.saxon</groupId>
+ <artifactId>saxon-dom</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>net.sf.saxon</groupId>
+ <artifactId>saxon-xqj</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>xalan</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+</project>
Modified: branches/ODE/ODE-2.0-maven/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/pom.xml 2009-12-17 14:34:46 UTC (rev 410)
+++ branches/ODE/ODE-2.0-maven/pom.xml 2009-12-17 15:22:31 UTC (rev 411)
@@ -79,7 +79,6 @@
<geronimo.stax-api.version>1.0.1</geronimo.stax-api.version>
<geronimo.transaction.version>2.0.1</geronimo.transaction.version>
<geronimo.kernel.version>2.0.1</geronimo.kernel.version>
- <jaxen.version>1.1-beta-8</jaxen.version>
<jetty.version>6.1.12rc1</jetty.version>
<jencks.version>2.1</jencks.version>
<jasper.version>4.2.20RC0</jasper.version>
@@ -97,6 +96,7 @@
<junit.version>4.3.1</junit.version>
<hsqldb.version>1.8.0.7</hsqldb.version>
<persistence-api.version>1.0</persistence-api.version>
+ <xalan.version>2.7.0-2</xalan.version>
</properties>
@@ -111,6 +111,9 @@
<module>bpel-dao</module>
<module>jca-ra</module>
<module>jca-server</module>
+ <module>scheduler-simple</module>
+ <module>runtimes</module>
+ <module>bpel-compiler</module>
</modules>
<build>
@@ -261,7 +264,7 @@
<dependencies>
<dependency>
<groupId>org.apache.ode</groupId>
- <artifactId>ode-bpel-runtime</artifactId>
+ <artifactId>ode-runtimes</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
@@ -426,7 +429,11 @@
<version>${project.version}</version>
<classifier>tar</classifier>
</dependency>
-
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>xalan</artifactId>
+ <version>${xalan.version}</version>
+ </dependency>
<!-- 3rd party libraries -->
<dependency>
<groupId>junit</groupId>
15 years
riftsaw SVN: r410 - in branches/ODE/ODE-2.0-maven: bpel-api-jca and 3 other directories.
by riftsaw-commits@lists.jboss.org
Author: danieldominguez
Date: 2009-12-17 09:34:46 -0500 (Thu, 17 Dec 2009)
New Revision: 410
Modified:
branches/ODE/ODE-2.0-maven/bpel-api-jca/pom.xml
branches/ODE/ODE-2.0-maven/bpel-api/pom.xml
branches/ODE/ODE-2.0-maven/bpel-dao/pom.xml
branches/ODE/ODE-2.0-maven/jca-ra/pom.xml
branches/ODE/ODE-2.0-maven/jca-server/pom.xml
Log:
Removed version qualifiers from dependencies
Modified: branches/ODE/ODE-2.0-maven/bpel-api/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/bpel-api/pom.xml 2009-12-17 10:52:58 UTC (rev 409)
+++ branches/ODE/ODE-2.0-maven/bpel-api/pom.xml 2009-12-17 14:34:46 UTC (rev 410)
@@ -35,22 +35,18 @@
<dependency>
<groupId>org.apache.ode</groupId>
<artifactId>ode-utils</artifactId>
- <version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.ode</groupId>
<artifactId>ode-bpel-schemas</artifactId>
- <version>${project.version}</version>
</dependency>
<dependency>
<groupId>wsdl4j</groupId>
<artifactId>wsdl4j</artifactId>
- <version>${wsdl4j.version}</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
- <version>${commons.logging.version}</version>
</dependency>
</dependencies>
</project>
Modified: branches/ODE/ODE-2.0-maven/bpel-api-jca/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/bpel-api-jca/pom.xml 2009-12-17 10:52:58 UTC (rev 409)
+++ branches/ODE/ODE-2.0-maven/bpel-api-jca/pom.xml 2009-12-17 14:34:46 UTC (rev 410)
@@ -35,12 +35,10 @@
<dependency>
<groupId>org.apache.ode</groupId>
<artifactId>ode-bpel-api</artifactId>
- <version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
- <version>${geronimo.specs.version}</version>
</dependency>
</dependencies>
</project>
Modified: branches/ODE/ODE-2.0-maven/bpel-dao/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/bpel-dao/pom.xml 2009-12-17 10:52:58 UTC (rev 409)
+++ branches/ODE/ODE-2.0-maven/bpel-dao/pom.xml 2009-12-17 14:34:46 UTC (rev 410)
@@ -35,7 +35,6 @@
<dependency>
<groupId>org.apache.ode</groupId>
<artifactId>ode-bpel-api</artifactId>
- <version>${project.version}</version>
</dependency>
</dependencies>
</project>
Modified: branches/ODE/ODE-2.0-maven/jca-ra/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/jca-ra/pom.xml 2009-12-17 10:52:58 UTC (rev 409)
+++ branches/ODE/ODE-2.0-maven/jca-ra/pom.xml 2009-12-17 14:34:46 UTC (rev 410)
@@ -35,12 +35,10 @@
<dependency>
<groupId>org.apache.ode</groupId>
<artifactId>ode-utils</artifactId>
- <version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
- <version>${geronimo.specs.version}</version>
</dependency>
</dependencies>
</project>
Modified: branches/ODE/ODE-2.0-maven/jca-server/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/jca-server/pom.xml 2009-12-17 10:52:58 UTC (rev 409)
+++ branches/ODE/ODE-2.0-maven/jca-server/pom.xml 2009-12-17 14:34:46 UTC (rev 410)
@@ -35,12 +35,10 @@
<dependency>
<groupId>org.apache.ode</groupId>
<artifactId>ode-jca-ra</artifactId>
- <version>${project.version}</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
- <version>${commons.logging.version}</version>
</dependency>
</dependencies>
</project>
15 years
riftsaw SVN: r409 - in branches/ODE/ODE-2.0-maven: bpel-schemas and 2 other directories.
by riftsaw-commits@lists.jboss.org
Author: jeff.yuchang
Date: 2009-12-17 05:52:58 -0500 (Thu, 17 Dec 2009)
New Revision: 409
Added:
branches/ODE/ODE-2.0-maven/runtimes/pom.xml
Modified:
branches/ODE/ODE-2.0-maven/bpel-schemas/pom.xml
branches/ODE/ODE-2.0-maven/jacob/pom.xml
branches/ODE/ODE-2.0-maven/pom.xml
Log:
* add pom for runtimes module
* update the xmlbeans groupId.
Modified: branches/ODE/ODE-2.0-maven/bpel-schemas/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/bpel-schemas/pom.xml 2009-12-17 09:13:34 UTC (rev 408)
+++ branches/ODE/ODE-2.0-maven/bpel-schemas/pom.xml 2009-12-17 10:52:58 UTC (rev 409)
@@ -32,7 +32,7 @@
<dependencies>
<dependency>
- <groupId>xmlbeans</groupId>
+ <groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
</dependency>
<dependency>
Modified: branches/ODE/ODE-2.0-maven/jacob/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/jacob/pom.xml 2009-12-17 09:13:34 UTC (rev 408)
+++ branches/ODE/ODE-2.0-maven/jacob/pom.xml 2009-12-17 10:52:58 UTC (rev 409)
@@ -72,7 +72,7 @@
<dependency>
<groupId>org.apache.ode</groupId>
<artifactId>ode-jacob-ap</artifactId>
- <version>2.0-SNAPSHOT</version>
+ <version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
Modified: branches/ODE/ODE-2.0-maven/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/pom.xml 2009-12-17 09:13:34 UTC (rev 408)
+++ branches/ODE/ODE-2.0-maven/pom.xml 2009-12-17 10:52:58 UTC (rev 409)
@@ -96,6 +96,7 @@
<xstream.version>1.2</xstream.version>
<junit.version>4.3.1</junit.version>
<hsqldb.version>1.8.0.7</hsqldb.version>
+ <persistence-api.version>1.0</persistence-api.version>
</properties>
@@ -576,6 +577,11 @@
<version>${jaxb.version}</version>
</dependency>
<dependency>
+ <groupId>javax.persistence</groupId>
+ <artifactId>persistence-api</artifactId>
+ <version>${persistence-api.version}</version>
+ </dependency>
+ <dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<version>${jaxen.version}</version>
@@ -741,6 +747,11 @@
<version>${saxon.version}</version>
</dependency>
<dependency>
+ <groupId>net.sf.saxon</groupId>
+ <artifactId>saxon-xqj</artifactId>
+ <version>${saxon.version}</version>
+ </dependency>
+ <dependency>
<groupId>stax</groupId>
<artifactId>stax-api</artifactId>
<version>${stax-api.version}</version>
@@ -787,7 +798,7 @@
<version>${xmlresolver.version}</version>
</dependency>
<dependency>
- <groupId>xmlbeans</groupId>
+ <groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<version>${xmlbeans.version}</version>
</dependency>
@@ -825,6 +836,7 @@
</exclusion>
</exclusions>
</dependency>
+
<dependency>
<groupId>xstream</groupId>
<artifactId>xstream</artifactId>
@@ -842,6 +854,7 @@
<version>${hsqldb.version}</version>
</dependency>
+ <!-- AXIS2 dependencies -->
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-adb</artifactId>
Added: branches/ODE/ODE-2.0-maven/runtimes/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/runtimes/pom.xml (rev 0)
+++ branches/ODE/ODE-2.0-maven/runtimes/pom.xml 2009-12-17 10:52:58 UTC (rev 409)
@@ -0,0 +1,151 @@
+<?xml version="1.0"?>
+<!--
+ ~ Licensed to the Apache Software Foundation (ASF) under one
+ ~ or more contributor license agreements. See the NOTICE file
+ ~ distributed with this work for additional information
+ ~ regarding copyright ownership. The ASF licenses this file
+ ~ to you under the Apache License, Version 2.0 (the
+ ~ "License"); you may not use this file except in compliance
+ ~ with the License. You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing,
+ ~ software distributed under the License is distributed on an
+ ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ ~ KIND, either express or implied. See the License for the
+ ~ specific language governing permissions and limitations
+ ~ under the License.
+ -->
+
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-runtimes</artifactId>
+ <name>ODE :: BPEL Runtimes</name>
+ <parent>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ </parent>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-jacob</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-jacob-ap</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-utils</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-dao</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-httpclient</groupId>
+ <artifactId>commons-httpclient</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>jaxen</groupId>
+ <artifactId>jaxen</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-jta_1.1_spec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-stax-api_1.0_spec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.persistence</groupId>
+ <artifactId>persistence-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>wsdl4j</groupId>
+ <artifactId>wsdl4j</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.xmlbeans</groupId>
+ <artifactId>xmlbeans</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>net.sf.saxon</groupId>
+ <artifactId>saxon</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>net.sf.saxon</groupId>
+ <artifactId>saxon-xpath</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>net.sf.saxon</groupId>
+ <artifactId>saxon-dom</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>net.sf.saxon</groupId>
+ <artifactId>saxon-xqj</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>apt-maven-plugin</artifactId>
+ <version>1.0-alpha-3</version>
+ <configuration>
+ <factory>org.apache.ode.jacob.ap.JacobAnnotationProcessorFactory</factory>
+ <outputDirectory>target/generated/apt</outputDirectory>
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>process</goal>
+ <goal>test-process</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-jacob-ap</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
15 years
riftsaw SVN: r408 - trunk/qa.
by riftsaw-commits@lists.jboss.org
Author: objectiser
Date: 2009-12-17 04:13:34 -0500 (Thu, 17 Dec 2009)
New Revision: 408
Modified:
trunk/qa/hudson-riftsaw-jboss.sh
Log:
Generate docs.
Modified: trunk/qa/hudson-riftsaw-jboss.sh
===================================================================
--- trunk/qa/hudson-riftsaw-jboss.sh 2009-12-17 09:02:49 UTC (rev 407)
+++ trunk/qa/hudson-riftsaw-jboss.sh 2009-12-17 09:13:34 UTC (rev 408)
@@ -17,7 +17,7 @@
# build RiftSaw and running unit test
cd ..
-mvn clean install
+mvn clean install -Pdocs
# run integration test
cd qa
15 years
riftsaw SVN: r407 - in branches/ODE/ODE-2.0-maven: scheduler-simple and 1 other directory.
by riftsaw-commits@lists.jboss.org
Author: jeff.yuchang
Date: 2009-12-17 04:02:49 -0500 (Thu, 17 Dec 2009)
New Revision: 407
Added:
branches/ODE/ODE-2.0-maven/scheduler-simple/pom.xml
Modified:
branches/ODE/ODE-2.0-maven/pom.xml
Log:
* add pom for scheduler-simple.
Modified: branches/ODE/ODE-2.0-maven/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/pom.xml 2009-12-17 05:05:54 UTC (rev 406)
+++ branches/ODE/ODE-2.0-maven/pom.xml 2009-12-17 09:02:49 UTC (rev 407)
@@ -77,6 +77,8 @@
<geronimo.annotation.version>1.1</geronimo.annotation.version>
<geronimo.javamail.version>1.2</geronimo.javamail.version>
<geronimo.stax-api.version>1.0.1</geronimo.stax-api.version>
+ <geronimo.transaction.version>2.0.1</geronimo.transaction.version>
+ <geronimo.kernel.version>2.0.1</geronimo.kernel.version>
<jaxen.version>1.1-beta-8</jaxen.version>
<jetty.version>6.1.12rc1</jetty.version>
<jencks.version>2.1</jencks.version>
@@ -93,6 +95,7 @@
<derby.version>10.1.2.1</derby.version>
<xstream.version>1.2</xstream.version>
<junit.version>4.3.1</junit.version>
+ <hsqldb.version>1.8.0.7</hsqldb.version>
</properties>
@@ -500,8 +503,34 @@
<artifactId>commons-logging</artifactId>
<version>${commons.logging.version}</version>
</dependency>
+
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-jta_1.1_spec</artifactId>
+ <version>${geronimo.specs.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
+ <version>${geronimo.specs.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-ejb_2.1_spec</artifactId>
+ <version>${geronimo.specs.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.components</groupId>
+ <artifactId>geronimo-transaction</artifactId>
+ <version>${geronimo.transaction.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.modules</groupId>
+ <artifactId>geronimo-kernel</artifactId>
+ <version>${geronimo.kernel.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-activation_1.1_spec</artifactId>
<version>${geronimo.activation.version}</version>
</dependency>
@@ -520,6 +549,7 @@
<artifactId>geronimo-stax-api_1.0_spec</artifactId>
<version>${geronimo.stax-api.version}</version>
</dependency>
+
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
@@ -806,6 +836,11 @@
<artifactId>derby</artifactId>
<version>${derby.version}</version>
</dependency>
+ <dependency>
+ <groupId>hsqldb</groupId>
+ <artifactId>hsqldb</artifactId>
+ <version>${hsqldb.version}</version>
+ </dependency>
<dependency>
<groupId>org.apache.axis2</groupId>
Added: branches/ODE/ODE-2.0-maven/scheduler-simple/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/scheduler-simple/pom.xml (rev 0)
+++ branches/ODE/ODE-2.0-maven/scheduler-simple/pom.xml 2009-12-17 09:02:49 UTC (rev 407)
@@ -0,0 +1,95 @@
+<?xml version="1.0"?>
+<!--
+ ~ Licensed to the Apache Software Foundation (ASF) under one
+ ~ or more contributor license agreements. See the NOTICE file
+ ~ distributed with this work for additional information
+ ~ regarding copyright ownership. The ASF licenses this file
+ ~ to you under the Apache License, Version 2.0 (the
+ ~ "License"); you may not use this file except in compliance
+ ~ with the License. You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing,
+ ~ software distributed under the License is distributed on an
+ ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ ~ KIND, either express or implied. See the License for the
+ ~ specific language governing permissions and limitations
+ ~ under the License.
+ -->
+
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-scheduler-simple</artifactId>
+ <name>ODE :: BPEL Scheduler Simple</name>
+ <parent>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ </parent>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-utils</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-jta_1.1_spec</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>hsqldb</groupId>
+ <artifactId>hsqldb</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>backport-util-concurrent</groupId>
+ <artifactId>backport-util-concurrent</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.modules</groupId>
+ <artifactId>geronimo-kernel</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.components</groupId>
+ <artifactId>geronimo-transaction</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-ejb_2.1_spec</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
15 years
riftsaw SVN: r406 - tags.
by riftsaw-commits@lists.jboss.org
Author: jeff.yuchang
Date: 2009-12-17 00:05:54 -0500 (Thu, 17 Dec 2009)
New Revision: 406
Added:
tags/RiftSaw-2.0-CR1/
Log:
* Release tag of RiftSaw-2.0-CR1.
Copied: tags/RiftSaw-2.0-CR1 (from rev 405, trunk)
15 years
riftsaw SVN: r405 - tags.
by riftsaw-commits@lists.jboss.org
Author: kurtstam
Date: 2009-12-16 20:45:30 -0500 (Wed, 16 Dec 2009)
New Revision: 405
Removed:
tags/RiftSaw-2.0-CR1/
Log:
deleting tag
15 years
riftsaw SVN: r404 - in trunk: distribution/src/main/assembly and 1 other directories.
by riftsaw-commits@lists.jboss.org
Author: kurtstam
Date: 2009-12-16 20:42:55 -0500 (Wed, 16 Dec 2009)
New Revision: 404
Modified:
trunk/
trunk/distribution/src/main/assembly/bin.xml
trunk/docs/docbook/pom.xml
Log:
fixing empty samples directories in the distribution
Property changes on: trunk
___________________________________________________________________
Name: svn:ignore
- *.iml
*.ipr
*.iws
.project
.classpath
.settings
target
+ *.iml
*.ipr
*.iws
.project
.classpath
.settings
target
deployment.properties
Modified: trunk/distribution/src/main/assembly/bin.xml
===================================================================
--- trunk/distribution/src/main/assembly/bin.xml 2009-12-17 00:23:45 UTC (rev 403)
+++ trunk/distribution/src/main/assembly/bin.xml 2009-12-17 01:42:55 UTC (rev 404)
@@ -70,14 +70,14 @@
<directory>../samples</directory>
<outputDirectory>samples</outputDirectory>
<includes>
- <include>esb/bpel_helloworld</include>
- <include>esb/bpel_loan_fault</include>
- <include>quickstart/hello_world</include>
- <include>quickstart/hello_world_header_ode</include>
- <include>quickstart/loan_approval</include>
- <include>quickstart/simple_correlation</include>
- <include>quickstart/simple_invoke</include>
- <include>quickstart/simple_pick</include>
+ <include>esb/bpel_helloworld/**</include>
+ <include>esb/bpel_loan_fault/**</include>
+ <include>quickstart/hello_world/**</include>
+ <include>quickstart/hello_world_header_ode/**</include>
+ <include>quickstart/loan_approval/**</include>
+ <include>quickstart/simple_correlation/**</include>
+ <include>quickstart/simple_invoke/**</include>
+ <include>quickstart/simple_pick/**</include>
<include>readme.txt</include>
</includes>
</fileSet>
Modified: trunk/docs/docbook/pom.xml
===================================================================
--- trunk/docs/docbook/pom.xml 2009-12-17 00:23:45 UTC (rev 403)
+++ trunk/docs/docbook/pom.xml 2009-12-17 01:42:55 UTC (rev 404)
@@ -25,4 +25,11 @@
</modules>
</profile>
</profiles>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>jboss</id>
+ <url>http://repository.jboss.com/maven2/</url>
+ </pluginRepository>
+ </pluginRepositories>
</project>
15 years
riftsaw SVN: r403 - in branches/ODE/ODE-2.0-maven: bpel-api-jca and 1 other directories.
by riftsaw-commits@lists.jboss.org
Author: danieldominguez
Date: 2009-12-16 19:23:45 -0500 (Wed, 16 Dec 2009)
New Revision: 403
Added:
branches/ODE/ODE-2.0-maven/bpel-api-jca/pom.xml
branches/ODE/ODE-2.0-maven/bpel-dao/pom.xml
Modified:
branches/ODE/ODE-2.0-maven/pom.xml
Log:
Maven build for bpel-api-jca and bpel-dao
Added: branches/ODE/ODE-2.0-maven/bpel-api-jca/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/bpel-api-jca/pom.xml (rev 0)
+++ branches/ODE/ODE-2.0-maven/bpel-api-jca/pom.xml 2009-12-17 00:23:45 UTC (rev 403)
@@ -0,0 +1,46 @@
+<?xml version="1.0"?>
+<!--
+ ~ Licensed to the Apache Software Foundation (ASF) under one
+ ~ or more contributor license agreements. See the NOTICE file
+ ~ distributed with this work for additional information
+ ~ regarding copyright ownership. The ASF licenses this file
+ ~ to you under the Apache License, Version 2.0 (the
+ ~ "License"); you may not use this file except in compliance
+ ~ with the License. You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing,
+ ~ software distributed under the License is distributed on an
+ ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ ~ KIND, either express or implied. See the License for the
+ ~ specific language governing permissions and limitations
+ ~ under the License.
+ -->
+
+<project>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-api-jca</artifactId>
+ <name>ODE :: JCA Connector</name>
+ <packaging>jar</packaging>
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ </parent>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
+ <version>${geronimo.specs.version}</version>
+ </dependency>
+ </dependencies>
+</project>
Added: branches/ODE/ODE-2.0-maven/bpel-dao/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/bpel-dao/pom.xml (rev 0)
+++ branches/ODE/ODE-2.0-maven/bpel-dao/pom.xml 2009-12-17 00:23:45 UTC (rev 403)
@@ -0,0 +1,41 @@
+<?xml version="1.0"?>
+<!--
+ ~ Licensed to the Apache Software Foundation (ASF) under one
+ ~ or more contributor license agreements. See the NOTICE file
+ ~ distributed with this work for additional information
+ ~ regarding copyright ownership. The ASF licenses this file
+ ~ to you under the Apache License, Version 2.0 (the
+ ~ "License"); you may not use this file except in compliance
+ ~ with the License. You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing,
+ ~ software distributed under the License is distributed on an
+ ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ ~ KIND, either express or implied. See the License for the
+ ~ specific language governing permissions and limitations
+ ~ under the License.
+ -->
+
+<project>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-dao</artifactId>
+ <name>ODE :: DAO Interfaces</name>
+ <packaging>jar</packaging>
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ </parent>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+</project>
Modified: branches/ODE/ODE-2.0-maven/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/pom.xml 2009-12-17 00:10:50 UTC (rev 402)
+++ branches/ODE/ODE-2.0-maven/pom.xml 2009-12-17 00:23:45 UTC (rev 403)
@@ -103,6 +103,8 @@
<module>bpel-schemas</module>
<module>bpel-scripts</module>
<module>bpel-api</module>
+ <module>bpel-api-jca</module>
+ <module>bpel-dao</module>
<module>jca-ra</module>
<module>jca-server</module>
</modules>
15 years