Skip to content

Commit 2377a09

Browse files
Merge branch 'main' into release
2 parents 9f640f3 + 2aad4f1 commit 2377a09

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,14 @@ subprojects {
5656
maven { url "$corda_artifactory_url/corda-releases" }
5757
maven { url "$corda_artifactory_url/corda-dependencies" }
5858
maven { url "https://repo.gradle.org/gradle/libs-releases" }
59+
maven {
60+
name = "GitHubPackages-onixlabs-corda-core"
61+
url = uri("https://maven.pkg.github.com/onix-labs/onixlabs-corda-core")
62+
credentials {
63+
username = project.findProperty("gpr.user") ?: System.getenv("GITHUB_USERNAME")
64+
password = project.findProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
65+
}
66+
}
5967
}
6068

6169
configurations {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name=onixlabs-corda-identity-framework
22
group=io.onixlabs
3-
version=0.1
3+
version=2.0.0
44

55
kotlin.incremental=false
66
kotlin.code.style=official

0 commit comments

Comments
 (0)