Add the javax.persistence bag to the gradle project

i am getting this error

% gradle build [ant: javac] Hello.java:2: error: javax.persistence package does not exist Hello.java:2: import javax.persistence. *;

what should i add to gradle.build to include

/opt/glassfish3/glassfish/modules/javax.persistence.jar

THH

+2


source to share


1 answer


Try adding

compile group: 'javax.persistence', name: 'persistence-api', version: '1.0'

      



to your addictions.

+3


source







All Articles