riftsaw SVN: r422 - in branches/ODE/ODE-2.0-maven: dao-hibernate and 1 other directory.
by riftsaw-commits@lists.jboss.org
Author: danieldominguez
Date: 2009-12-18 10:24:08 -0500 (Fri, 18 Dec 2009)
New Revision: 422
Modified:
branches/ODE/ODE-2.0-maven/dao-hibernate/pom.xml
branches/ODE/ODE-2.0-maven/pom.xml
Log:
Added javassist
Modified: branches/ODE/ODE-2.0-maven/dao-hibernate/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/dao-hibernate/pom.xml 2009-12-18 15:24:02 UTC (rev 421)
+++ branches/ODE/ODE-2.0-maven/dao-hibernate/pom.xml 2009-12-18 15:24:08 UTC (rev 422)
@@ -52,6 +52,10 @@
<artifactId>hibernate-core</artifactId>
</dependency>
<dependency>
+ <groupId>javassist</groupId>
+ <artifactId>javassist</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
Modified: branches/ODE/ODE-2.0-maven/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/pom.xml 2009-12-18 15:24:02 UTC (rev 421)
+++ branches/ODE/ODE-2.0-maven/pom.xml 2009-12-18 15:24:08 UTC (rev 422)
@@ -71,6 +71,7 @@
<woodstox.version>3.2.4</woodstox.version>
<javax.mail.version>1.4</javax.mail.version>
<hibernate.version>3.3.1.GA</hibernate.version>
+ <javassist.version>3.4.GA</javassist.version>
<spring.version>2.5.6</spring.version>
<geronimo.specs.version>1.0</geronimo.specs.version>
<geronimo.version>2.0.1</geronimo.version>
@@ -697,6 +698,12 @@
</exclusion>
</exclusions>
</dependency>
+
+ <dependency>
+ <groupId>javassist</groupId>
+ <artifactId>javassist</artifactId>
+ <version>${javassist.version}</version>
+ </dependency>
<!--
| Jetty is used for the standalone-distro. The
15 years
riftsaw SVN: r421 - branches/ODE/ODE-2.0-maven/dao-hibernate.
by riftsaw-commits@lists.jboss.org
Author: danieldominguez
Date: 2009-12-18 10:24:02 -0500 (Fri, 18 Dec 2009)
New Revision: 421
Modified:
branches/ODE/ODE-2.0-maven/dao-hibernate/pom.xml
Log:
Fixed fileset for xdoclet
Modified: branches/ODE/ODE-2.0-maven/dao-hibernate/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/dao-hibernate/pom.xml 2009-12-18 10:45:04 UTC (rev 420)
+++ branches/ODE/ODE-2.0-maven/dao-hibernate/pom.xml 2009-12-18 15:24:02 UTC (rev 421)
@@ -80,7 +80,7 @@
<hibernatedoclet excludedTags="@version,@author,@todo" verbose="true"
destdir="${project.build.outputDirectory}" force="true">
<hibernate version="3.0"/>
- <fileset dir="${project.build.sourceDirectory}/org/apache/ode/daohib/bpel/hobj/" includes="**/*.java"/>
+ <fileset dir="${project.build.sourceDirectory}" includes="org/apache/ode/daohib/bpel/hobj/*.java"/>
</hibernatedoclet>
</tasks>
</configuration>
15 years
riftsaw SVN: r420 - in branches/ODE/ODE-2.0-maven: bpel-schemas and 1 other directories.
by riftsaw-commits@lists.jboss.org
Author: jeff.yuchang
Date: 2009-12-18 05:45:04 -0500 (Fri, 18 Dec 2009)
New Revision: 420
Added:
branches/ODE/ODE-2.0-maven/bpel-store/pom.xml
Modified:
branches/ODE/ODE-2.0-maven/bpel-schemas/pom.xml
branches/ODE/ODE-2.0-maven/pom.xml
Log:
* add pom for bpel-store module. one issue left: the xmlbean's plugin seems using jdk1.4, no Generic support, but bpel-store classes are using the Generic one.
Modified: branches/ODE/ODE-2.0-maven/bpel-schemas/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/bpel-schemas/pom.xml 2009-12-18 07:43:53 UTC (rev 419)
+++ branches/ODE/ODE-2.0-maven/bpel-schemas/pom.xml 2009-12-18 10:45:04 UTC (rev 420)
@@ -48,6 +48,7 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>xmlbeans-maven-plugin</artifactId>
<configuration>
+ <javaSource>"1.5"</javaSource>
<schemaDirectory>src/main/xsd</schemaDirectory>
<sourceGenerationDirectory>target/generated/xmlbeans</sourceGenerationDirectory>
<xmlConfigs>
Added: branches/ODE/ODE-2.0-maven/bpel-store/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/bpel-store/pom.xml (rev 0)
+++ branches/ODE/ODE-2.0-maven/bpel-store/pom.xml 2009-12-18 10:45:04 UTC (rev 420)
@@ -0,0 +1,224 @@
+<?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-store</artifactId>
+ <name>ODE :: Process Store</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>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-runtimes</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-compiler</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-dao</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-schemas</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-il-common</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-dao-hibernate</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-utils</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-core</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.persistence</groupId>
+ <artifactId>persistence-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-stax-api_1.0_spec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>hsqldb</groupId>
+ <artifactId>hsqldb</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.xmlbeans</groupId>
+ <artifactId>xmlbeans</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>wsdl4j</groupId>
+ <artifactId>wsdl4j</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</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-jta_1.1_spec</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>jaxen</groupId>
+ <artifactId>jaxen</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>dom4j</groupId>
+ <artifactId>dom4j</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>xalan</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>net.sf.saxon</groupId>
+ <artifactId>saxon</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>net.sf.saxon</groupId>
+ <artifactId>saxon-xpath</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>net.sf.saxon</groupId>
+ <artifactId>saxon-dom</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>net.sf.saxon</groupId>
+ <artifactId>saxon-xqj</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.openjpa</groupId>
+ <artifactId>openjpa</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.serp</groupId>
+ <artifactId>serp</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+
+ <!--plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>openjpa-maven-plugin</artifactId>
+ <version>1.0</version>
+ <executions>
+ <execution>
+ <id>enhancer</id>
+ <phase>process-classes</phase>
+ <goals>
+ <goal>enhance</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin-->
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>xdoclet-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>xdoclet</goal>
+ </goals>
+
+ <configuration>
+ <tasks>
+ <hibernatedoclet excludedTags="@version,@author,@todo" verbose="true"
+ destdir="${project.build.outputDirectory}" force="true">
+ <hibernate version="3.0"/>
+ <fileset dir="${project.build.sourceDirectory}/org/apache/ode/store/hib" includes="**/*.java"/>
+ </hibernatedoclet>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Modified: branches/ODE/ODE-2.0-maven/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/pom.xml 2009-12-18 07:43:53 UTC (rev 419)
+++ branches/ODE/ODE-2.0-maven/pom.xml 2009-12-18 10:45:04 UTC (rev 420)
@@ -100,6 +100,7 @@
<ant.version>1.6.5</ant.version>
<openjpa.version>1.3.0-SNAPSHOT</openjpa.version>
<serp.version>1.13.1</serp.version>
+ <dom4j.version>1.6.1</dom4j.version>
</properties>
@@ -113,7 +114,7 @@
<module>bpel-api-jca</module>
<module>bpel-dao</module>
<module>dao-jpa</module>
- <module>dao-jpa-db</module>
+ <module>dao-jpa-db</module>
<module>jca-ra</module>
<module>jca-server</module>
<module>scheduler-simple</module>
@@ -177,7 +178,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xmlbeans-maven-plugin</artifactId>
- <version>2.3.3</version>
+ <version>2.3.0</version>
</plugin>
<plugin>
<artifactId>maven-one-plugin</artifactId>
@@ -650,6 +651,11 @@
<artifactId>serp</artifactId>
<version>${serp.version}</version>
</dependency>
+ <dependency>
+ <groupId>dom4j</groupId>
+ <artifactId>dom4j</artifactId>
+ <version>${dom4j.version}</version>
+ </dependency>
<dependency>
<groupId>commons-pool</groupId>
<artifactId>commons-pool</artifactId>
@@ -771,28 +777,6 @@
<version>${saxon.version}</version>
</dependency>
<dependency>
- <groupId>stax</groupId>
- <artifactId>stax-api</artifactId>
- <version>${stax-api.version}</version>
- <exclusions>
- <exclusion>
- <artifactId>xmlbeans-jsr173-api</artifactId>
- <groupId>xmlbeans</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>stax</groupId>
- <artifactId>stax</artifactId>
- <version>${stax.version}</version>
- <exclusions>
- <exclusion>
- <artifactId>xmlbeans-jsr173-api</artifactId>
- <groupId>xmlbeans</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
<groupId>jencks</groupId>
<artifactId>xapool-without-pool</artifactId>
<version>${xapool.version}</version>
@@ -820,42 +804,8 @@
<artifactId>xmlbeans</artifactId>
<version>${xmlbeans.version}</version>
</dependency>
- <dependency>
- <groupId>xmlbeans</groupId>
- <artifactId>xbean</artifactId>
- <version>${xmlbeans.version}</version>
- <exclusions>
- <exclusion>
- <artifactId>xmlbeans-jsr173-api</artifactId>
- <groupId>xmlbeans</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>xmlbeans</groupId>
- <artifactId>xbean_xpath</artifactId>
- <version>${xmlbeans.version}</version>
- <exclusions>
- <exclusion>
- <artifactId>xmlbeans-jsr173-api</artifactId>
- <groupId>xmlbeans</groupId>
- </exclusion>
- </exclusions>
- </dependency>
<dependency>
- <groupId>xmlbeans</groupId>
- <artifactId>xmlpublic</artifactId>
- <version>${xmlbeans.version}</version>
- <exclusions>
- <exclusion>
- <artifactId>xmlbeans-jsr173-api</artifactId>
- <groupId>xmlbeans</groupId>
- </exclusion>
- </exclusions>
- </dependency>
-
- <dependency>
<groupId>xstream</groupId>
<artifactId>xstream</artifactId>
<version>${xstream.version}</version>
15 years
riftsaw SVN: r419 - branches/ODE/ODE-2.0-maven/dao-jpa-db.
by riftsaw-commits@lists.jboss.org
Author: jeff.yuchang
Date: 2009-12-18 02:43:53 -0500 (Fri, 18 Dec 2009)
New Revision: 419
Modified:
branches/ODE/ODE-2.0-maven/dao-jpa-db/build.xml
Log:
* update the header, use the apache one.
Modified: branches/ODE/ODE-2.0-maven/dao-jpa-db/build.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/dao-jpa-db/build.xml 2009-12-18 07:39:30 UTC (rev 418)
+++ branches/ODE/ODE-2.0-maven/dao-jpa-db/build.xml 2009-12-18 07:43:53 UTC (rev 419)
@@ -1,12 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
-
-<!-- ============================================================ -->
-<!-- JBoss, the OpenSource J2EE webOS -->
-<!-- Distributable under LGPL license. -->
-<!-- See terms of license at http://www.gnu.org. -->
-<!-- ============================================================ -->
-
-
+<!--
+ ~ 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>
<property name="db.scripts.dir" value="${basedir}/target" />
15 years
riftsaw SVN: r418 - in branches/ODE/ODE-2.0-maven: dao-jpa-db and 1 other directory.
by riftsaw-commits@lists.jboss.org
Author: jeff.yuchang
Date: 2009-12-18 02:39:30 -0500 (Fri, 18 Dec 2009)
New Revision: 418
Added:
branches/ODE/ODE-2.0-maven/dao-jpa-db/build.xml
branches/ODE/ODE-2.0-maven/dao-jpa-db/pom.xml
Modified:
branches/ODE/ODE-2.0-maven/pom.xml
Log:
* add pom for dao-jpa-db module. (derby db zip built is not there yet)
Added: branches/ODE/ODE-2.0-maven/dao-jpa-db/build.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/dao-jpa-db/build.xml (rev 0)
+++ branches/ODE/ODE-2.0-maven/dao-jpa-db/build.xml 2009-12-18 07:39:30 UTC (rev 418)
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ============================================================ -->
+<!-- JBoss, the OpenSource J2EE webOS -->
+<!-- Distributable under LGPL license. -->
+<!-- See terms of license at http://www.gnu.org. -->
+<!-- ============================================================ -->
+
+
+<project>
+
+ <property name="db.scripts.dir" value="${basedir}/target" />
+ <property name="descriptor.dir" value="${basedir}/src/main/descriptors"/>
+ <property name="scripts.dir" value="${basedir}/src/main/scripts"/>
+
+ <path id="classpath">
+ <pathelement path="${maven.runtime.classpath}"/>
+ </path>
+
+ <target name="create-schema">
+
+ <taskdef name="mappingtool" classname="org.apache.openjpa.jdbc.ant.MappingToolTask" classpathref="classpath"/>
+
+ <mkdir dir="target"/>
+ <mkdir dir="${db.scripts.dir}" />
+
+ <!-- Derby -->
+ <create-ddl db="derby"/>
+
+ <!-- MySQL -->
+ <create-ddl db="mysql"/>
+
+ <!-- Oracle -->
+ <create-ddl db="oracle"/>
+
+ <!-- Postgres -->
+ <create-ddl db="postgres"/>
+
+ </target>
+
+ <!--
+ ============================================
+ Macro defs, no need to change anything below
+ ============================================
+ -->
+
+ <macrodef name="create-ddl">
+ <attribute name="db"/>
+
+ <sequential>
+ <echo></echo>
+ <echo>=====================</echo>
+ <echo>Create DDL @{db}</echo>
+ <mappingtool schemaAction="build" sqlFile="${db.scripts.dir}/partial.(a){db}.sql" readSchema="false">
+ <config propertiesFile="${descriptor.dir}/persistence.(a){db}.xml"/>
+ <classpath>
+ <path refid="classpath"/>
+ </classpath>
+ </mappingtool>
+ <concat destfile="${db.scripts.dir}/(a){db}.sql">
+ <fileset file="${scripts.dir}/license-header.sql"/>
+ <fileset file="${scripts.dir}/simplesched-(a){db}.sql"/>
+ <fileset file="${db.scripts.dir}/partial.(a){db}.sql"/>
+ </concat>
+ <echo>Done.</echo>
+ <echo>=====================</echo>
+ </sequential>
+ </macrodef>
+
+</project>
Added: branches/ODE/ODE-2.0-maven/dao-jpa-db/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/dao-jpa-db/pom.xml (rev 0)
+++ branches/ODE/ODE-2.0-maven/dao-jpa-db/pom.xml 2009-12-18 07:39:30 UTC (rev 418)
@@ -0,0 +1,169 @@
+<?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-dao-jpa-db</artifactId>
+ <name>ODE :: OpenJPA DDL Generation</name>
+ <parent>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ </parent>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-jta_1.1_spec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.persistence</groupId>
+ <artifactId>persistence-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</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>org.apache.ode</groupId>
+ <artifactId>ode-utils</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-runtimes</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-il-common</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-dao-jpa</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.openjpa</groupId>
+ <artifactId>openjpa</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.serp</groupId>
+ <artifactId>serp</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>wsdl4j</groupId>
+ <artifactId>wsdl4j</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-ejb_2.1_spec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>hsqldb</groupId>
+ <artifactId>hsqldb</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.modules</groupId>
+ <artifactId>geronimo-kernel</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.components</groupId>
+ <artifactId>geronimo-transaction</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.components</groupId>
+ <artifactId>geronimo-connector</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>backport-util-concurrent</groupId>
+ <artifactId>backport-util-concurrent</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-dbcp</groupId>
+ <artifactId>commons-dbcp</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-pool</groupId>
+ <artifactId>commons-pool</artifactId>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>create-db-schemas</id>
+ <phase>process-resources</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <tasks>
+ <property name="maven.runtime.classpath" refid="maven.compile.classpath"/>
+ <ant antfile="build.xml"
+ target="create-schema">
+ </ant>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+
+</project>
Modified: branches/ODE/ODE-2.0-maven/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/pom.xml 2009-12-18 05:15:31 UTC (rev 417)
+++ branches/ODE/ODE-2.0-maven/pom.xml 2009-12-18 07:39:30 UTC (rev 418)
@@ -58,6 +58,7 @@
<commons.logging.version>1.1.1</commons.logging.version>
<commons.pool.version>1.2</commons.pool.version>
<commons.primitives.version>1.0</commons.primitives.version>
+ <commons.dbcp.version>1.2.1</commons.dbcp.version>
<httpcomponents.version>4.0-beta1</httpcomponents.version>
<jaxb-api.version>2.1</jaxb-api.version>
<jaxb.version>2.1.6</jaxb.version>
@@ -72,13 +73,11 @@
<hibernate.version>3.3.1.GA</hibernate.version>
<spring.version>2.5.6</spring.version>
<geronimo.specs.version>1.0</geronimo.specs.version>
- <geronimo.version>1.1</geronimo.version>
+ <geronimo.version>2.0.1</geronimo.version>
<geronimo.activation.version>1.0.1</geronimo.activation.version>
<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>
<jetty.version>6.1.12rc1</jetty.version>
<jencks.version>1.3</jencks.version>
<jasper.version>4.2.20RC0</jasper.version>
@@ -105,7 +104,7 @@
<modules>
- <!--module>utils</module>
+ <module>utils</module>
<module>jacob-ap</module>
<module>jacob</module>
<module>bpel-schemas</module>
@@ -113,6 +112,8 @@
<module>bpel-api</module>
<module>bpel-api-jca</module>
<module>bpel-dao</module>
+ <module>dao-jpa</module>
+ <module>dao-jpa-db</module>
<module>jca-ra</module>
<module>jca-server</module>
<module>scheduler-simple</module>
@@ -121,7 +122,7 @@
<module>il-common</module>
<module>bpel-ql</module>
<module>dao-hibernate</module>
- <module>tools</module-->
+ <module>tools</module>
</modules>
<build>
@@ -383,6 +384,16 @@
</dependency>
<dependency>
<groupId>org.apache.ode</groupId>
+ <artifactId>ode-il-common</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-dao-jpa</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
<artifactId>ode-jca-ra</artifactId>
<version>${project.version}</version>
</dependency>
@@ -493,8 +504,12 @@
<artifactId>commons-logging</artifactId>
<version>${commons.logging.version}</version>
</dependency>
-
<dependency>
+ <groupId>commons-dbcp</groupId>
+ <artifactId>commons-dbcp</artifactId>
+ <version>${commons.dbcp.version}</version>
+ </dependency>
+ <dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jta_1.1_spec</artifactId>
<version>${geronimo.specs.version}</version>
@@ -512,17 +527,17 @@
<dependency>
<groupId>org.apache.geronimo.components</groupId>
<artifactId>geronimo-connector</artifactId>
- <version>${geronimo.transaction.version}</version>
+ <version>${geronimo.version}</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.components</groupId>
<artifactId>geronimo-transaction</artifactId>
- <version>${geronimo.transaction.version}</version>
+ <version>${geronimo.version}</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.modules</groupId>
<artifactId>geronimo-kernel</artifactId>
- <version>${geronimo.kernel.version}</version>
+ <version>${geronimo.version}</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
15 years
riftsaw SVN: r417 - in branches/ODE/ODE-2.0-maven: dao-jpa and 1 other directory.
by riftsaw-commits@lists.jboss.org
Author: jeff.yuchang
Date: 2009-12-18 00:15:31 -0500 (Fri, 18 Dec 2009)
New Revision: 417
Added:
branches/ODE/ODE-2.0-maven/dao-jpa/pom.xml
Modified:
branches/ODE/ODE-2.0-maven/pom.xml
Log:
* add pom for dao-jpa module.
Added: branches/ODE/ODE-2.0-maven/dao-jpa/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/dao-jpa/pom.xml (rev 0)
+++ branches/ODE/ODE-2.0-maven/dao-jpa/pom.xml 2009-12-18 05:15:31 UTC (rev 417)
@@ -0,0 +1,107 @@
+<?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-dao-jpa</artifactId>
+ <name>ODE :: OpenJPA DAO Impl</name>
+
+ <parent>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ </parent>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-jta_1.1_spec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.persistence</groupId>
+ <artifactId>persistence-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</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>org.apache.ode</groupId>
+ <artifactId>ode-utils</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.openjpa</groupId>
+ <artifactId>openjpa</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.serp</groupId>
+ <artifactId>serp</artifactId>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>openjpa-maven-plugin</artifactId>
+ <version>1.0</version>
+
+ <executions>
+ <execution>
+ <id>enhancer</id>
+ <phase>process-classes</phase>
+ <goals>
+ <goal>enhance</goal>
+ </goals>
+ </execution>
+ </executions>
+
+ </plugin>
+
+ </plugins>
+ </build>
+
+
+</project>
Modified: branches/ODE/ODE-2.0-maven/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/pom.xml 2009-12-18 03:29:48 UTC (rev 416)
+++ branches/ODE/ODE-2.0-maven/pom.xml 2009-12-18 05:15:31 UTC (rev 417)
@@ -99,11 +99,13 @@
<persistence-api.version>1.0</persistence-api.version>
<xalan.version>2.7.0-2</xalan.version>
<ant.version>1.6.5</ant.version>
+ <openjpa.version>1.3.0-SNAPSHOT</openjpa.version>
+ <serp.version>1.13.1</serp.version>
</properties>
<modules>
- <module>utils</module>
+ <!--module>utils</module>
<module>jacob-ap</module>
<module>jacob</module>
<module>bpel-schemas</module>
@@ -119,7 +121,7 @@
<module>il-common</module>
<module>bpel-ql</module>
<module>dao-hibernate</module>
- <module>tools</module>
+ <module>tools</module-->
</modules>
<build>
@@ -219,16 +221,21 @@
<url>http://repo1.maven.org/maven2</url>
</repository>
<repository>
+ <id>ibiblio</id>
+ <name>ibiblio</name>
+ <url>http://www.ibiblio.org/maven2</url>
+ </repository>
+ <repository>
+ <id>apache.snapshots</id>
+ <name>Apache snapshots</name>
+ <url>http://repository.apache.org/snapshots/</url>
+ </repository>
+ <repository>
<id>intalio</id>
<name>ODE Maven2 repository</name>
<url>http://pxe.intalio.org/public/maven2</url>
</repository>
<repository>
- <id>ibiblio</id>
- <name>ibiblio</name>
- <url>http://www.ibiblio.org/maven2</url>
- </repository>
- <repository>
<id>fusesource</id>
<name>fusesource</name>
<url>http://repo.fusesource.com/maven2-all</url>
@@ -242,16 +249,21 @@
<url>http://repo1.maven.org/maven2</url>
</pluginRepository>
<pluginRepository>
+ <id>ibiblio</id>
+ <name>ibiblio</name>
+ <url>http://www.ibiblio.org/maven2</url>
+ </pluginRepository>
+ <pluginRepository>
+ <id>apache.snapshots</id>
+ <name>Apache snapshots</name>
+ <url>http://repository.apache.org/snapshots/</url>
+ </pluginRepository>
+ <pluginRepository>
<id>intalio</id>
<name>Intalio Maven2 repository</name>
<url>http://pxe.intalio.org/public/maven2</url>
</pluginRepository>
<pluginRepository>
- <id>ibiblio</id>
- <name>ibiblio</name>
- <url>http://www.ibiblio.org/maven2</url>
- </pluginRepository>
- <pluginRepository>
<id>fusesource</id>
<name>fusesource</name>
<url>http://repo.fusesource.com/maven2-all</url>
@@ -613,6 +625,16 @@
<artifactId>mail</artifactId>
<version>${javax.mail.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.openjpa</groupId>
+ <artifactId>openjpa</artifactId>
+ <version>${openjpa.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.serp</groupId>
+ <artifactId>serp</artifactId>
+ <version>${serp.version}</version>
+ </dependency>
<dependency>
<groupId>commons-pool</groupId>
<artifactId>commons-pool</artifactId>
15 years
riftsaw SVN: r416 - in branches/ODE/ODE-2.0-maven: tools and 1 other directory.
by riftsaw-commits@lists.jboss.org
Author: jeff.yuchang
Date: 2009-12-17 22:29:48 -0500 (Thu, 17 Dec 2009)
New Revision: 416
Added:
branches/ODE/ODE-2.0-maven/tools/pom.xml
Modified:
branches/ODE/ODE-2.0-maven/pom.xml
Log:
* add pom for tools module.
Modified: branches/ODE/ODE-2.0-maven/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/pom.xml 2009-12-17 23:49:24 UTC (rev 415)
+++ branches/ODE/ODE-2.0-maven/pom.xml 2009-12-18 03:29:48 UTC (rev 416)
@@ -98,6 +98,7 @@
<hsqldb.version>1.8.0.7</hsqldb.version>
<persistence-api.version>1.0</persistence-api.version>
<xalan.version>2.7.0-2</xalan.version>
+ <ant.version>1.6.5</ant.version>
</properties>
@@ -118,6 +119,7 @@
<module>il-common</module>
<module>bpel-ql</module>
<module>dao-hibernate</module>
+ <module>tools</module>
</modules>
<build>
@@ -323,11 +325,6 @@
</dependency>
<dependency>
<groupId>org.apache.ode</groupId>
- <artifactId>ode-bpel-el-xpath20</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ode</groupId>
<artifactId>ode-bpel-obj</artifactId>
<version>${project.version}</version>
</dependency>
@@ -359,11 +356,6 @@
</dependency>
<dependency>
<groupId>org.apache.ode</groupId>
- <artifactId>ode-dao-memory</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ode</groupId>
<artifactId>ode-jacob-ap</artifactId>
<version>${project.version}</version>
</dependency>
@@ -379,17 +371,6 @@
</dependency>
<dependency>
<groupId>org.apache.ode</groupId>
- <artifactId>ode-jbi-install</artifactId>
- <version>${project.version}</version>
- <type>zip</type>
- </dependency>
- <dependency>
- <groupId>org.apache.ode</groupId>
- <artifactId>ode-jbi-examples</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ode</groupId>
<artifactId>ode-jca-ra</artifactId>
<version>${project.version}</version>
</dependency>
@@ -400,22 +381,6 @@
</dependency>
<dependency>
<groupId>org.apache.ode</groupId>
- <artifactId>ode-jca-rar</artifactId>
- <version>${project.version}</version>
- <type>rar</type>
- </dependency>
- <dependency>
- <groupId>org.apache.ode</groupId>
- <artifactId>ode-minerva</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ode</groupId>
- <artifactId>ode-naming</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ode</groupId>
<artifactId>ode-tools</artifactId>
<version>${project.version}</version>
</dependency>
@@ -431,20 +396,6 @@
</dependency>
<dependency>
<groupId>org.apache.ode</groupId>
- <artifactId>ode-tools-bin</artifactId>
- <type>tar</type>
- <version>${project.version}</version>
- <classifier>tar</classifier>
- </dependency>
- <dependency>
- <groupId>org.apache.ode</groupId>
- <artifactId>ode-examples</artifactId>
- <type>tar</type>
- <version>${project.version}</version>
- <classifier>tar</classifier>
- </dependency>
- <dependency>
- <groupId>org.apache.ode</groupId>
<artifactId>xalan</artifactId>
<version>${xalan.version}</version>
</dependency>
@@ -456,6 +407,11 @@
<scope>test</scope>
</dependency>
<dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>${ant.version}</version>
+ </dependency>
+ <dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>${activation.version}</version>
Added: branches/ODE/ODE-2.0-maven/tools/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/tools/pom.xml (rev 0)
+++ branches/ODE/ODE-2.0-maven/tools/pom.xml 2009-12-18 03:29:48 UTC (rev 416)
@@ -0,0 +1,56 @@
+<?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-tools</artifactId>
+ <name>ODE :: Command Line Tools</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-compiler</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-utils</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-httpclient</groupId>
+ <artifactId>commons-httpclient</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </dependency>
+
+ </dependencies>
+</project>
15 years
riftsaw SVN: r415 - in branches/ODE/ODE-2.0-maven: dao-hibernate and 1 other directory.
by riftsaw-commits@lists.jboss.org
Author: danieldominguez
Date: 2009-12-17 18:49:24 -0500 (Thu, 17 Dec 2009)
New Revision: 415
Added:
branches/ODE/ODE-2.0-maven/dao-hibernate/pom.xml
Modified:
branches/ODE/ODE-2.0-maven/pom.xml
Log:
Initial maven build for dao-hibernate - not working yet
Added: branches/ODE/ODE-2.0-maven/dao-hibernate/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/dao-hibernate/pom.xml (rev 0)
+++ branches/ODE/ODE-2.0-maven/dao-hibernate/pom.xml 2009-12-17 23:49:24 UTC (rev 415)
@@ -0,0 +1,92 @@
+<?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-dao-hibernate</artifactId>
+ <name>ODE :: Hibernate DAO Implementation</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-dao</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-ql</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-il-common</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-core</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <version>${slf4j.version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>xdoclet-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>xdoclet</goal>
+ </goals>
+ <configuration>
+ <tasks>
+ <hibernatedoclet excludedTags="@version,@author,@todo" verbose="true"
+ destdir="${project.build.outputDirectory}" force="true">
+ <hibernate version="3.0"/>
+ <fileset dir="${project.build.sourceDirectory}/org/apache/ode/daohib/bpel/hobj/" includes="**/*.java"/>
+ </hibernatedoclet>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Modified: branches/ODE/ODE-2.0-maven/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/pom.xml 2009-12-17 18:09:49 UTC (rev 414)
+++ branches/ODE/ODE-2.0-maven/pom.xml 2009-12-17 23:49:24 UTC (rev 415)
@@ -69,7 +69,7 @@
<wsdl4j.version>1.6.2</wsdl4j.version>
<woodstox.version>3.2.4</woodstox.version>
<javax.mail.version>1.4</javax.mail.version>
- <hibernate.version>3.1.2</hibernate.version>
+ <hibernate.version>3.3.1.GA</hibernate.version>
<spring.version>2.5.6</spring.version>
<geronimo.specs.version>1.0</geronimo.specs.version>
<geronimo.version>1.1</geronimo.version>
@@ -85,6 +85,7 @@
<log4j.version>1.2.15</log4j.version>
<saxon.version>9.x</saxon.version>
<servicemix.version>3.3</servicemix.version>
+ <slf4j.version>1.4.3</slf4j.version>
<stax-api.version>1.0</stax-api.version>
<stax.version>1.1.2-dev</stax.version>
<xapool.version>1.4</xapool.version>
@@ -116,6 +117,7 @@
<module>bpel-compiler</module>
<module>il-common</module>
<module>bpel-ql</module>
+ <module>dao-hibernate</module>
</modules>
<build>
@@ -224,6 +226,11 @@
<name>ibiblio</name>
<url>http://www.ibiblio.org/maven2</url>
</repository>
+ <repository>
+ <id>fusesource</id>
+ <name>fusesource</name>
+ <url>http://repo.fusesource.com/maven2-all</url>
+ </repository>
</repositories>
<pluginRepositories>
@@ -242,6 +249,11 @@
<name>ibiblio</name>
<url>http://www.ibiblio.org/maven2</url>
</pluginRepository>
+ <pluginRepository>
+ <id>fusesource</id>
+ <name>fusesource</name>
+ <url>http://repo.fusesource.com/maven2-all</url>
+ </pluginRepository>
</pluginRepositories>
@@ -677,7 +689,7 @@
<dependency>
<groupId>org.hibernate</groupId>
- <artifactId>hibernate</artifactId>
+ <artifactId>hibernate-core</artifactId>
<version>${hibernate.version}</version>
<exclusions>
<exclusion>
@@ -938,6 +950,17 @@
<artifactId>axis2-jibx</artifactId>
<version>${axis2.version}</version>
</dependency>
+
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>${slf4j.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <version>${slf4j.version}</version>
+ </dependency>
</dependencies>
</dependencyManagement>
15 years
riftsaw SVN: r414 - in branches/ODE/ODE-2.0-maven: bpel-ql and 1 other directory.
by riftsaw-commits@lists.jboss.org
Author: danieldominguez
Date: 2009-12-17 13:09:49 -0500 (Thu, 17 Dec 2009)
New Revision: 414
Added:
branches/ODE/ODE-2.0-maven/bpel-ql/pom.xml
Modified:
branches/ODE/ODE-2.0-maven/pom.xml
Log:
Maven build for bpel-ql
Added: branches/ODE/ODE-2.0-maven/bpel-ql/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/bpel-ql/pom.xml (rev 0)
+++ branches/ODE/ODE-2.0-maven/bpel-ql/pom.xml 2009-12-17 18:09:49 UTC (rev 414)
@@ -0,0 +1,61 @@
+<?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-ql</artifactId>
+ <name>ODE :: BPEL Query Language</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-compiler</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>javacc-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>jjtree-javacc</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Modified: branches/ODE/ODE-2.0-maven/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/pom.xml 2009-12-17 18:09:44 UTC (rev 413)
+++ branches/ODE/ODE-2.0-maven/pom.xml 2009-12-17 18:09:49 UTC (rev 414)
@@ -115,6 +115,7 @@
<module>runtimes</module>
<module>bpel-compiler</module>
<module>il-common</module>
+ <module>bpel-ql</module>
</modules>
<build>
15 years
riftsaw SVN: r413 - in branches/ODE/ODE-2.0-maven: il-common and 1 other directory.
by riftsaw-commits@lists.jboss.org
Author: danieldominguez
Date: 2009-12-17 13:09:44 -0500 (Thu, 17 Dec 2009)
New Revision: 413
Added:
branches/ODE/ODE-2.0-maven/il-common/pom.xml
Modified:
branches/ODE/ODE-2.0-maven/pom.xml
Log:
Maven build for il-common
Added: branches/ODE/ODE-2.0-maven/il-common/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/il-common/pom.xml (rev 0)
+++ branches/ODE/ODE-2.0-maven/il-common/pom.xml 2009-12-17 18:09:44 UTC (rev 413)
@@ -0,0 +1,71 @@
+<?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-il-common</artifactId>
+ <name>ODE :: Interface Layers Common</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-utils</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-dao</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ode</groupId>
+ <artifactId>ode-bpel-api</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.derby</groupId>
+ <artifactId>derby</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-jta_1.1_spec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.components</groupId>
+ <artifactId>geronimo-connector</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.components</groupId>
+ <artifactId>geronimo-transaction</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jencks</groupId>
+ <artifactId>jencks</artifactId>
+ <version>${jencks.version}</version>
+ <classifier>all</classifier>
+ </dependency>
+ </dependencies>
+</project>
Modified: branches/ODE/ODE-2.0-maven/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/pom.xml 2009-12-17 16:14:09 UTC (rev 412)
+++ branches/ODE/ODE-2.0-maven/pom.xml 2009-12-17 18:09:44 UTC (rev 413)
@@ -80,7 +80,7 @@
<geronimo.transaction.version>2.0.1</geronimo.transaction.version>
<geronimo.kernel.version>2.0.1</geronimo.kernel.version>
<jetty.version>6.1.12rc1</jetty.version>
- <jencks.version>2.1</jencks.version>
+ <jencks.version>1.3</jencks.version>
<jasper.version>4.2.20RC0</jasper.version>
<log4j.version>1.2.15</log4j.version>
<saxon.version>9.x</saxon.version>
@@ -111,9 +111,10 @@
<module>bpel-dao</module>
<module>jca-ra</module>
<module>jca-server</module>
- <module>scheduler-simple</module>
- <module>runtimes</module>
- <module>bpel-compiler</module>
+ <module>scheduler-simple</module>
+ <module>runtimes</module>
+ <module>bpel-compiler</module>
+ <module>il-common</module>
</modules>
<build>
@@ -529,6 +530,11 @@
</dependency>
<dependency>
<groupId>org.apache.geronimo.components</groupId>
+ <artifactId>geronimo-connector</artifactId>
+ <version>${geronimo.transaction.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.components</groupId>
<artifactId>geronimo-transaction</artifactId>
<version>${geronimo.transaction.version}</version>
</dependency>
@@ -780,7 +786,6 @@
</exclusion>
</exclusions>
</dependency>
-
<dependency>
<groupId>jencks</groupId>
<artifactId>xapool-without-pool</artifactId>
15 years