File tree Expand file tree Collapse file tree 8 files changed +13
-14
lines changed
src/main/kotlin/xyz/cssxsh/baidu/oauth/exception Expand file tree Collapse file tree 8 files changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ mavenCentralPublish {
9
9
singleDevGithubProject(" cssxsh" , " baidu-client" )
10
10
licenseFromGitHubProject(" AGPL-3.0" )
11
11
workingDir = System .getenv(" PUBLICATION_TEMP" )?.let { file(it).resolve(projectName) }
12
- ? : project. buildDir.resolve(" publishing-tmp" )
12
+ ? : buildDir.resolve(" publishing-tmp" )
13
13
}
14
14
15
15
dependencies {
Original file line number Diff line number Diff line change @@ -9,14 +9,14 @@ mavenCentralPublish {
9
9
singleDevGithubProject(" cssxsh" , " baidu-client" )
10
10
licenseFromGitHubProject(" AGPL-3.0" )
11
11
workingDir = System .getenv(" PUBLICATION_TEMP" )?.let { file(it).resolve(projectName) }
12
- ? : project. buildDir.resolve(" publishing-tmp" )
12
+ ? : buildDir.resolve(" publishing-tmp" )
13
13
}
14
14
15
15
dependencies {
16
- api(" io.ktor:ktor-client-okhttp:2.1.0 " )
17
- api(" io.ktor:ktor-client-encoding:2.1.0 " )
18
- api(" io.ktor:ktor-client-content-negotiation:2.1.0 " )
19
- api(" io.ktor:ktor-serialization-kotlinx-json:2.1.0 " )
16
+ api(" io.ktor:ktor-client-okhttp:2.1.2 " )
17
+ api(" io.ktor:ktor-client-encoding:2.1.2 " )
18
+ api(" io.ktor:ktor-client-content-negotiation:2.1.2 " )
19
+ api(" io.ktor:ktor-serialization-kotlinx-json:2.1.2 " )
20
20
api(" com.squareup.okhttp3:okhttp:4.10.0" )
21
21
testImplementation(kotlin(" test" ))
22
22
}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ mavenCentralPublish {
9
9
singleDevGithubProject(" cssxsh" , " baidu-client" )
10
10
licenseFromGitHubProject(" AGPL-3.0" )
11
11
workingDir = System .getenv(" PUBLICATION_TEMP" )?.let { file(it).resolve(projectName) }
12
- ? : project. buildDir.resolve(" publishing-tmp" )
12
+ ? : buildDir.resolve(" publishing-tmp" )
13
13
}
14
14
15
15
dependencies {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ mavenCentralPublish {
9
9
singleDevGithubProject(" cssxsh" , " baidu-client" )
10
10
licenseFromGitHubProject(" AGPL-3.0" )
11
11
workingDir = System .getenv(" PUBLICATION_TEMP" )?.let { file(it).resolve(projectName) }
12
- ? : project. buildDir.resolve(" publishing-tmp" )
12
+ ? : buildDir.resolve(" publishing-tmp" )
13
13
}
14
14
15
15
dependencies {
Original file line number Diff line number Diff line change @@ -2,5 +2,4 @@ package xyz.cssxsh.baidu.oauth.exception
2
2
3
3
import xyz.cssxsh.baidu.oauth.*
4
4
5
- public class NotTokenException (override val message : String? , public val client : BaiduAuthClient <* >) :
6
- IllegalStateException ()
5
+ public class NotTokenException (message : String? , public val client : BaiduAuthClient <* >) : IllegalStateException(message)
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ mavenCentralPublish {
9
9
singleDevGithubProject(" cssxsh" , " baidu-client" )
10
10
licenseFromGitHubProject(" AGPL-3.0" )
11
11
workingDir = System .getenv(" PUBLICATION_TEMP" )?.let { file(it).resolve(projectName) }
12
- ? : project. buildDir.resolve(" publishing-tmp" )
12
+ ? : buildDir.resolve(" publishing-tmp" )
13
13
}
14
14
15
15
dependencies {
Original file line number Diff line number Diff line change 1
1
allprojects {
2
2
group = " xyz.cssxsh.baidu"
3
- version = " 3.2.1 "
3
+ version = " 3.2.2 "
4
4
}
5
5
6
6
subprojects {
Original file line number Diff line number Diff line change 1
1
pluginManagement {
2
2
plugins {
3
- kotlin(" jvm" ) version " 1.7.10 "
4
- kotlin(" plugin.serialization" ) version " 1.7.10 "
3
+ kotlin(" jvm" ) version " 1.7.20 "
4
+ kotlin(" plugin.serialization" ) version " 1.7.20 "
5
5
id(" me.him188.maven-central-publish" ) version " 1.0.0-dev-3"
6
6
}
7
7
repositories {
You can’t perform that action at this time.
0 commit comments