代码拉取完成,页面将自动刷新
<!--
This build script compiles, builds distribution archives and runs tests in IntelliJ IDEA Community Edition. Build process can be customized
via options, see org.jetbrains.intellij.build.BuildOptions and org.jetbrains.intellij.build.TestingOptions classes for details. System properties
from these classes can be passed as Ant properties in the command line, e.g. run 'ant -Dintellij.build.output.root=/path/to/dir' to
specify custom output directory.
Note that this script is intended for building IntelliJ IDEA Community Edition only. If you want to build your own product based on IntelliJ Platform,
create a gant script for it, see javadoc for org.jetbrains.intellij.build package for details.
-->
<!-- Using ant is OBSOLETE, please call installers.cmd or tests.cmd directly -->
<!-- Refer to README.md for more instructions -->
<project name="IntelliJ IDEA Community Edition" default="build">
<mkdir dir="build/jps-bootstrap-work" />
<echoproperties destfile="build/jps-bootstrap-work/intellij.properties">
<propertyset>
<propertyref prefix="idea."/>
<propertyref prefix="intellij."/>
<propertyref prefix="test."/>
<propertyref prefix="module."/>
<propertyref prefix="debug."/>
</propertyset>
</echoproperties>
<condition property="script.suffix" value=".cmd">
<os family="windows" />
</condition>
<property name="script.suffix" value=".sh" />
<macrodef name="jps-bootstrap">
<attribute name="module"/>
<attribute name="class"/>
<sequential>
<exec executable="${basedir}/platform/jps-bootstrap/jps-bootstrap${script.suffix}" failonerror="true">
<arg value="--properties-file" />
<arg value="${basedir}/build/jps-bootstrap-work/intellij.properties" />
<!-- project to open -->
<arg value="${basedir}" />
<!-- project module -->
<arg value="@{module}"/>
<!-- main class to run -->
<arg value="@{class}"/>
</exec>
</sequential>
</macrodef>
<!-- build distribution archives for IntelliJ Community Edition in out/idea-ce/artifacts directory -->
<!-- this is deprecated. please call installers.cmd directly -->
<target name="build">
<echo message="***** Using ant is OBSOLETE, please call installers.cmd directly. See README.md *****" level="warning" />
<jps-bootstrap class="OpenSourceCommunityInstallersBuildTarget" module="intellij.idea.community.build" />
</target>
<!-- run project tests -->
<!-- this is deprecated. please use tests.cmd directly -->
<target name="test">
<echo message="***** Using ant is OBSOLETE, please call tests.cmd directly. See README.md *****" level="warning" />
<jps-bootstrap class="CommunityRunTestsBuildTarget" module="intellij.idea.community.build" />
</target>
</project>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。