
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.
15 lines
166 B
Groovy
15 lines
166 B
Groovy
apply plugin: 'java'
|
|
|
|
version = '2.1.0'
|
|
|
|
sourceCompatibility = 1.7
|
|
targetCompatibility = 1.7
|
|
|
|
jar {
|
|
baseName = 'nanohttpd'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|