Skip to content

Commit

Permalink
Add nexus config
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjameshamilton committed Oct 5, 2022
1 parent 5bcb2a3 commit 44ca8af
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,23 @@ plugins {
id 'io.github.gradle-nexus.publish-plugin' version '1.1.0'
}

allprojects {
group = 'com.guardsquare'
}

subprojects {
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
mavenLocal()
}
}

nexusPublishing {
repositories {
sonatype {
username = findProperty('PROGUARD_STAGING_USERNAME')
password = findProperty('PROGUARD_STAGING_PASSWORD')
}
}
}

0 comments on commit 44ca8af

Please sign in to comment.