diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-12-03 16:22:11 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-12-03 16:22:49 +0100 |
commit | 39631054c58df5841ea268b7002b820ec55f6e0a (patch) | |
tree | cefedd8411c859243bd181568e16fcdd372a38c8 /build-docs.xml | |
parent | 797cb4732c53bf1e3b2091add8cf731fc436607f (diff) | |
download | dokka-39631054c58df5841ea268b7002b820ec55f6e0a.tar.gz dokka-39631054c58df5841ea268b7002b820ec55f6e0a.tar.bz2 dokka-39631054c58df5841ea268b7002b820ec55f6e0a.zip |
restructure Dokka build to use Gradle for everything except for the Maven plugin
Diffstat (limited to 'build-docs.xml')
-rw-r--r-- | build-docs.xml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/build-docs.xml b/build-docs.xml index a11200f4..71d4c19f 100644 --- a/build-docs.xml +++ b/build-docs.xml @@ -1,11 +1,15 @@ <project name="Dokka" default="document"> <!-- Demonstrates the usage of the Dokka Ant task. Assumes Dokka has already been compiled --> - <typedef resource="dokka-antlib.xml" classpath="out/artifacts/dokka.jar"/> + <typedef resource="dokka-antlib.xml"> + <classpath> + <fileset dir="core/build/libs" includes="dokka-fatjar-*.jar"/> + </classpath> + </typedef> <target name="document"> - <dokka src="src" outputdir="doc" modulename="dokka"> - <sourcelink path="." url="https://github.com/orangy/dokka/blob/master" linesuffix="#L"/> + <dokka src="core/src/main/kotlin" outputdir="doc" modulename="dokka"> + <sourcelink path="." url="https://github.com/kotlin/dokka/blob/master" linesuffix="#L"/> </dokka> </target> </project> |