Skip to content

Commit

Permalink
add jdk 7 mins - fixes #84 (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesward authored May 18, 2020
1 parent 19423e8 commit a0ce9b7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ subprojects {
testImplementation "junit:junit:4.12"
}

java {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
}

plugins.withId("org.jetbrains.dokka") {
dokka {
outputFormat = 'javadoc'
Expand Down
1 change: 1 addition & 0 deletions compiler/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ launch4j {
mainClassName = mainClassName
outputDir = "artifacts"
jar = '../artifacts/protoc-gen-grpc-kotlin'
jreMinVersion = JavaVersion.VERSION_1_7
}

shadowJar {
Expand Down
5 changes: 3 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Wed May 13 15:09:54 MDT 2020
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit a0ce9b7

Please sign in to comment.