Minor: added description for some(frequently used) ant targets to avoid hiding them in IDEA.

This commit is contained in:
Zalim Bashorov
2014-07-07 15:42:37 +04:00
parent e01d80e830
commit 909a30c279
2 changed files with 8 additions and 6 deletions
+6 -4
View File
@@ -624,17 +624,19 @@
</jar> </jar>
</target> </target>
<!-- builds redistributables from sources --> <!-- See description -->
<target name="dist" <target name="dist"
depends="clean,init,prepareDist,preloader,builtins,compiler,compilerSources,antTools,jdkAnnotations,androidSdkAnnotations,runtime,runtime_sources,jslib"/> depends="clean,init,prepareDist,preloader,builtins,compiler,compilerSources,antTools,jdkAnnotations,androidSdkAnnotations,runtime,runtime_sources,jslib"
description="Builds redistributables from sources"/>
<!-- builds everything, but classes are reused from project out dir, doesn't run proguard and javadoc --> <!-- builds everything, but classes are reused from project out dir, doesn't run proguard and javadoc -->
<target name="dist_quick" <target name="dist_quick"
depends="clean,init,prepareDist,preloader,builtins,compiler_quick,antTools,jdkAnnotations,androidSdkAnnotations,runtime,runtime_sources,jslib"/> depends="clean,init,prepareDist,preloader,builtins,compiler_quick,antTools,jdkAnnotations,androidSdkAnnotations,runtime,runtime_sources,jslib"/>
<!-- builds compiler jar from project out dir --> <!-- See description -->
<target name="dist_quick_compiler_only" <target name="dist_quick_compiler_only"
depends="init,prepareDist,preloader,builtins,compiler_quick"/> depends="init,prepareDist,preloader,builtins,compiler_quick"
description="Builds compiler jar from project out dir"/>
<target name="zip" depends="dist"> <target name="zip" depends="dist">
<zip destfile="${output}/${output.name}.zip"> <zip destfile="${output}/${output.name}.zip">
+2 -2
View File
@@ -27,14 +27,14 @@
<property name="continuous.idea.version" value=".lastSuccessful"/> <property name="continuous.idea.version" value=".lastSuccessful"/>
<target name="update" depends="fetch-third-party,fetch-annotations"> <target name="update" depends="fetch-third-party,fetch-annotations" description="Update dependencies from public server">
<execute_update <execute_update
base.url="http://teamcity.jetbrains.com/guestAuth/repository/download/bt410/${public.buildserver.build.id}:id" base.url="http://teamcity.jetbrains.com/guestAuth/repository/download/bt410/${public.buildserver.build.id}:id"
build.zip="${idea.archive.name}" build.zip="${idea.archive.name}"
/> />
</target> </target>
<target name="jb_update" depends="fetch-third-party,fetch-annotations"> <target name="jb_update" depends="fetch-third-party,fetch-annotations" description="Update dependencies from internal server">
<execute_update <execute_update
base.url="http://buildserver.labs.intellij.net/guestAuth/repository/download/bt3498/${jb.buildserver.build.id}:id" base.url="http://buildserver.labs.intellij.net/guestAuth/repository/download/bt3498/${jb.buildserver.build.id}:id"
build.zip="${idea.archive.name}" build.zip="${idea.archive.name}"