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.
1 parent 2f6be19 commit 12b5243Copy full SHA for 12b5243
fabric-chaincode-shim/build.gradle
@@ -113,7 +113,7 @@ task licenseCheck {
113
def missing = new LinkedList<File>()
114
sourceSets.forEach {
115
sourceSet ->
116
- sourceSet.allSource.findAll { !it.path.contains("build") && !it.path.contains("test/resources")}.each {
+ sourceSet.allSource.findAll { !it.path.contains("build") && !(it.path.contains("test") && it.path.contains("resources"))}.each {
117
file ->
118
if (!file.name.contains("json")){
119
BufferedReader r = new BufferedReader(new FileReader(file))
0 commit comments