Skip to content

Commit

Permalink
build(snapshots): enable snapshot repository (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores authored Sep 12, 2024
1 parent b5d9f63 commit fe2e6c8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
13 changes: 13 additions & 0 deletions quarkus-agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,19 @@
<dependency-plugin.version>3.3.0</dependency-plugin.version>
<io.cryostat.agent.version>PLACEHOLDER</io.cryostat.agent.version>
</properties>
<repositories>
<repository>
<id>s01.oss.sonatype.org-snapshot</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<dependency>
Expand Down
3 changes: 3 additions & 0 deletions vertx-fib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ plugins {
repositories {
mavenLocal()
mavenCentral()
maven {
url 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
}
}

dependencies {
Expand Down

0 comments on commit fe2e6c8

Please sign in to comment.