blob: 275a0845a72d936df4dcba92c906951be41c329e [file] [log] [blame]
description = "Provides support for simple CRUD applications built on top of Tapestry and JPA"
dependencies {
compile project(':tapestry-core')
compile "org.apache.geronimo.specs:geronimo-jpa_2.0_spec:1.1"
compile 'javax.enterprise:cdi-api:1.2'
testCompile project(':tapestry-test')
testCompile 'org.eclipse.persistence:eclipselink:2.6.2'
testRuntime "com.h2database:h2:1.2.145"
testRuntime "org.apache.tomcat:dbcp:6.0.32"
testRuntime 'com.h2database:h2:1.3.175'
}
repositories {
maven {
name "EclipseLink"
url "http://download.eclipse.org/rt/eclipselink/maven.repo/"
}
}
test {
systemProperties "tapestry.service-reloading-enabled": "false"
}
jar {
manifest {
attributes 'Tapestry-Module-Classes': 'org.apache.tapestry5.jpa.modules.JpaModule'
}
}