mirror of
https://github.com/NanoHttpd/nanohttpd
synced 2026-06-08 11:57:38 +00:00
26 lines
381 B
Groovy
26 lines
381 B
Groovy
allprojects {
|
|
apply plugin: 'java'
|
|
apply plugin: 'idea'
|
|
|
|
group = 'org.nanohttpd'
|
|
version = '2.3.2-SNAPSHOT'
|
|
}
|
|
|
|
subprojects {
|
|
apply plugin: 'java'
|
|
sourceCompatibility = 1.7
|
|
targetCompatibility = 1.7
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
}
|
|
}
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = "4.4.1"
|
|
}
|