Skip to content

Commit 226219d

Browse files
authored
Merge pull request #7 from alyssaburlton/target-compatibility
Target compatibility of 1.8
2 parents a33dec4 + b4a250f commit 226219d

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

build.gradle

+8-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group 'com.github.alexburlton'
11-
version '3.0.0'
11+
version '3.1.0'
1212

1313
repositories {
1414
mavenCentral()
@@ -26,9 +26,15 @@ dependencies {
2626
}
2727

2828
compileKotlin {
29+
sourceCompatibility = JavaVersion.VERSION_11
30+
targetCompatibility = JavaVersion.VERSION_1_8
31+
2932
kotlinOptions.jvmTarget = "1.8"
3033
}
3134
compileTestKotlin {
35+
sourceCompatibility = JavaVersion.VERSION_1_8
36+
targetCompatibility = JavaVersion.VERSION_1_8
37+
3238
kotlinOptions.jvmTarget = "1.8"
3339
}
3440

@@ -71,7 +77,7 @@ publishing {
7177
mavenJava(MavenPublication) {
7278
groupId = 'com.github.alexburlton'
7379
artifactId = 'swing-test'
74-
version = '3.0.0'
80+
version = '3.1.0'
7581
from components.java
7682

7783
pom {

0 commit comments

Comments
 (0)