File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -4,15 +4,15 @@ plugins {
4
4
java
5
5
maven
6
6
7
- kotlin(" jvm" ) version " 1.4.31 "
7
+ kotlin(" jvm" ) version " 1.6.10 "
8
8
9
9
`maven- publish`
10
10
11
11
jacoco
12
12
}
13
13
14
14
group = " com.kbapps.ephemeris"
15
- version = " 2.0.0 "
15
+ version = " 2.0.1 "
16
16
17
17
repositories {
18
18
mavenCentral()
@@ -38,6 +38,7 @@ tasks.jacocoTestReport {
38
38
html.destination = file(" $buildDir /reports/coverage" )
39
39
}
40
40
}
41
+
41
42
tasks.jacocoTestCoverageVerification {
42
43
violationRules {
43
44
rule {
@@ -70,6 +71,19 @@ tasks {
70
71
configure<JavaPluginConvention > {
71
72
sourceCompatibility = JavaVersion .VERSION_1_8
72
73
}
74
+
73
75
tasks.withType<KotlinCompile > {
74
76
kotlinOptions.jvmTarget = " 1.8"
77
+ }
78
+
79
+ publishing {
80
+ publications {
81
+ create<MavenPublication >(" maven" ) {
82
+ groupId = " com.github.kb0"
83
+ artifactId = " kotlin-ephemeris"
84
+ version = " 2.0.1"
85
+
86
+ from(components[" java" ])
87
+ }
88
+ }
75
89
}
Original file line number Diff line number Diff line change 2
2
zipStoreBase =GRADLE_USER_HOME
3
3
zipStorePath =wrapper/dists
4
4
distributionBase =GRADLE_USER_HOME
5
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.6 -all.zip
5
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.9 -all.zip
You can’t perform that action at this time.
0 commit comments