| Commit in servicemix/jencks on MAIN | |||
| .cvsignore | +1 | added 1.1 | |
| .project | +20 | added 1.1 | |
| .classpath | +60 | added 1.1 | |
| project.xml | +9 | 1.1 -> 1.2 | |
| project.properties | +2 | 1.1 -> 1.2 | |
| src/test/resources/org/servicemix/jencks/jencks.xml | +3 | -3 | 1.1 -> 1.2 |
| +95 | -3 | ||
Getting the Jencks test to pass.
servicemix/jencks
.cvsignore added at 1.1
diff -N .cvsignore --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ .cvsignore 15 Aug 2005 15:35:53 -0000 1.1 @@ -0,0 +1 @@
+target
servicemix/jencks
.project added at 1.1
diff -N .project --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ .project 15 Aug 2005 15:35:53 -0000 1.1 @@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?> + +<projectDescription> + <name>servicemix-jencks</name> + <comment>The code consists of example POJOs which should be usable inside a JMS container. i.e. there are no API dependencies on the container whatnosever. Its pretty easy to write useful Message POJOs without any API dependencies whatsoever. There's also a couple of helper classes you can use to provide some JMS helper methods.</comment> + <projects> + <project>activemq-core</project> + <project>activemq-ra</project> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.jdt.core.javabuilder</name> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.jdt.core.javanature</nature> + </natures> +</projectDescription>
\ No newline at end of file
servicemix/jencks
.classpath added at 1.1
diff -N .classpath --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ .classpath 15 Aug 2005 15:35:53 -0000 1.1 @@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="UTF-8"?> + +<classpath> + <classpathentry excluding="" kind="src" path="src/main/java"> + </classpathentry> + <classpathentry kind="src" path="src/test/resources"> + </classpathentry> + <classpathentry output="target/test-classes" kind="src" path="src/test/java"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/junit/jars/junit-3.8.1.jar"> + </classpathentry> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/geronimo-spec/jars/geronimo-spec-j2ee-connector-1.5-rc4.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/geronimo-spec/jars/geronimo-spec-jms-1.1-rc4.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/geronimo-spec/jars/geronimo-spec-jta-1.0.1B-rc4.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/geronimo-spec/jars/geronimo-spec-j2ee-management-1.0-rc4.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/geronimo-spec/jars/geronimo-spec-servlet-2.4-rc4.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/geronimo/jars/geronimo-kernel-1.0-M4.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/geronimo/jars/geronimo-connector-1.0-M4.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/geronimo/jars/geronimo-transaction-1.0-M4.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/geronimo/jars/geronimo-security-1.0-M4.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/geronimo/jars/geronimo-j2ee-1.0-M4.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/concurrent/jars/concurrent-1.3.4.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/commons-logging/jars/commons-logging-1.0.3.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/springframework/jars/spring-1.2.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/aopalliance/jars/aopalliance-1.0.jar"> + </classpathentry> + <classpathentry kind="src" path="/activemq-core"> + </classpathentry> + <classpathentry kind="src" path="/activemq-ra"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/activeio/jars/activeio-1.1.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/commons-pool/jars/commons-pool-1.2.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/commons-collections/jars/commons-collections-3.1.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/axion/jars/axion-1.0-M3-dev.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/commons-primitives/jars/commons-primitives-1.0.jar"> + </classpathentry> + <classpathentry kind="var" path="MAVEN_REPO/regexp/jars/regexp-1.3.jar"> + </classpathentry> + <classpathentry kind="output" path="target/classes"> + </classpathentry> +</classpath>
\ No newline at end of file
servicemix/jencks
diff -u -r1.1 -r1.2 --- project.xml 4 Aug 2005 03:03:14 -0000 1.1 +++ project.xml 15 Aug 2005 15:35:53 -0000 1.2 @@ -130,6 +130,15 @@
</properties>
</dependency>
+ <dependency> + <groupId>geronimo</groupId> + <artifactId>geronimo-j2ee</artifactId> + <version>1.0-M4</version> + <properties> + <war.bundle>false</war.bundle> + <!-- <eclipse.dependency>true</eclipse.dependency> --> + </properties> + </dependency>
<dependency>
<groupId>concurrent</groupId>
servicemix/jencks
diff -u -r1.1 -r1.2 --- project.properties 4 Aug 2005 03:03:14 -0000 1.1 +++ project.properties 15 Aug 2005 15:35:53 -0000 1.2 @@ -58,3 +58,5 @@
maven.jar.oraclexsql = ${basedir}/lib/oracle/oraclexsql.jar
maven.jar.xmlparserv2 = ${basedir}/lib/oracle/xmlparserv2.jar
maven.jar.xsu12 = ${basedir}/lib/oracle/xsu12.jar
+ +maven.eclipse.classpath.include=src/test/resources
servicemix/jencks/src/test/resources/org/servicemix/jencks
diff -u -r1.1 -r1.2 --- jencks.xml 15 Aug 2005 14:24:25 -0000 1.1 +++ jencks.xml 15 Aug 2005 15:35:53 -0000 1.2 @@ -76,7 +76,7 @@
<property name="transactionManager"><ref local="transactionManagerImpl"/></property> </bean>
- <bean id="transactionContextInitializer" class="org.servicemix.jencks.factory.interceptor.TransactionContextInitializer">
+ <bean id="transactionContextInitializer" class="org.servicemix.jencks.interceptor.TransactionContextInitializer">
<property name="associator"><ref local="connectionTracker"/></property> </bean>
@@ -228,7 +228,7 @@
<property name="jms"><ref local="jmsDao"/></property> </bean>
- <bean id="testService" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
+ <bean id="testService" class="org.springframework.transaction.factory.interceptor.TransactionProxyFactoryBean">
<property name="transactionManager"> <ref bean="jtaTransactionManager" /> </property>
@@ -243,7 +243,7 @@
</bean> -->
- <!--bean id="contextIntercepteur" class="org.servicemix.jencks.factory.interceptor.TransactionContextInterceptor">
+ <!--bean id="contextIntercepteur" class="org.servicemix.jencks.interceptor.TransactionContextInterceptor">
<property name="associator"><ref local="connectionTracker"/></property> </bean>
