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 5520053 + 12b5243 commit 4efdafeCopy full SHA for 4efdafe
fabric-chaincode-shim/build.gradle
@@ -119,7 +119,7 @@ task licenseCheck {
119
def missing = new LinkedList<File>()
120
sourceSets.forEach {
121
sourceSet ->
122
- 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 {
123
file ->
124
if (!file.name.contains("json")){
125
BufferedReader r = new BufferedReader(new FileReader(file))
0 commit comments