File tree Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,11 @@ fun Project.additionalConfiguration() {
13
13
platforms.forEach { platform ->
14
14
val gradleBuild = knownBuilds.buildOn(platform).steps.items.single() as GradleBuildStep
15
15
gradleBuild.tasks + = " " + " fastBenchmark"
16
+
17
+ knownBuilds.deployOn(platform).params {
18
+ param(" system.space.user" , " abduqodiri.qurbonzoda" )
19
+ password(" system.space.token" , " credentialsJSON:7aa03210-1f86-452e-b786-920f8a321b7d" )
20
+ }
16
21
}
17
22
18
23
deployPlugin()
Original file line number Diff line number Diff line change @@ -116,3 +116,18 @@ task createClasspathManifest {
116
116
file(" $outputDir /plugin-classpath.txt" ). text = (sourceSets. main. runtimeClasspath + configurations. testPluginClasspath). join(" \n " )
117
117
}
118
118
}
119
+
120
+
121
+ // publish to Space repository
122
+ publishing {
123
+ repositories {
124
+ maven {
125
+ name = " space"
126
+ url = " https://maven.pkg.jetbrains.space/kotlin/p/kotlinx/dev"
127
+ credentials {
128
+ username = project. findProperty(" space.user" )
129
+ password = project. findProperty(" space.token" )
130
+ }
131
+ }
132
+ }
133
+ }
Original file line number Diff line number Diff line change @@ -83,3 +83,17 @@ kotlin {
83
83
}
84
84
}
85
85
86
+
87
+ // publish to Space repository
88
+ publishing {
89
+ repositories {
90
+ maven {
91
+ name = " space"
92
+ url = " https://maven.pkg.jetbrains.space/kotlin/p/kotlinx/dev"
93
+ credentials {
94
+ username = project. findProperty(" space.user" )
95
+ password = project. findProperty(" space.token" )
96
+ }
97
+ }
98
+ }
99
+ }
You can’t perform that action at this time.
0 commit comments