Sha256: e56d2825c20b1c21393a48314aa61a2bf4a5780373c7cabf9057a7271ea092f5
Contents?: true
Size: 1.84 KB
Versions: 1
Compression:
Stored size: 1.84 KB
Contents
repositories { mavenCentral() } apply plugin: 'java' apply plugin: 'war' apply plugin: 'jetty' apply plugin: 'eclipse' sourceCompatibility = 1.6 targetCompatibility = 1.6 version = '1.0' sourceSets { main { java { srcDir 'src/main/java' } resources { srcDir 'src/main/resources' } } test { java { srcDir 'src/test/java' } resources { srcDir 'src/test/resources' } } } sourceSets.main.output.classesDir = new File('src/main/webapp/WEB-INF/classes') jettyRun.scanIntervalSeconds=3 jettyRun.contextPath = '/' [jettyRunWar,jettyStop]*.stopPort = 8081 [jettyRunWar,jettyStop]*.stopKey = 'stopKey' dependencies { compile group: 'org.springframework', name: 'spring-webmvc', version: '4.1.3.RELEASE' compile group: 'org.springframework', name: 'spring-orm', version: '4.1.3.RELEASE' compile group: 'javax.servlet', name: 'jstl', version: '1.2' compile group: 'org.hsqldb', name: 'hsqldb', version: '2.3.2' compile group: 'org.hibernate', name: 'hibernate-entitymanager', version: '4.3.7.Final' compile group: 'org.hibernate', name: 'hibernate-c3p0', version: '4.3.7.Final' compile group: 'org.hibernate', name: 'hibernate-validator', version: '5.1.3.Final' compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.7' compile group: 'joda-time', name: 'joda-time', version: '2.5' compile group: 'org.sitemesh', name: 'sitemesh', version: '3.0.0' //Provided dependencies providedCompile group: 'javax.servlet', name: 'servlet-api', version: '2.5' providedCompile group: 'javax.servlet.jsp', name: 'jsp-api', version: '2.2' //Test dependencies testCompile group: 'junit', name: 'junit', version: '4.11' testCompile group: 'org.mockito', name: 'mockito-all', version: '1.10.8' }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
springmvc-scaffold-1.0.1 | spec/springmvc-scaffold/generators/app/templates/build.gradle |