- fix test compile setting

- code format with google formatter
This commit is contained in:
kfujita 2019-10-28 12:22:24 +09:00 committed by Tyler Benson
parent d8bd12bef8
commit b0e7e6a3f9
2 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,7 @@
ext {
minJavaVersionForTests = JavaVersion.VERSION_1_8
}
muzzle {
fail {
group = "javax.ws.rs"
@ -11,10 +15,6 @@ muzzle {
}
}
ext {
minJavaVersionForTests = JavaVersion.VERSION_1_8
}
apply from: "${rootDir}/gradle/java.gradle"
//apply plugin: 'org.unbroken-dome.test-sets'
@ -40,3 +40,8 @@ dependencies {
// latestDepTestCompile group: 'io.dropwizard', name: 'dropwizard-testing', version: '1.+'
}
test {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}

View File

@ -23,6 +23,7 @@ public class JavaInterfaces {
@Path("call")
@Override
public void call() {
// do nothing
}
abstract void actual();
@ -33,6 +34,7 @@ public class JavaInterfaces {
@Override
void actual() {
// do nothing
}
}
@ -53,7 +55,7 @@ public class JavaInterfaces {
@Override
public void actual() {
// do nothing
}
}
}