File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ buildscript {
3434 repositories {
3535 mavenLocal()
3636 mavenCentral()
37- jcenter()
3837 maven { url " $corda_artifactory_url /corda-releases" }
3938 maven { url " $corda_artifactory_url /corda-dependencies" }
4039 }
@@ -52,11 +51,26 @@ subprojects {
5251 repositories {
5352 mavenLocal()
5453 mavenCentral()
55- jcenter()
5654 maven { url " https://jitpack.io" }
5755 maven { url " $corda_artifactory_url /corda-releases" }
5856 maven { url " $corda_artifactory_url /corda-dependencies" }
5957 maven { url " https://repo.gradle.org/gradle/libs-releases" }
58+ maven {
59+ name = " GitHubPackages-onixlabs-corda-core"
60+ url = uri(" https://maven.pkg.github.com/onix-labs/onixlabs-corda-core" )
61+ credentials {
62+ username = project. findProperty(" gpr.user" ) ?: System . getenv(" GITHUB_USERNAME" )
63+ password = project. findProperty(" gpr.key" ) ?: System . getenv(" GITHUB_TOKEN" )
64+ }
65+ }
66+ maven {
67+ name = " GitHubPackages-onixlabs-corda-identity-framework"
68+ url = uri(" https://maven.pkg.github.com/onix-labs/onixlabs-corda-identity-framework" )
69+ credentials {
70+ username = project. findProperty(" gpr.user" ) ?: System . getenv(" GITHUB_USERNAME" )
71+ password = project. findProperty(" gpr.key" ) ?: System . getenv(" GITHUB_TOKEN" )
72+ }
73+ }
6074 }
6175
6276 configurations {
Original file line number Diff line number Diff line change 11name =onixlabs-corda-bnms
22group =io.onixlabs
3+ version =2.0.0
34
45kotlin.incremental =false
56kotlin.code.style =official
You can’t perform that action at this time.
0 commit comments