BobStore/extern/nanohttpd/core/build.gradle
Marcus Hoffmann b71173392d extern: always use java version 1.7
This is required because the fdroidclient app also explicitly sets java
version to 1.7 and the modules need to be compiled for the same version.
2017-10-20 14:48:39 +02:00

15 lines
166 B
Groovy

apply plugin: 'java'
version = '2.1.0'
sourceCompatibility = 1.7
targetCompatibility = 1.7
jar {
baseName = 'nanohttpd'
}
repositories {
mavenCentral()
}