Fix doc build script after removing taks distJar from stdlib project

This commit is contained in:
Ilya Gorbunov
2018-09-21 21:09:51 +03:00
parent 29568d2f48
commit 04f1f6086b
+3 -3
View File
@@ -34,15 +34,15 @@
<pathelement location="${basedir}/../gradle/wrapper/gradle-wrapper.jar"/> <pathelement location="${basedir}/../gradle/wrapper/gradle-wrapper.jar"/>
</classpath> </classpath>
<arg line="--no-daemon"/> <arg line="--no-daemon"/>
<arg line=":kotlin-stdlib:distJar"/> <arg line=":kotlin-stdlib:dist"/>
</java> </java>
</target> </target>
<path id="stdlib.compile.classpath"> <path id="stdlib.compile.classpath">
<fileset dir="${basedir}/stdlib/jvm/build/libs/" includes="dist-kotlin-stdlib.jar"/> <fileset dir="${basedir}/../dist/kotlinc/lib/" includes="kotlin-stdlib.jar"/>
</path> </path>
<path id="kotlin-test.compile.classpath"> <path id="kotlin-test.compile.classpath">
<fileset dir="${basedir}/stdlib/jvm/build/libs/" includes="dist-kotlin-stdlib.jar"/> <fileset dir="${basedir}/../dist/kotlinc/lib/" includes="kotlin-stdlib.jar"/>
<pathelement location="${basedir}/lib/junit-4.11.jar"/> <pathelement location="${basedir}/lib/junit-4.11.jar"/>
</path> </path>
<target name="document" depends="clean,dist-stdlib"> <target name="document" depends="clean,dist-stdlib">