aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorSergey Mashkov <sergey.mashkov@jetbrains.com>2015-07-10 15:20:11 +0300
committerSergey Mashkov <sergey.mashkov@jetbrains.com>2015-07-13 17:57:49 +0300
commit31bbbcca92a328a1142552dd305ac29c2df2a1fe (patch)
tree6c48e3f50e5184e58bd398763e75a431c60a334e /build.xml
parent549ef194efc7a3eee948eac2da4ac36c2e47a6a1 (diff)
downloaddokka-31bbbcca92a328a1142552dd305ac29c2df2a1fe.tar.gz
dokka-31bbbcca92a328a1142552dd305ac29c2df2a1fe.tar.bz2
dokka-31bbbcca92a328a1142552dd305ac29c2df2a1fe.zip
Building all by ant + doc
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index f8d81fc9..4174195e 100644
--- a/build.xml
+++ b/build.xml
@@ -4,6 +4,11 @@
<property name="kotlinc.repeat" value="1"/>
+ <target name="clean">
+ <delete dir="out" />
+ <delete dir="maven-plugin/target" />
+ </target>
+
<target name="build">
<mkdir dir="out"/>
@@ -46,4 +51,10 @@
<localrepository path="out/repo" />
</install>
</target>
+
+ <target name="build-and-install" depends="install-fj">
+ <mvn mavenversion="3.0.5" dir="maven-plugin" pom="maven-plugin/pom.xml">
+ <arg value="install" />
+ </mvn>
+ </target>
</project>