Skip to content

Commit

Permalink
Migrate to the new bintray org (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
georgeherby authored Dec 8, 2020
1 parent e3a756e commit 088d435
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ Add the mobile-releases bintray repository to your top-level `build.gradle`:
```groovy
repositories {
maven {
url "https://hmrc.bintray.com/mobile-releases"
url "https://dl.bintray.com/hmrc-mobile/mobile-releases"
}
}
```
Expand Down
7 changes: 4 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import org.gradle.api.tasks.GradleBuild
buildscript{
repositories {
maven {
url = uri("https://hmrc.bintray.com/mobile-releases")
url = uri("https://dl.bintray.com/hmrc-mobile/mobile-releases")
}
}
dependencies {
classpath("uk.gov.hmrc.gradle:spotless:0.1.0")
classpath("uk.gov.hmrc.gradle:spotless:0.1.4")
}
}

Expand Down Expand Up @@ -214,11 +214,12 @@ bintray {
pkg = PackageConfig()
pkg.repo = "mobile-releases"
pkg.name = project.name
pkg.userOrg = "hmrc"
pkg.userOrg = "hmrc-mobile"
pkg.desc = project.description
pkg.setLicenses("Apache-2.0")
pkg.version.name = project.version.toString()
pkg.version.released = Date().toString()
pkg.vcsUrl = "https://github.com/hmrc/help-to-save-kalculator"
}

tasks.jacocoTestCoverageVerification {
Expand Down

0 comments on commit 088d435

Please sign in to comment.