Copy kotlin-reflect.jar from dist to publish to Maven

Also build sources jar in build.xml to publish as kotlin-reflect's sources, and
create an empty javadoc
This commit is contained in:
Alexander Udalov
2015-05-28 18:11:47 +03:00
parent ee811136d2
commit 9cc156c67f
4 changed files with 38 additions and 46 deletions
+8
View File
@@ -827,6 +827,14 @@
<fileset dir="${output}/core.src" includes="**/*"/>
</jar-content>
</pack-runtime-jar>
<pack-runtime-jar jar-dir="${output}" jar-name="kotlin-reflect-sources-for-maven.jar"
implementation-title="${manifest.impl.title.kotlin.jvm.reflect.sources}">
<jar-content>
<fileset dir="${basedir}/core/reflection.jvm/src" includes="**/*"/>
<fileset dir="${output}/core.src" includes="**/*"/>
</jar-content>
</pack-runtime-jar>
</target>
<target name="runtime"