File tree 3 files changed +10
-25
lines changed
3 files changed +10
-25
lines changed Original file line number Diff line number Diff line change @@ -2,49 +2,34 @@ apply plugin: "com.github.ben-manes.versions"
2
2
3
3
buildscript {
4
4
ext {
5
- kotlin_version = ' 1.5.10 '
5
+ kotlin_version = ' 1.9.20 '
6
6
}
7
7
8
8
repositories {
9
9
jcenter()
10
+ gradlePluginPortal()
10
11
}
11
12
12
13
dependencies {
13
14
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
14
- classpath ' com.github.ben-manes:gradle-versions-plugin:0.33 .0'
15
+ classpath ' com.github.ben-manes:gradle-versions-plugin:0.50 .0'
15
16
}
16
17
}
17
18
18
19
allprojects {
20
+
19
21
repositories {
20
22
jcenter()
21
23
maven { url ' https://jitpack.io' }
22
24
}
23
25
24
-
25
26
apply plugin : " kotlin"
26
27
apply plugin : " jacoco"
27
- apply plugin : " maven"
28
+ apply plugin : " maven-publish "
28
29
29
- dependencies {
30
- compile " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
31
-
32
- testCompile ' org.assertj:assertj-core:3.14.0'
33
- testCompile ' junit:junit:4.12'
30
+ java {
31
+ withJavadocJar()
32
+ withSourcesJar()
34
33
}
35
34
36
- task sourcesJar(type : Jar , dependsOn : classes) {
37
- classifier = ' sources'
38
- from sourceSets. main. allSource
39
- }
40
-
41
- task javadocJar(type : Jar , dependsOn : javadoc) {
42
- classifier = ' javadoc'
43
- from javadoc. destinationDir
44
- }
45
-
46
- artifacts {
47
- archives sourcesJar
48
- archives javadocJar
49
- }
50
35
}
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.6.1-all .zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.5-bin .zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change 1
1
dependencies {
2
- compile ' org.threeten:threetenbp:1.5.1 '
2
+ implementation ' org.threeten:threetenbp:1.4.4 '
3
3
}
4
4
5
5
You can’t perform that action at this time.
0 commit comments