We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9f640f3 + 2aad4f1 commit 2377a09Copy full SHA for 2377a09
build.gradle
@@ -56,6 +56,14 @@ subprojects {
56
maven { url "$corda_artifactory_url/corda-releases" }
57
maven { url "$corda_artifactory_url/corda-dependencies" }
58
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
67
}
68
69
configurations {
gradle.properties
@@ -1,6 +1,6 @@
1
name=onixlabs-corda-identity-framework
2
group=io.onixlabs
3
-version=0.1
+version=2.0.0
4
5
kotlin.incremental=false
6
kotlin.code.style=official
0 commit comments