1 Reply Latest reply on Aug 4, 2011 11:38 AM by tomjenkinson

    JBossTs Maven dependency

    sks_kale

      Hi,

       

      Where can I get Maven Dependency for JBossTs ?

        • 1. Re: JBossTs Maven dependency
          tomjenkinson

          Hi Sagar,

           

          For 5.0, please take a look at the following quickstart which demonstrates the use of JTA from Maven.

          http://anonsvn.jboss.org/repos/labs/labs/jbosstm/trunk/ArjunaJTA/quickstarts/maven/

           

          To convert the quickstart to use the current AS7 branch, change:

           

          <dependency>

                <groupId>org.jboss.narayana.jta</groupId>

                <artifactId>narayana-jta</artifactId>

                <version>5.0.0.M1-SNAPSHOT</version>

          </dependency>

           

          To:

           

          <dependency>

                <groupId>org.jboss.jbossts</groupId>

                <artifactId>jbossjta</artifactId>

                <version>4.15.1.Final</version>

                <scope>provided</scope>

                <exclusions>

                   <exclusion>

                      <groupId>org.jboss.logging</groupId>

                      <artifactId>jboss-logging-spi</artifactId>

                   </exclusion>

                </exclusions>

          </dependency>

           

          Hope this helps,

           

          Tom