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