Skip to content
This repository was archived by the owner on Aug 16, 2019. It is now read-only.

Commit 0adb338

Browse files
committed
Corrected dependency specifications for Corda core modules.
1 parent 6627724 commit 0adb338

File tree

2 files changed

+30
-30
lines changed

2 files changed

+30
-30
lines changed

java-source/build.gradle

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
apply plugin: 'java'
2-
apply plugin: 'kotlin'
3-
apply plugin: 'idea'
4-
apply plugin: 'net.corda.plugins.publish-utils'
5-
apply plugin: 'net.corda.plugins.cordformation'
6-
apply plugin: 'net.corda.plugins.quasar-utils'
7-
apply plugin: 'maven-publish'
8-
91
repositories {
102
mavenLocal()
113
jcenter()
@@ -14,6 +6,14 @@ repositories {
146
maven { url 'https://jitpack.io' }
157
}
168

9+
apply plugin: 'java'
10+
apply plugin: 'kotlin'
11+
apply plugin: 'idea'
12+
apply plugin: 'net.corda.plugins.publish-utils'
13+
apply plugin: 'net.corda.plugins.cordformation'
14+
apply plugin: 'net.corda.plugins.quasar-utils'
15+
apply plugin: 'maven-publish'
16+
1717
sourceSets {
1818
main {
1919
resources {
@@ -32,13 +32,13 @@ dependencies {
3232
testCompile "junit:junit:$junit_version"
3333

3434
// Corda integration dependencies
35-
compile "net.corda:corda-core:$corda_release_version"
36-
compile "net.corda:corda-finance:$corda_release_version"
37-
compile "net.corda:corda-jackson:$corda_release_version"
38-
compile "net.corda:corda-rpc:$corda_release_version"
39-
compile "net.corda:corda-webserver-impl:$corda_release_version"
40-
runtime "net.corda:corda:$corda_release_version"
41-
runtime "net.corda:corda-webserver:$corda_release_version"
35+
cordaCompile "net.corda:corda-core:$corda_release_version"
36+
cordaCompile "net.corda:corda-finance:$corda_release_version"
37+
cordaCompile "net.corda:corda-jackson:$corda_release_version"
38+
cordaCompile "net.corda:corda-rpc:$corda_release_version"
39+
cordaCompile "net.corda:corda-webserver-impl:$corda_release_version"
40+
cordaRuntime "net.corda:corda:$corda_release_version"
41+
cordaRuntime "net.corda:corda-webserver:$corda_release_version"
4242

4343
testCompile "net.corda:corda-test-utils:$corda_release_version"
4444

kotlin-source/build.gradle

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
apply plugin: 'java'
2-
apply plugin: 'kotlin'
3-
apply plugin: 'idea'
4-
apply plugin: 'net.corda.plugins.publish-utils'
5-
apply plugin: 'net.corda.plugins.cordformation'
6-
apply plugin: 'net.corda.plugins.quasar-utils'
7-
apply plugin: 'maven-publish'
8-
91
repositories {
102
mavenLocal()
113
jcenter()
@@ -14,6 +6,14 @@ repositories {
146
maven { url 'https://jitpack.io' }
157
}
168

9+
apply plugin: 'java'
10+
apply plugin: 'kotlin'
11+
apply plugin: 'idea'
12+
apply plugin: 'net.corda.plugins.publish-utils'
13+
apply plugin: 'net.corda.plugins.cordformation'
14+
apply plugin: 'net.corda.plugins.quasar-utils'
15+
apply plugin: 'maven-publish'
16+
1717
sourceSets {
1818
main {
1919
resources {
@@ -33,13 +33,13 @@ dependencies {
3333
testCompile "junit:junit:$junit_version"
3434

3535
// Corda integration dependencies
36-
compile "net.corda:corda-core:$corda_release_version"
37-
compile "net.corda:corda-finance:$corda_release_version"
38-
compile "net.corda:corda-jackson:$corda_release_version"
39-
compile "net.corda:corda-rpc:$corda_release_version"
40-
compile "net.corda:corda-webserver-impl:$corda_release_version"
41-
runtime "net.corda:corda:$corda_release_version"
42-
runtime "net.corda:corda-webserver:$corda_release_version"
36+
cordaCompile "net.corda:corda-core:$corda_release_version"
37+
cordaCompile "net.corda:corda-finance:$corda_release_version"
38+
cordaCompile "net.corda:corda-jackson:$corda_release_version"
39+
cordaCompile "net.corda:corda-rpc:$corda_release_version"
40+
cordaCompile "net.corda:corda-webserver-impl:$corda_release_version"
41+
cordaRuntime "net.corda:corda:$corda_release_version"
42+
cordaRuntime "net.corda:corda-webserver:$corda_release_version"
4343

4444
testCompile "net.corda:corda-test-utils:$corda_release_version"
4545

0 commit comments

Comments
 (0)