Skip to content

Commit

Permalink
Merge branch 'kotlin-1.6.10' into kotlin-1.6.10-release
Browse files Browse the repository at this point in the history
0.1.2-kotlin-1.6.10 release
  • Loading branch information
ShreckYe committed May 25, 2022
2 parents 76cffce + 846bc2b commit 111a5be
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/plugin-conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {
implementation(kotlin("gradle-plugin", "1.6.10"))
}

version = "0.1.1-kotlin-1.6.10"
version = "0.1.2-kotlin-1.6.10"

pluginBundle {
website = "https://github.com/huanshankeji/gradle-plugin"
Expand Down
2 changes: 1 addition & 1 deletion common-gradle-dependencies/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ plugins {
id("build-dependency-library-conventions")
}

version = "0.1.0-20220522-dev"
version = "0.1.0-20220522-kotlin-1.6.10-dev"
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,3 @@ plugins {
}

group = "com.huanshankeji"

publishing {
repositories {
mavenCentral()
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@ plugins {
id("com.huanshankeji.default-maven-publish")
}

val javadocJar by tasks.registering(Jar::class) {
archiveClassifier.set("javadoc")
}

publishing {
publications {
withType<MavenPublication> {
artifactId = "$defaultPrefixForPublishing-$artifactId"
artifact(javadocJar)
}
}
}

0 comments on commit 111a5be

Please sign in to comment.