comparison src/main/groovy/org/ssdt_ohio/gradle/tasks/UserDoc.groovy @ 22:b3282a66cc05

disable author property. change favicon
author smith@nwoca.org
date Mon, 11 Jan 2016 16:55:32 +0000
parents b14418c2ce40
children e2d02e8742be
comparison
equal deleted inserted replaced
21:b14418c2ce40 22:b3282a66cc05
37 37
38 Boolean publicScope = true 38 Boolean publicScope = true
39 Boolean protectedScope = false 39 Boolean protectedScope = false
40 Boolean packageScope = false 40 Boolean packageScope = false
41 Boolean privateScope = false 41 Boolean privateScope = false
42 Boolean author = false
42 43
43 @TaskAction 44 @TaskAction
44 protected void generate() { 45 protected void generate() {
45 checkGroovyClasspathNonEmpty(getGroovyClasspath().getFiles()); 46 checkGroovyClasspathNonEmpty(getGroovyClasspath().getFiles());
46 47
65 // checkScopeProperties(properties); 66 // checkScopeProperties(properties);
66 properties.setProperty("publicScope", publicScope.toString()); 67 properties.setProperty("publicScope", publicScope.toString());
67 properties.setProperty("protectedScope", protectedScope.toString()); 68 properties.setProperty("protectedScope", protectedScope.toString());
68 properties.setProperty("packageScope", packageScope.toString()); 69 properties.setProperty("packageScope", packageScope.toString());
69 properties.setProperty("privateScope", privateScope.toString()); 70 properties.setProperty("privateScope", privateScope.toString());
70 // properties.setProperty("author", author.toString()); 71 properties.setProperty("author", author.toString());
71 // properties.setProperty("processScripts", processScripts.toString()); 72 // properties.setProperty("processScripts", processScripts.toString());
72 // properties.setProperty("includeMainForScripts", includeMainForScripts.toString()); 73 // properties.setProperty("includeMainForScripts", includeMainForScripts.toString());
73 // properties.setProperty("overviewFile", overviewFile != null ? overviewFile.getAbsolutePath() : ""); 74 // properties.setProperty("overviewFile", overviewFile != null ? overviewFile.getAbsolutePath() : "");
74 // properties.setProperty("charset", charset != null ? charset : ""); 75 // properties.setProperty("charset", charset != null ? charset : "");
75 // properties.setProperty("fileEncoding", fileEncoding != null ? fileEncoding : ""); 76 // properties.setProperty("fileEncoding", fileEncoding != null ? fileEncoding : "");