added JavaDoc to web site
authorSvjatoslav Agejenko <svjatoslav@svjatoslav.eu>
Fri, 18 Jan 2019 23:45:56 +0000 (01:45 +0200)
committerSvjatoslav Agejenko <svjatoslav@svjatoslav.eu>
Fri, 18 Jan 2019 23:45:56 +0000 (01:45 +0200)
.gitignore
doc/index.html
doc/index.org
pom.xml
tools/update web site

index b75c982..5812d75 100644 (file)
@@ -1,3 +1,4 @@
 /.idea/
 /target/
+/doc/apidocs/
 /*.iml
\ No newline at end of file
index df09b66..6004eff 100644 (file)
@@ -2,7 +2,7 @@
 <html lang="en">
 <head>
 <title>Sixth Data - Data storage and computing engine</title>
-<!-- 2019-01-19 Sat 01:26 -->
+<!-- 2019-01-19 Sat 01:43 -->
 <meta charset="utf-8">
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="generator" content="Org-mode">
@@ -242,6 +242,9 @@ git clone https://www2.svjatoslav.eu/git/sixth-data.git
 
 </pre>
 </li>
+
+<li>See <a href="https://www3.svjatoslav.eu/projects/sixth-data/apidocs/">JavaDoc</a>.
+</li>
 </ul>
 </div>
 </div>
@@ -571,7 +574,7 @@ Debugger, and more&#x2026;
 </div></div></div>
 <footer id="postamble" class="">
 <div><p class="author">Author: Svjatoslav Agejenko</p>
-<p class="date">Created: 2019-01-19 Sat 01:26</p>
+<p class="date">Created: 2019-01-19 Sat 01:43</p>
 <p class="creator"><a href="http://www.gnu.org/software/emacs/">Emacs</a> 26.1 (<a href="http://orgmode.org">Org-mode</a> 9.1.9)</p>
 </div>
 </footer>
index 5030305..86aa843 100644 (file)
@@ -33,6 +33,8 @@
 - Clone Git repository using command:
   : git clone https://www2.svjatoslav.eu/git/sixth-data.git
 
+- See [[https://www3.svjatoslav.eu/projects/sixth-data/apidocs/][JavaDoc]].
+
 * Vision / goal
   :PROPERTIES:
   :ID:       f6764282-a6f6-44e6-8716-b428074dd093
diff --git a/pom.xml b/pom.xml
index 0a5ff33..8a124e3 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -64,7 +64,7 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-javadoc-plugin</artifactId>
-                <version>2.9</version>
+                <version>3.0.1</version>
                 <executions>
                     <execution>
                         <id>attach-javadocs</id>
@@ -73,6 +73,9 @@
                         </goals>
                     </execution>
                 </executions>
+                <configuration>
+                    <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
+                </configuration>
             </plugin>
 
             <plugin>
index 7a1833d..c2219a2 100755 (executable)
@@ -3,6 +3,11 @@ cd "${0%/*}"; if [ "$1" != "T" ]; then gnome-terminal -e "'$0' T"; exit; fi;
 
 cd ..
 
+mvn clean package
+
+rm -rf doc/apidocs/
+cp -r target/apidocs/ doc/
+
 rsync -avz --delete  -e 'ssh -p 10006' doc/ n0@www3.svjatoslav.eu:/mnt/big/projects/sixth-data/
 
 echo ""