Mercurial > public > gradleplugins
annotate src/main/groovy/org/ssdt_ohio/gradle/tasks/UserDoc.groovy @ 17:3741247de37a
USASR-1307: add helper to resolve template classpath problem
author | smith@nwoca.org |
---|---|
date | Thu, 01 Jan 2015 00:01:02 +0000 |
parents | e3c55e83c9a4 |
children | b14418c2ce40 |
rev | line source |
---|---|
13
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
1 package org.ssdt_ohio.gradle.tasks |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
2 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
3 import org.codehaus.groovy.tools.groovydoc.ClasspathResourceManager |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
4 import org.codehaus.groovy.tools.groovydoc.FileOutputTool |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
5 import org.codehaus.groovy.tools.groovydoc.GroovyDocTool |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
6 import org.codehaus.groovy.tools.groovydoc.gstringTemplates.GroovyDocTemplateInfo |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
7 import org.gradle.api.InvalidUserDataException |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
8 import org.gradle.api.file.FileCollection |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
9 import org.gradle.api.file.FileVisitDetails |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
10 import org.gradle.api.internal.ClassPathRegistry |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
11 import org.gradle.api.logging.LogLevel |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
12 import org.gradle.api.tasks.InputFiles |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
13 import org.gradle.api.tasks.OutputDirectory |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
14 import org.gradle.api.tasks.SourceTask |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
15 import org.gradle.api.tasks.TaskAction |
17
3741247de37a
USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
15
diff
changeset
|
16 import org.ssdt_ohio.gradle.doc.tools.UserDocHelper |
13
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
17 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
18 class UserDoc extends SourceTask { |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
19 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
20 private FileCollection groovyClasspath; |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
21 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
22 private FileCollection classpath; |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
23 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
24 private File destinationDir; |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
25 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
26 ClassPathRegistry classPathRegistry |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
27 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
28 public UserDoc() { |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
29 getLogging().captureStandardOutput(LogLevel.INFO); |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
30 classPathRegistry = getServices().get(ClassPathRegistry.class); |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
31 } |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
32 |
15
e3c55e83c9a4
USASR-1307: start custom class/property displays
Dave Smith <smith@nwoca.org>
parents:
14
diff
changeset
|
33 String windowTitle |
e3c55e83c9a4
USASR-1307: start custom class/property displays
Dave Smith <smith@nwoca.org>
parents:
14
diff
changeset
|
34 |
e3c55e83c9a4
USASR-1307: start custom class/property displays
Dave Smith <smith@nwoca.org>
parents:
14
diff
changeset
|
35 String docTitle |
e3c55e83c9a4
USASR-1307: start custom class/property displays
Dave Smith <smith@nwoca.org>
parents:
14
diff
changeset
|
36 |
e3c55e83c9a4
USASR-1307: start custom class/property displays
Dave Smith <smith@nwoca.org>
parents:
14
diff
changeset
|
37 Boolean publicScope = true |
e3c55e83c9a4
USASR-1307: start custom class/property displays
Dave Smith <smith@nwoca.org>
parents:
14
diff
changeset
|
38 Boolean protectedScope = false |
e3c55e83c9a4
USASR-1307: start custom class/property displays
Dave Smith <smith@nwoca.org>
parents:
14
diff
changeset
|
39 Boolean packageScope = false |
e3c55e83c9a4
USASR-1307: start custom class/property displays
Dave Smith <smith@nwoca.org>
parents:
14
diff
changeset
|
40 Boolean privateScope = false |
e3c55e83c9a4
USASR-1307: start custom class/property displays
Dave Smith <smith@nwoca.org>
parents:
14
diff
changeset
|
41 |
13
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
42 @TaskAction |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
43 protected void generate() { |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
44 checkGroovyClasspathNonEmpty(getGroovyClasspath().getFiles()); |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
45 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
46 def tmpDir = new File(project.buildDir, "tmp/userdoc") |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
47 logger.debug("userdoc tmpDir: $tmpDir") |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
48 project.delete tmpDir |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
49 logger.debug("userdoc source: ${super.source.collect { it.toString() }}") |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
50 project.copy { |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
51 from super.getSource() |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
52 into tmpDir |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
53 } |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
54 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
55 def args = [:] |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
56 args.sourcepath = tmpDir.toString() |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
57 args.destdir = destinationDir |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
58 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
59 Properties properties = new Properties(); |
15
e3c55e83c9a4
USASR-1307: start custom class/property displays
Dave Smith <smith@nwoca.org>
parents:
14
diff
changeset
|
60 properties.setProperty("windowTitle", windowTitle); |
e3c55e83c9a4
USASR-1307: start custom class/property displays
Dave Smith <smith@nwoca.org>
parents:
14
diff
changeset
|
61 properties.setProperty("docTitle", docTitle); |
13
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
62 // properties.setProperty("footer", footer); |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
63 // properties.setProperty("header", header); |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
64 // checkScopeProperties(properties); |
15
e3c55e83c9a4
USASR-1307: start custom class/property displays
Dave Smith <smith@nwoca.org>
parents:
14
diff
changeset
|
65 properties.setProperty("publicScope", publicScope.toString()); |
e3c55e83c9a4
USASR-1307: start custom class/property displays
Dave Smith <smith@nwoca.org>
parents:
14
diff
changeset
|
66 properties.setProperty("protectedScope", protectedScope.toString()); |
e3c55e83c9a4
USASR-1307: start custom class/property displays
Dave Smith <smith@nwoca.org>
parents:
14
diff
changeset
|
67 properties.setProperty("packageScope", packageScope.toString()); |
e3c55e83c9a4
USASR-1307: start custom class/property displays
Dave Smith <smith@nwoca.org>
parents:
14
diff
changeset
|
68 properties.setProperty("privateScope", privateScope.toString()); |
13
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
69 // properties.setProperty("author", author.toString()); |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
70 // properties.setProperty("processScripts", processScripts.toString()); |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
71 // properties.setProperty("includeMainForScripts", includeMainForScripts.toString()); |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
72 // properties.setProperty("overviewFile", overviewFile != null ? overviewFile.getAbsolutePath() : ""); |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
73 // properties.setProperty("charset", charset != null ? charset : ""); |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
74 // properties.setProperty("fileEncoding", fileEncoding != null ? fileEncoding : ""); |
17
3741247de37a
USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
15
diff
changeset
|
75 |
3741247de37a
USASR-1307: add helper to resolve template classpath problem
smith@nwoca.org
parents:
15
diff
changeset
|
76 properties.put('userdocHelper',new UserDocHelper()) |
13
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
77 |
15
e3c55e83c9a4
USASR-1307: start custom class/property displays
Dave Smith <smith@nwoca.org>
parents:
14
diff
changeset
|
78 def tool = new GroovyDocTool(new ClasspathResourceManager(this.getClass().getClassLoader()), |
13
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
79 [tmpDir.getPath()] as String[], |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
80 getDocTemplates(), |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
81 getPackageTemplates(), |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
82 getClassTemplates(), [], |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
83 properties) |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
84 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
85 def addFiles = [] |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
86 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
87 super.getSource().visit { FileVisitDetails d -> |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
88 if (d.file.isFile()) { |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
89 addFiles << d.getRelativePath().toString() |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
90 } |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
91 } |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
92 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
93 tool.add(addFiles) |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
94 tool.renderToOutput(new FileOutputTool(), destinationDir.getCanonicalPath()) |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
95 } |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
96 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
97 private void checkGroovyClasspathNonEmpty(Collection<File> classpath) { |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
98 if (classpath.isEmpty()) { |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
99 throw new InvalidUserDataException("You must assign a Groovy library to the groovy configuration!"); |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
100 } |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
101 } |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
102 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
103 /** |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
104 * Returns the directory to generate the documentation into. |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
105 * |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
106 * @return The directory to generate the documentation into |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
107 */ |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
108 @OutputDirectory |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
109 public File getDestinationDir() { |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
110 return destinationDir; |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
111 } |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
112 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
113 /** |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
114 * Sets the directory to generate the documentation into. |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
115 */ |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
116 public void setDestinationDir(File destinationDir) { |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
117 this.destinationDir = destinationDir; |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
118 } |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
119 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
120 /** |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
121 * Returns the classpath containing the Groovy library to be used. |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
122 * |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
123 * @return The classpath containing the Groovy library to be used |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
124 */ |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
125 @InputFiles |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
126 public FileCollection getGroovyClasspath() { |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
127 return groovyClasspath; |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
128 } |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
129 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
130 /** |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
131 * Sets the classpath containing the Groovy library to be used. |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
132 */ |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
133 public void setGroovyClasspath(FileCollection groovyClasspath) { |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
134 this.groovyClasspath = groovyClasspath; |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
135 } |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
136 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
137 /** |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
138 * Returns the classpath used to locate classes referenced by the documented sources. |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
139 * |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
140 * @return The classpath used to locate classes referenced by the documented sources |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
141 */ |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
142 @InputFiles |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
143 public FileCollection getClasspath() { |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
144 return classpath; |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
145 } |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
146 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
147 /** |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
148 * Sets the classpath used to locate classes referenced by the documented sources. |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
149 */ |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
150 public void setClasspath(FileCollection classpath) { |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
151 this.classpath = classpath; |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
152 } |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
153 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
154 /** |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
155 * Creates and returns an array of package template classpath entries. |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
156 * <p> |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
157 * This method is meant to be overridden by custom GroovyDoc implementations, using custom package templates. |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
158 * |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
159 * @return an array of package templates, whereas each entry is resolved as classpath entry, defaults to |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
160 * {@link GroovyDocTemplateInfo#DEFAULT_PACKAGE_TEMPLATES}. |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
161 */ |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
162 protected String[] getPackageTemplates() { |
14
9de72de14ab3
USASR-1307: customize CSS and override class template
Dave Smith <smith@nwoca.org>
parents:
13
diff
changeset
|
163 return UserDocTemplateInfo.DEFAULT_PACKAGE_TEMPLATES; |
13
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
164 } |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
165 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
166 /** |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
167 * Creates and returns an array of doc template classpath entries. |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
168 * <p> |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
169 * This method is meant to be overridden by custom GroovyDoc implementations, using custom doc templates. |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
170 * |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
171 * @return an array of doc templates, whereas each entry is resolved as classpath entry, defaults to |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
172 * {@link GroovyDocTemplateInfo#DEFAULT_DOC_TEMPLATES}. |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
173 */ |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
174 protected String[] getDocTemplates() { |
14
9de72de14ab3
USASR-1307: customize CSS and override class template
Dave Smith <smith@nwoca.org>
parents:
13
diff
changeset
|
175 return UserDocTemplateInfo.DEFAULT_DOC_TEMPLATES; |
13
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
176 } |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
177 |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
178 /** |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
179 * Creates and returns an array of class template classpath entries. |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
180 * <p> |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
181 * This method is meant to be overridden by custom GroovyDoc implementations, using custom class templates. |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
182 * |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
183 * @return an array of class templates, whereas each entry is resolved as classpath entry, defaults to |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
184 * {@link GroovyDocTemplateInfo#DEFAULT_CLASS_TEMPLATES}. |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
185 */ |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
186 protected String[] getClassTemplates() { |
14
9de72de14ab3
USASR-1307: customize CSS and override class template
Dave Smith <smith@nwoca.org>
parents:
13
diff
changeset
|
187 return UserDocTemplateInfo.DEFAULT_CLASS_TEMPLATES; |
13
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
188 } |
a628135958e7
USASR-1307: inititial userdoc plugin/task to produce customizable groovy doc
Dave Smith <smith@nwoca.org>
parents:
diff
changeset
|
189 } |