2 Replies Latest reply on Mar 11, 2011 4:38 AM by mircea.markus

    JBoss Transactions to use with Infinispan?

    seto

      I'm developing a standalone application with Infinispan. From the documentation, I checked that I should use JBossStandaloneJTAManagerLookup. Yet, I don't know which version should I use. And where's the maven artifact for the JBoss Transactions. Cuz my project dependencies are managed by Maven.

       

      Appreciative of your replies.

        • 1. JBoss Transactions to use with Infinispan?
          seto

          No one replies? No one use the transactions in standalone?

          • 2. JBoss Transactions to use with Infinispan?
            mircea.markus

            This is what we use by default:

             

            Versions:

                  <version.jbossjta>4.9.0.GA</version.jbossjta>

                  <version.jbossjts>4.9.0.GA</version.jbossjts>

                  <version.jbossts-common>4.6.1.GA</version.jbossts-common>

             

            Dependecies:

                  <dependency>

                     <groupId>jboss.jbossts</groupId>

                     <artifactId>jbossjta</artifactId>

                     <version>${version.jbossjta}</version>

                     <scope>test</scope>

                  </dependency>

                  <dependency>

                     <groupId>jboss.jbossts</groupId>

                     <artifactId>jbossjts</artifactId>

                     <version>${version.jbossjts}</version>

                     <scope>test</scope>

                  </dependency>

                  <dependency>

                     <groupId>jboss.jbossts</groupId>

                     <artifactId>jbossts-common</artifactId>

                     <version>${version.jbossts-common}</version>

                     <scope>test</scope>

                  </dependency>