Mercurial > public > gradleplugins
comparison src/main/groovy/org/ssdt_ohio/gradle/plugins/UserDocPlugin.groovy @ 32:927f02ccc596 version-0.4.6
Update to Gradle 7.4.2
author | Kyle Miller <kyle.miller@mcoecn.org> |
---|---|
date | Fri, 05 Aug 2022 19:22:06 +0100 |
parents | e3c55e83c9a4 |
children |
comparison
equal
deleted
inserted
replaced
31:bd084c7d01df | 32:927f02ccc596 |
---|---|
41 println "srcdirs: " + groovySourceSet.getGroovy().getSrcDirs() | 41 println "srcdirs: " + groovySourceSet.getGroovy().getSrcDirs() |
42 userDoc.setSource(groovySourceSet.getGroovy()); | 42 userDoc.setSource(groovySourceSet.getGroovy()); |
43 | 43 |
44 userDoc.setDestinationDir(new File(project.buildDir, "docs/userdoc")) | 44 userDoc.setDestinationDir(new File(project.buildDir, "docs/userdoc")) |
45 | 45 |
46 userDoc.setGroovyClasspath(new GroovyRuntime(project).inferGroovyClasspath(project.configurations.compile)) | 46 userDoc.setGroovyClasspath(new GroovyRuntime(project).inferGroovyClasspath(project.configurations.runtimeClasspath)) |
47 | 47 |
48 } | 48 } |
49 | 49 |
50 } | 50 } |