| 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' |
| } |
| } |