Weird problem with eclipse build - was it just the .classpath entries not being exported?

This commit is contained in:
dsyer
2007-11-07 08:04:07 +00:00
parent de91cbe728
commit 82f753e18f
7 changed files with 13 additions and 18 deletions

View File

@@ -5,6 +5,6 @@
<classpathentry kind="src" path="src/main/resources"/>
<classpathentry kind="src" path="src/test/resources"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry exported="true" kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>batch-core</name>
<name>core</name>
<comment>Simple container application for batch processing, using the
Spring Batch Framework to express a domain of Jobs, Steps,
Chunks, etc.</comment>

View File

@@ -5,6 +5,6 @@
<classpathentry kind="src" output="bin/test-classes" path="src/test/resources"/>
<classpathentry kind="src" path="src/main/resources"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry exported="true" kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>batch-execution</name>
<name>execution</name>
<comment>Execution tools and implementations of Spring Batch Core interfaces</comment>
<projects>
</projects>
@@ -11,19 +11,19 @@
</arguments>
</buildCommand>
<buildCommand>
<name>org.maven.ide.eclipse.maven2Builder</name>
<name>org.springframework.ide.eclipse.core.springbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.springframework.ide.eclipse.core.springbuilder</name>
<name>org.maven.ide.eclipse.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.springframework.ide.eclipse.core.springnature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.maven.ide.eclipse.maven2Nature</nature>
<nature>org.springframework.ide.eclipse.core.springnature</nature>
</natures>
</projectDescription>

View File

@@ -3,7 +3,7 @@
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<bean id="dataSource" class="test.jdbc.datasource.InitializingDataSourceFactoryBean">
<property name="dataSource" ref="derby" />
<property name="dataSource" ref="hsql" />
<property name="initScript" value="org/springframework/batch/jms/init.sql" />
<property name="destroyScript" value="org/springframework/batch/jms/destroy.sql" />
</bean>
@@ -29,11 +29,11 @@
</list>
</property>
<property name="persistenceAdapter">
<!-- bean class="org.apache.activemq.store.memory.MemoryPersistenceAdapter"/-->
<bean class="org.apache.activemq.store.jdbc.JDBCPersistenceAdapter">
<bean class="org.apache.activemq.store.memory.MemoryPersistenceAdapter"/>
<!-- bean class="org.apache.activemq.store.jdbc.JDBCPersistenceAdapter">
<property name="dataSource" ref="dataSource"/>
<property name="createTablesOnStartup" value="true" />
</bean>
</bean-->
</property>
</bean>

View File

@@ -61,7 +61,6 @@
<dependency>
<groupId>aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.5.3</version>
<scope>test</scope>
</dependency>
<dependency>

View File

@@ -49,7 +49,7 @@
<bean
class="org.springframework.batch.item.provider.InputSourceItemProvider">
<property name="inputSource"
ref="tradeSqlInputSOurce" />
ref="tradeSqlInputSource" />
</bean>
</property>
<property name="itemProcessor">
@@ -82,7 +82,7 @@
</property>
</bean>
<bean id="tradeSqlInputSOurce"
<bean id="tradeSqlInputSource"
class="org.springframework.batch.io.cursor.JdbcCursorInputSource"
scope="step">
<aop:scoped-proxy />
@@ -120,8 +120,4 @@
value="target/test-outputs/20070122.testStream.CustomerReportStep.TEMP.txt" />
</bean>
<!-- register the step scope with the application context -->
<bean class="org.springframework.batch.execution.scope.StepScope" />
</beans>