Skip to content

Commit

Permalink
Adjusting output directory for javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
jyemin committed Aug 3, 2012
1 parent bef3865 commit 827ef20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ limitations under the License.
packagenames="com.mongodb,com.mongodb.gridfs,com.mongodb.util,org.bson,org.bson.types,org.bson.io,org.bson.util"
sourcepath="src/main/"
defaultexcludes="yes"
destdir="docs/mongo-java-driver/${build.conf.lib.version}"
destdir="docs/mongo-java-driver"
author="true"
version="true"
source="${build.conf.javac.source}"
Expand All @@ -218,7 +218,7 @@ limitations under the License.
packagenames="org.bson,org.bson.types,org.bson.io,org.bson.util"
sourcepath="src/main/"
defaultexcludes="yes"
destdir="docs/bson/${build.conf.lib.version}"
destdir="docs/bson"
author="true"
version="true"
source="${build.conf.javac.source}"
Expand All @@ -239,7 +239,7 @@ limitations under the License.
<target name="alljars" depends="jar, javadocs" description="build jar, source jar, javadoc jar">

<jar jarfile="mongo-sources.jar"><fileset dir="src/main"><not><filename name="META-INF/"/></not></fileset></jar>
<jar jarfile="mongo-javadoc.jar"><fileset dir="docs/mongo-java-driver/${build.conf.lib.version}"/></jar>
<jar jarfile="mongo-javadoc.jar"><fileset dir="docs/mongo-java-driver"/></jar>

<jar jarfile="bson-sources.jar">
<fileset dir="src/main">
Expand All @@ -248,7 +248,7 @@ limitations under the License.
</fileset>
</jar>

<jar jarfile="bson-javadoc.jar"><fileset dir="docs/bson/${build.conf.lib.version}"/></jar>
<jar jarfile="bson-javadoc.jar"><fileset dir="docs/bson"/></jar>

</target>

Expand Down

0 comments on commit 827ef20

Please sign in to comment.