Skip to content

Commit

Permalink
Added generation of JDBC javadoc zip file
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/postgis/trunk@2563 b70326c6-7e19-0410-871a-916f4a2858ee
  • Loading branch information
markusschaber committed Dec 22, 2006
1 parent 5ee948a commit b0234b2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2006-12-22 Markus Schaber <[email protected]>

* java/jdbc/Makefile
Added generation of basic javadoc zip file.

2006-12-20 Sandro Santilli <[email protected]>

* regress/README: wrote info about adding regression tests
Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PostGIS 1.2.1
(not published yet)
- JDBC: Fixed JTS handling for multi-dimensional geometries
(thanks to Thomas Marti for hint and partial patch)

Additionally, now JavaDoc is compiled out.

PostGIS 1.2.0
2006/12/08
Expand Down
10 changes: 10 additions & 0 deletions java/jdbc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ JTSSRC = $(JTSDIR)/org/postgis/jts/*.java $(JTSDIR)/examples/*.java
# Now the makefile targets that do the work:
# The default target:
all: jar \
postgis-jdbc-javadoc.zip \
offlinetests

# Packing the archives
Expand Down Expand Up @@ -226,6 +227,7 @@ clean:
echo cleaning...
$(DELETE) $(BUILD) bin stubbin postgis.jar postgis_debug.jar \
compile stubcompile jtscompile $(JTSBUILD) postgis_jts.jar \
javadoc-build postgis-jdbc-javadoc.zip \
$(TESTOUTPUT) \
postgis_$(VERSION).jar \
postgis_debug_$(VERSION).jar \
Expand All @@ -244,6 +246,14 @@ install: jar installdirs
installdirs:
@mkdir -p $(DESTDIR)

postgis-jdbc-javadoc.zip: javadoc-build
$(JAR) -cf postgis-jdbc-javadoc.zip -C javadoc-build .

javadoc-build: jtscompile compile
$(MKDIR) javadoc-build
javadoc -d javadoc-build -sourcepath src:jtssrc \
org.postgis org.postgis.jts org.postgis.binary org.postgis.java2d examples

# Preliminary JTS support

postgis_jts: postgis_jts.jar jtstestoffline
Expand Down

0 comments on commit b0234b2

Please sign in to comment.