build scripts: build_idea_community.gant renamed to idea_community.gant for consistency

This commit is contained in:
nik
2017-04-11 09:34:07 +03:00
parent 0d133fb7ce
commit 6290fc9107
4 changed files with 4 additions and 4 deletions

View File

@@ -40,7 +40,7 @@
</macrodef>
<target name="build" depends="init">
<call_gant script="${project.home}/build/scripts/build_idea_community.gant"/>
<call_gant script="${project.home}/build/scripts/idea_community.gant"/>
</target>
<target name="test" depends="init">

View File

@@ -53,13 +53,13 @@
</macrodef>
<target name="layout">
<run script="${project.home}/build/scripts/build_idea_community.gant"
<run script="${project.home}/build/scripts/idea_community.gant"
target="update-from-sources"
deploy="${project.home}/out/deploy"/>
</target>
<target name="build-intellij-core">
<run script="${project.home}/build/scripts/build_idea_community.gant"
<run script="${project.home}/build/scripts/idea_community.gant"
target="build-intellij-core"
deploy="${project.home}/out/deploy"/>
</target>

View File

@@ -3,7 +3,7 @@
<body>
This package contains groovy scripts which build distributions of products based on IntelliJ Platform.
<p>
If you want to build a product from sources locally, run the corresponding *.gant file from IntelliJ IDEA (e.g. build_idea_community.gant to build IDEA Community).
If you want to build a product from sources locally, run the corresponding *.gant file from IntelliJ IDEA (e.g. idea_community.gant to build IDEA Community).
Do not forget to add 'Build Project' step to 'Before Launch' section of the created Run configuration to ensure that changed groovy scripts are copied to the output.
It makes sense to add {@linkplain org.jetbrains.intellij.build.BuildOptions#USE_COMPILED_CLASSES_PROPERTY '-Dintellij.build.use.compiled.classes=true'} to 'VM Options'
to skip compilation and use the compiled classes from the project output. Also you may use {@linkplain org.jetbrains.intellij.build.BuildOptions#targetOS 'intellij.build.target.os'}