Skip to content

Commit 1506a69

Browse files
Removed recursive option from listModules tasks - not neccessary for listing direct module dependencies
1 parent 5ccf2b1 commit 1506a69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ task collateInstall(type:Copy){
113113

114114
task listModules(type: Exec) {
115115
workingDir '.'
116-
commandLine "${JAVA_HOME}/bin/jdeps", '-s', '--module-path', "${JFX_INSTALL}/lib", '--class-path', 'installBuild/lib/*','-recursive', "installBuild/${jar.baseName}-${version}.jar"
116+
commandLine "${JAVA_HOME}/bin/jdeps", '-s', '--module-path', "${JFX_INSTALL}/lib", '--class-path', 'installBuild/lib/*', "installBuild/${jar.baseName}-${version}.jar"
117117
}
118118

119119
task buildRuntime(type: Exec) {

0 commit comments

Comments
 (0)