This repository has been archived on 2018-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
arbor/build.gradle

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