Skip to content

Commit 0552e39

Browse files
committed
update gradle
1 parent c67580e commit 0552e39

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

buildSrc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ compileTestKotlin {
2121

2222
build {
2323
dependsOn ':compiler-plugin:kotlin-plugin:install'
24-
dependsOn ':compiler-plugin:kotlin-native-plugin:install'
24+
dependsOn ':compiler-plugin:kotlin-native-plugin:publishToMavenLocal'
2525

2626
dependsOn ':compiler-plugin:gradle-plugin:install'
2727
}

buildSrc/compiler-plugin/kotlin-native-plugin/build.gradle

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
plugins {
22
id("maven")
3+
id("maven-publish")
4+
35
id "org.jetbrains.kotlin.jvm"
46
id "org.jetbrains.kotlin.kapt"
57

@@ -31,3 +33,18 @@ compileKotlin {
3133
compileTestKotlin {
3234
kotlinOptions.jvmTarget = "1.8"
3335
}
36+
37+
publishing {
38+
publications {
39+
}
40+
repositories {
41+
maven {
42+
name = "MyRepo" // optional target repository name
43+
url = "http://my.org.server/repo/url"
44+
credentials {
45+
username = 'alice'
46+
password = 'my-password'
47+
}
48+
}
49+
}
50+
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-bin.zip

0 commit comments

Comments
 (0)