mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-10 13:18:49 +00:00

Notes regarding Android compatibility: - The 'try-with-resources' language feature needs API level 19, so don't use it. All other language features can be used back to API level 8. - The JDK 1.7 API still isn't fully implemented, so better stick with 1.6 for now.
13 lines
294 B
Groovy
13 lines
294 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'eclipse'
|
|
|
|
dependencies {
|
|
compile project(':enabler')
|
|
compile 'org.springframework:spring-webmvc:3.1.0.RELEASE'
|
|
compile 'org.codehaus.jackson:jackson-mapper-asl:1.9.4'
|
|
}
|
|
|
|
compileJava {
|
|
sourceCompatibility '1.7'
|
|
targetCompatibility '1.7'
|
|
}
|