Skip to content

Commit 7cf2123

Browse files
committed
Temporary workaround
1 parent 1779fbc commit 7cf2123

File tree

4 files changed

+53
-0
lines changed

4 files changed

+53
-0
lines changed

atomicfu-gradle-plugin/src/test/resources/projects/empty/build.gradle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,16 @@
44

55
apply plugin: 'kotlinx-atomicfu'
66
apply plugin: 'base'
7+
8+
buildscript {
9+
repositories {
10+
maven { url "https://teamcity.jetbrains.com/guestAuth/app/rest/builds/id:1907319/artifacts/content/maven" }
11+
}
12+
13+
}
14+
15+
allprojects {
16+
repositories {
17+
maven { url "https://teamcity.jetbrains.com/guestAuth/app/rest/builds/id:1907319/artifacts/content/maven" }
18+
}
19+
}

atomicfu-gradle-plugin/src/test/resources/projects/js-simple/build.gradle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@
55
apply plugin: 'kotlinx-atomicfu'
66
apply plugin: 'kotlin2js'
77

8+
buildscript {
9+
repositories {
10+
maven { url "https://teamcity.jetbrains.com/guestAuth/app/rest/builds/id:1907319/artifacts/content/maven" }
11+
}
12+
13+
}
14+
15+
allprojects {
16+
repositories {
17+
maven { url "https://teamcity.jetbrains.com/guestAuth/app/rest/builds/id:1907319/artifacts/content/maven" }
18+
}
19+
}
20+
821
dependencies {
922
compileOnly atomicfuJs
1023
testRuntime atomicfuJs

atomicfu-gradle-plugin/src/test/resources/projects/jvm-simple/build.gradle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@
55
apply plugin: 'kotlinx-atomicfu'
66
apply plugin: 'kotlin'
77

8+
buildscript {
9+
repositories {
10+
maven { url "https://teamcity.jetbrains.com/guestAuth/app/rest/builds/id:1907319/artifacts/content/maven" }
11+
}
12+
13+
}
14+
15+
allprojects {
16+
repositories {
17+
maven { url "https://teamcity.jetbrains.com/guestAuth/app/rest/builds/id:1907319/artifacts/content/maven" }
18+
}
19+
}
20+
821
dependencies {
922
compileOnly atomicfuJvm
1023
testRuntime atomicfuJvm

atomicfu-gradle-plugin/src/test/resources/projects/mpp-simple/build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@
55
apply plugin: 'kotlinx-atomicfu'
66
apply plugin: 'kotlin-multiplatform'
77

8+
buildscript {
9+
repositories {
10+
maven { url "https://teamcity.jetbrains.com/guestAuth/app/rest/builds/id:1907319/artifacts/content/maven" }
11+
}
12+
13+
}
14+
15+
allprojects {
16+
repositories {
17+
maven { url "https://teamcity.jetbrains.com/guestAuth/app/rest/builds/id:1907319/artifacts/content/maven" }
18+
}
19+
}
20+
21+
822
kotlin {
923
targets {
1024
fromPreset(presets.jvm, 'jvm')

0 commit comments

Comments
 (0)