MVN

jta : jta

Maven & Gradle

Nov 18, 2010
29 usages

Java Transaction API · The javax.transaction package. JTA specifies standard Java interfaces between a transaction manager and the parties involved in a distributed transaction system: the resource manager, the application server, and the transactional applications.

<dependency>
    <groupId>jta</groupId>
    <artifactId>jta</artifactId>
    <version>1.0.1b</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of jta : jta to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.1b

All Versions

Choose a version of jta : jta to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
jta-1.0.1b

How to add a dependency to Maven

Add the following jta : jta maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>jta</groupId>
    <artifactId>jta</artifactId>
    <version>1.0.1b</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following jta : jta gradle dependency to your build.gradle file:

implementation 'jta:jta:1.0.1b'

Gradle Kotlin DSL: Add the following jta : jta gradle kotlin dependency to your build.gradle.kts file:

implementation("jta:jta:1.0.1b")

How to add a dependency to SBT Scala

SBT Scala: Add the following jta : jta sbt scala dependency to your build.sbt file:

libraryDependencies += "jta" % "jta" % "1.0.1b"

Advertisement