blob: e72805b6a2dc5bcf94558a3f5cfbc08e1e4b22b9 [file] [log] [blame]
description = "Provides support for simple CRUD applications built on top of Tapestry and JPA"
dependencies {
implementation project(':tapestry-core')
implementation "org.apache.geronimo.specs:geronimo-jpa_2.0_spec:1.1"
implementation 'javax.enterprise:cdi-api:1.2'
testImplementation project(':tapestry-test')
testImplementation 'org.eclipse.persistence:eclipselink:2.7.7'
testRuntimeOnly "com.h2database:h2:1.2.145"
testRuntimeOnly "org.apache.tomcat:dbcp:6.0.32"
testRuntimeOnly 'com.h2database:h2:1.3.175'
}
repositories {
maven {
name "EclipseLink"
url "https://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'
}
}
task runTestApp6(type:JavaExec) {
description 'Start app6 integration test app, useful when debugging failing integration tests'
main = 'org.apache.tapestry5.test.JettyRunner'
args "-d", "src/test/app6", "-p", "8080"
classpath += project.sourceSets.test.runtimeClasspath
}