Skip to content

Commit edc48c3

Browse files
marcphilippsbrannen
authored andcommitted
Fix snapshot dependencies in platform-tooling-support-tests
1 parent 2b26b6b commit edc48c3

File tree

4 files changed

+13
-0
lines changed

4 files changed

+13
-0
lines changed

platform-tooling-support-tests/projects/gradle-kotlin-extensions/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ plugins {
77
repositories {
88
mavenLocal()
99
mavenCentral()
10+
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots") }
1011
}
1112

1213
// don't use `build` as target to prevent Jenkins picking up

platform-tooling-support-tests/projects/gradle-missing-engine/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ platformVersion=${platformVersion}
2828
repositories {
2929
mavenLocal()
3030
mavenCentral()
31+
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
3132
}
3233

3334
dependencies {

platform-tooling-support-tests/projects/gradle-starter/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ platformVersion=${platformVersion}
2121
repositories {
2222
mavenLocal()
2323
mavenCentral()
24+
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
2425
}
2526

2627
dependencies {

platform-tooling-support-tests/projects/maven-starter/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,14 @@
5252
</plugins>
5353
</build>
5454

55+
<repositories>
56+
<repository>
57+
<id>sonatype-snapshots</id>
58+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
59+
<snapshots>
60+
<enabled>true</enabled>
61+
</snapshots>
62+
</repository>
63+
</repositories>
64+
5565
</project>

0 commit comments

Comments
 (0)