10 Star 26 Fork 0

Gitee 极速下载/intellij-idea_old1

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/JetBrains/intellij-community
克隆/下载
build.xml 2.74 KB
一键复制 编辑 原始数据 按行查看 历史
<!--
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>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/mirrors/intellij-idea_old1.git
git@gitee.com:mirrors/intellij-idea_old1.git
mirrors
intellij-idea_old1
intellij-idea_old1
master

搜索帮助