Skip to content

Commit 8755106

Browse files
committed
removing ganache task, and local constants.properties
1 parent c011e9f commit 8755106

File tree

3 files changed

+2
-29
lines changed

3 files changed

+2
-29
lines changed

Advanced/secretsanta-cordapp/build.gradle

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript { //properties that you need to build the project
22
Properties constants = new Properties()
3-
file("$projectDir/./constants.properties").withInputStream { constants.load(it) }
3+
file("$projectDir/../constants.properties").withInputStream { constants.load(it) }
44

55
ext {
66
corda_release_group = constants.getProperty("cordaReleaseGroup")
@@ -108,21 +108,6 @@ dependencies {
108108
cordaCompile "org.apache.logging.log4j:log4j-slf4j-impl:${log4j_version}"
109109
}
110110

111-
//Task to build the jar for ganache.
112-
task ganache {
113-
subprojects {
114-
if (it.project.name != "clients") {
115-
dependsOn jar
116-
doLast {
117-
copy {
118-
from "${buildDir}/libs"
119-
into "${rootDir}/build/libs"
120-
}
121-
}
122-
}
123-
}
124-
}
125-
126111
//Task to deploy the nodes in order to bootstrap a network
127112
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar']) {
128113

Advanced/secretsanta-cordapp/constants.properties

Lines changed: 0 additions & 12 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
name=Test
1+
name=Secret Santa
22
group=com.secretsanta
33
version=0.1

0 commit comments

Comments
 (0)