We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a33dec4 + b4a250f commit 226219dCopy full SHA for 226219d
build.gradle
@@ -8,7 +8,7 @@ plugins {
8
}
9
10
group 'com.github.alexburlton'
11
-version '3.0.0'
+version '3.1.0'
12
13
repositories {
14
mavenCentral()
@@ -26,9 +26,15 @@ dependencies {
26
27
28
compileKotlin {
29
+ sourceCompatibility = JavaVersion.VERSION_11
30
+ targetCompatibility = JavaVersion.VERSION_1_8
31
+
32
kotlinOptions.jvmTarget = "1.8"
33
34
compileTestKotlin {
35
+ sourceCompatibility = JavaVersion.VERSION_1_8
36
37
38
39
40
@@ -71,7 +77,7 @@ publishing {
71
77
mavenJava(MavenPublication) {
72
78
groupId = 'com.github.alexburlton'
73
79
artifactId = 'swing-test'
74
- version = '3.0.0'
80
+ version = '3.1.0'
75
81
from components.java
76
82
83
pom {
0 commit comments