How to add a dependency to Maven
Add the following openejb : openejb-jca maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>openejb</groupId>
<artifactId>openejb-jca</artifactId>
<version>2.0-G1M3</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following openejb : openejb-jca gradle dependency to your build.gradle
file:
implementation 'openejb:openejb-jca:2.0-G1M3'
Gradle Kotlin DSL: Add the following openejb : openejb-jca gradle kotlin dependency to your build.gradle.kts
file:
implementation("openejb:openejb-jca:2.0-G1M3")
How to add a dependency to SBT Scala
SBT Scala: Add the following openejb : openejb-jca sbt scala dependency to your build.sbt
file:
libraryDependencies += "openejb" % "openejb-jca" % "2.0-G1M3"