Skip to content

Commit 827ef20

Browse files
committed
Adjusting output directory for javadocs
1 parent bef3865 commit 827ef20

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ limitations under the License.
202202
packagenames="com.mongodb,com.mongodb.gridfs,com.mongodb.util,org.bson,org.bson.types,org.bson.io,org.bson.util"
203203
sourcepath="src/main/"
204204
defaultexcludes="yes"
205-
destdir="docs/mongo-java-driver/${build.conf.lib.version}"
205+
destdir="docs/mongo-java-driver"
206206
author="true"
207207
version="true"
208208
source="${build.conf.javac.source}"
@@ -218,7 +218,7 @@ limitations under the License.
218218
packagenames="org.bson,org.bson.types,org.bson.io,org.bson.util"
219219
sourcepath="src/main/"
220220
defaultexcludes="yes"
221-
destdir="docs/bson/${build.conf.lib.version}"
221+
destdir="docs/bson"
222222
author="true"
223223
version="true"
224224
source="${build.conf.javac.source}"
@@ -239,7 +239,7 @@ limitations under the License.
239239
<target name="alljars" depends="jar, javadocs" description="build jar, source jar, javadoc jar">
240240

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

244244
<jar jarfile="bson-sources.jar">
245245
<fileset dir="src/main">
@@ -248,7 +248,7 @@ limitations under the License.
248248
</fileset>
249249
</jar>
250250

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

253253
</target>
254254

0 commit comments

Comments
 (0)