Hi devs, Jeff's first commit! Please join me to welcome Jeff as a new ODE committer!
Welcome Jeff! Tammo On 13.02.2010 06:00, [email protected] wrote: > Author: jeffyu > Date: Sat Feb 13 05:00:28 2010 > New Revision: 909745 > > URL: http://svn.apache.org/viewvc?rev=909745&view=rev > Log: > * ODE-766 fix mvn eclipse:eclipse classpath error. > > Modified: > ode/trunk/bpel-ql/pom.xml > ode/trunk/bpel-schemas/pom.xml > ode/trunk/dao-hibernate/pom.xml > ode/trunk/engine/pom.xml > ode/trunk/il-common/pom.xml > > Modified: ode/trunk/bpel-ql/pom.xml > URL: > http://svn.apache.org/viewvc/ode/trunk/bpel-ql/pom.xml?rev=909745&r1=909744&r2=909745&view=diff > ============================================================================== > --- ode/trunk/bpel-ql/pom.xml (original) > +++ ode/trunk/bpel-ql/pom.xml Sat Feb 13 05:00:28 2010 > @@ -48,6 +48,10 @@ > <plugin> > <groupId>org.codehaus.mojo</groupId> > <artifactId>javacc-maven-plugin</artifactId> > + <configuration> > + <outputDirectory>target/generated/javacc</outputDirectory> > + <interimDirectory>target/generated/jjtree</interimDirectory> > + </configuration> > <executions> > <execution> > <goals> > > Modified: ode/trunk/bpel-schemas/pom.xml > URL: > http://svn.apache.org/viewvc/ode/trunk/bpel-schemas/pom.xml?rev=909745&r1=909744&r2=909745&view=diff > ============================================================================== > --- ode/trunk/bpel-schemas/pom.xml (original) > +++ ode/trunk/bpel-schemas/pom.xml Sat Feb 13 05:00:28 2010 > @@ -50,6 +50,7 @@ > <configuration> > <schemaDirectory>src/main/xsd</schemaDirectory> > > <sourceGenerationDirectory>target/generated/xmlbeans</sourceGenerationDirectory> > + > <classGenerationDirectory>target/generated/xmlbeans</classGenerationDirectory> > <xmlConfigs> > <xmlConfig > implementation="java.io.File">src/main/xsd/dd.xsdconfig</xmlConfig> > <xmlConfig > implementation="java.io.File">src/main/xsd/pmapi.xsdconfig</xmlConfig> > > Modified: ode/trunk/dao-hibernate/pom.xml > URL: > http://svn.apache.org/viewvc/ode/trunk/dao-hibernate/pom.xml?rev=909745&r1=909744&r2=909745&view=diff > ============================================================================== > --- ode/trunk/dao-hibernate/pom.xml (original) > +++ ode/trunk/dao-hibernate/pom.xml Sat Feb 13 05:00:28 2010 > @@ -66,6 +66,11 @@ > <artifactId>junit</artifactId> > <scope>test</scope> > </dependency> > + <dependency> > + <groupId>hsqldb</groupId> > + <artifactId>hsqldb</artifactId> > + <scope>test</scope> > + </dependency> > </dependencies> > > <build> > > Modified: ode/trunk/engine/pom.xml > URL: > http://svn.apache.org/viewvc/ode/trunk/engine/pom.xml?rev=909745&r1=909744&r2=909745&view=diff > ============================================================================== > --- ode/trunk/engine/pom.xml (original) > +++ ode/trunk/engine/pom.xml Sat Feb 13 05:00:28 2010 > @@ -67,6 +67,20 @@ > <dependency> > <groupId>org.apache.ode</groupId> > <artifactId>ode-il-common</artifactId> > + <exclusions> > + <exclusion> > + <groupId>geronimo</groupId> > + <artifactId>geronimo-connector</artifactId> > + </exclusion> > + <exclusion> > + <groupId>geronimo</groupId> > + <artifactId>geronimo-transaction</artifactId> > + </exclusion> > + <exclusion> > + <groupId>org.apache.geronimo.specs</groupId> > + <artifactId>geronimo-jta_1.0.1B_spec</artifactId> > + </exclusion> > + </exclusions> > </dependency> > <dependency> > <groupId>org.apache.ode</groupId> > > Modified: ode/trunk/il-common/pom.xml > URL: > http://svn.apache.org/viewvc/ode/trunk/il-common/pom.xml?rev=909745&r1=909744&r2=909745&view=diff > ============================================================================== > --- ode/trunk/il-common/pom.xml (original) > +++ ode/trunk/il-common/pom.xml Sat Feb 13 05:00:28 2010 > @@ -66,6 +66,12 @@ > <artifactId>jencks</artifactId> > <version>${jencks.version}</version> > <classifier>all</classifier> > + <exclusions> > + <exclusion> > + <groupId>geronimo</groupId> > + <artifactId>geronimo-connector</artifactId> > + </exclusion> > + </exclusions> > </dependency> > </dependencies> > </project> > > -- Tammo van Lessen - http://www.taval.de
