summaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2021-04-10 11:44:30 +0000
committerAndreas Beeker <kiwiwings@apache.org>2021-04-10 11:44:30 +0000
commit861ff655088135198176b4b4a0b6e80c08e8d196 (patch)
tree09bf405ca3dca803fc38f279d1b0101affce1f8f /build.gradle
parentab0e7481aa4181894ee57c96a3fa2eff8458efde (diff)
downloadpoi-861ff655088135198176b4b4a0b6e80c08e8d196.tar.gz
poi-861ff655088135198176b4b4a0b6e80c08e8d196.zip
fix paths for integration build, docs, add site task to main build.gradle
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1888580 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle54
1 files changed, 53 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index a85f346ee2..345b5c34d8 100644
--- a/build.gradle
+++ b/build.gradle
@@ -381,4 +381,56 @@ rat {
}
}*/
-//compileJava.dependsOn 'downloadJarsToLibs' \ No newline at end of file
+//compileJava.dependsOn 'downloadJarsToLibs'
+
+task site(type:Exec) {
+ if (System.env.FORREST_HOME == null) {
+ throw new InvalidUserDataException(
+ 'Apache Forrest is not installed.\n' +
+ 'Please install Apache Forrest (see https://forrest.apache.org/index.html) and set the\n' +
+ 'FORREST_HOME environment variable!')
+ }
+
+ if (JavaVersion.current() != JavaVersion.VERSION_1_8) {
+ // maybe Java 9-11 works too?
+ throw new GradleScriptException("Apache Forrest must be executed with Java 8!")
+ }
+
+ if (System.getProperty('os.name').toLowerCase(Locale.ROOT).contains('windows')) {
+ commandLine 'cmd', '/c', "${System.env.FORREST_HOME}/bin/forrest.bat"
+ } else {
+ commandLine "${System.env.FORREST_HOME}/bin/forrest"
+ }
+
+ //store the output instead of printing to the console:
+ standardOutput = new ByteArrayOutputStream()
+
+ ext.output = {
+ return standardOutput.toString()
+ }
+
+ doLast {
+ println 'Broken links:'
+ println file("${buildDir}/tmp/brokenlinks.xml").text
+
+ /* Apache Forrest is dead, so we cannot expect fixes there however it does not handle "https" in "credits"
+ currently if the *.xml file is in a sub-directory, see Apache Forrest code at
+ main/webapp/skins/pelt/xslt/html/site-to-xhtml.xsl:350
+
+ So we need to replace the links afterwards to have a fully "https" website and avoid browser warning about
+ a "mixed content" website */
+ def buildSite = "${buildDir}/site"
+
+ println "Fix https in ${buildSite}"
+
+ ant.replace(dir: buildSite, summary:'true', includes:'**/*.html',
+ token:'http://www.apache.org/events/current-event-125x125.png',
+ value:'https://www.apache.org/events/current-event-125x125.png')
+
+ ant.replace(dir: buildSite, summary:'true', includes:'**/*.html',
+ token:'http://www.google.com/search',
+ value:'https://www.google.com/search')
+
+ ant.fixcrlf(srcdir: buildSite, includes:'**/*.html,**/*.css', eol:'unix', eof:'remove')
+ }
+}