28 lines
561 B
Groovy
28 lines
561 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'idea'
|
|
|
|
jar {
|
|
baseName = 'arbor'
|
|
version = '0.1.0'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url "http://repo.spring.io/release" }
|
|
}
|
|
|
|
sourceCompatibility = 1.7
|
|
targetCompatibility = 1.7
|
|
|
|
dependencies {
|
|
compile("org.springframework:spring-context:4.3.0.RELEASE")
|
|
compile("org.springframework:spring-orm:4.3.0.RELEASE")
|
|
compile("log4j:log4j:1.2.14")
|
|
testCompile("junit:junit")
|
|
testCompile("org.springframework:spring-test:4.3.0.RELEASE")
|
|
}
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '2.3'
|
|
} |