This repository was archived by the owner on Dec 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added docs script and updated readme
- Loading branch information
Jonny Dimond
committed
Jul 30, 2014
1 parent
fff5a33
commit 0d5af04
Showing
5 changed files
with
55 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,6 @@ | |
|
||
# Maven | ||
target | ||
|
||
# Other | ||
/site/docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
|
||
echo "Generating javadocs..." | ||
mvn javadoc:javadoc | ||
|
||
echo "Renaming output folder" | ||
rm -rf "$DIR/site/docs" | ||
mv "$DIR/target/site/apidocs" "$DIR/site/docs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"firebase": "geofire-java", | ||
"public": "site", | ||
"ignore": [ | ||
"firebase.json", | ||
"**/.*", | ||
"**/node_modules/**" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>GeoFire for Java</title> | ||
</head> | ||
|
||
<body style="width: 800px; margin: auto;"> | ||
<h1 style="text-align: center;">GeoFire for iOS</h1> | ||
|
||
<h2>API Reference</h2> | ||
<p> | ||
A full API reference for GeoFire for Java is available <a href="docs/index.html">here</a>. | ||
</p> | ||
|
||
<h2>Quick Start</h2> | ||
<p> | ||
Check out <a href="https://github.com/firebase/geofire-java/">GitHub</a> for a quick start guide and examples. | ||
</p> | ||
|
||
<h2>Source Code</h2> | ||
<p> | ||
GeoFire for Java is open source and available on <a href="https://github.com/firebase/geofire-java">GitHub</a> | ||
</p> | ||
|
||
<h2>Other version</h2> | ||
<p> | ||
Other versions of GeoFire are available fore <a href="https://github.com/firebase/geofire">JavaScript</a> and <a | ||
href="https://github.com/firebase/geofire-ios">iOS</a>. | ||
</p> | ||
</body> | ||
</html> |