Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sormuras committed Jul 12, 2020
1 parent a1fdce3 commit 9305616
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ val compileModule by tasks.registering(JavaCompile::class) {
source = fileTree(moduleSourceDir)
destinationDir = moduleOutputDir
sourceCompatibility = "9"
targetCompatibility = "11"
targetCompatibility = "9"
classpath = files()
options.compilerArgs.addAll(listOf(
// "-verbose",
Expand Down
3 changes: 3 additions & 0 deletions junit-platform-jfr/junit-platform-jfr.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ javaLibrary {
}

tasks {
compileModule {
targetCompatibility = "11"
}
verifyOSGi {
enabled=false
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* Java Flight Recorder support package.
*/

package org.junit.platform.jfr;
2 changes: 0 additions & 2 deletions junit-platform-launcher/junit-platform-launcher.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
plugins {
`java-library-conventions`
`java-multi-release-sources`
`java-repackage-jars`
`java-test-fixtures`
}

Expand Down
2 changes: 0 additions & 2 deletions src/checkstyle/suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@
files="junit-platform-commons[\\/]src[\\/]main[\\/]java9[\\/]org[\\/]junit[\\/]platform[\\/]commons[\\/]util[\\/]*"/>
<suppress checks="JavadocPackage"
files="junit-platform-console[\\/]src[\\/]main[\\/]java9[\\/]org[\\/]junit[\\/]platform[\\/]console[\\/]*"/>
<suppress checks="JavadocPackage"
files="junit-platform-launcher[\\/]src[\\/]main[\\/]java9[\\/]org[\\/]junit[\\/]platform[\\/]launcher[\\/]listeners[\\/]*"/>
</suppressions>

0 comments on commit 9305616

Please sign in to comment.