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 5aefbb8 commit b31cd3dCopy full SHA for b31cd3d
src/main/groovy/com/monits/gradle/sca/ClasspathAware.groovy
@@ -104,8 +104,9 @@ trait ClasspathAware {
104
} else {
105
// as of 3.2.0+ the mockableAndroidJar task is no more… attempt to access directly
106
mockableAndroidJar += project.files(
107
- AndroidHelper.sdkDir + "/platforms/${project['android']['compileSdkVersion']}/android.jar",)
108
- //System.getenv('JAVA_HOME') + '/jre/lib/rt.jar')
+ AndroidHelper.sdkDir + "/platforms/${project['android']['compileSdkVersion']}/android.jar",
+ // and javax.accessibility.Accessible is systematically missed for some reason
109
+ System.getenv('JAVA_HOME') + '/jre/lib/rt.jar')
110
}
111
112
task.setProperty('classpath',
0 commit comments