mirror of
https://github.com/corda/corda.git
synced 2024-12-19 13:08:04 +00:00
CorDapp dependencies must now be fully qualified maven dependency names.
This commit is contained in:
parent
29e203315b
commit
69dcd45660
@ -25,7 +25,8 @@ class Node {
|
||||
*/
|
||||
protected List<String> advertisedServices = []
|
||||
/**
|
||||
* Set thThe list of cordapps to install to the plugins directory.
|
||||
* Set the list of cordapps to install to the plugins directory. Each cordapp is a fully qualified Maven
|
||||
* dependency name, eg: com.example:product-name:0.1
|
||||
*
|
||||
* @note Your app will be installed by default and does not need to be included here.
|
||||
*/
|
||||
@ -226,7 +227,7 @@ class Node {
|
||||
*/
|
||||
private Collection<File> getCordappList() {
|
||||
return project.configurations.cordapp.files {
|
||||
cordapps.contains(it.getName())
|
||||
cordapps.contains("${it.group}:${it.name}:${it.version}")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user