Skip to content

Commit

Permalink
Fix snapshot dependencies in platform-tooling-support-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
marcphilipp committed Sep 9, 2018
1 parent 44de257 commit 996f141
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ plugins {
repositories {
mavenLocal()
mavenCentral()
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots") }
}

// don't use `build` as target to prevent Jenkins picking up
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ platformVersion=${platformVersion}
repositories {
mavenLocal()
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ platformVersion=${platformVersion}
repositories {
mavenLocal()
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}

dependencies {
Expand Down
10 changes: 10 additions & 0 deletions platform-tooling-support-tests/projects/maven-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,14 @@
</plugins>
</build>

<repositories>
<repository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

</project>

0 comments on commit 996f141

Please sign in to comment.