Skip to content

Commit a0ce9b7

Browse files
authored
add jdk 7 mins - fixes #84 (#96)
1 parent 19423e8 commit a0ce9b7

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ subprojects {
2525
testImplementation "junit:junit:4.12"
2626
}
2727

28+
java {
29+
sourceCompatibility = JavaVersion.VERSION_1_7
30+
targetCompatibility = JavaVersion.VERSION_1_7
31+
}
32+
2833
plugins.withId("org.jetbrains.dokka") {
2934
dokka {
3035
outputFormat = 'javadoc'

compiler/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ launch4j {
133133
mainClassName = mainClassName
134134
outputDir = "artifacts"
135135
jar = '../artifacts/protoc-gen-grpc-kotlin'
136+
jreMinVersion = JavaVersion.VERSION_1_7
136137
}
137138

138139
shadowJar {
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
#Wed May 13 15:09:54 MDT 2020
2+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
13
distributionBase=GRADLE_USER_HOME
24
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-bin.zip
4-
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6+
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)