Skip to content

Commit

Permalink
Decoupling Snapshots for my v2.6.0
Browse files Browse the repository at this point in the history
Signed-off-by: Varun Jain <[email protected]>
  • Loading branch information
vibrantvarun committed Feb 21, 2023
1 parent 277c98a commit f880800
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,6 @@ allprojects {
url = "${rootProject.buildDir}/local-staging-repo"
}
}
repositories {
maven {
name = "Snapshots" // optional target repository name
url = "https://aws.oss.sonatype.org/content/repositories/snapshots"
credentials {
username "$System.env.SONATYPE_USERNAME"
password "$System.env.SONATYPE_PASSWORD"
}
}
}
publications {
// add license information to generated poms
all {
Expand Down Expand Up @@ -138,6 +128,16 @@ publishing {
}
}
}
repositories {
maven {
name = "Snapshots" // optional target repository name
url = "https://aws.oss.sonatype.org/content/repositories/snapshots"
credentials {
username "$System.env.SONATYPE_USERNAME"
password "$System.env.SONATYPE_PASSWORD"
}
}
}
}

repositories {
Expand Down

0 comments on commit f880800

Please sign in to comment.