我遇到的问题是Ivy将大型(ish)工件上传到我们的内部工件服务器(Artifactory 3.9.2)。当我们上传一个400MB的文件时,我们用完了Java堆空间而且它失败了(因此我们的CI构建失败了)。我们一直在推动上限,但我们预计会有一些明显更大的工件(大小约为1GB),这将会打破我们稳定的大小。
我们在CentOS7环境中使用Ant 1.10,Ivy 2.4,OpenJSK 1.8.0.141。
问题已记录在Ivy as IVY-1197中,但尚未在主干版本中修复,因此我想提出所描述的解决方法:
当用例涉及将大文件上传到需要身份验证的网站时,解决方法是始终将常春藤与commons-httpclient,commons-codec和commons-logging一起使用
我想将commons-httpclient, commons-codec, and commons-logging
添加到Ivy类路径中,以便Ivy在上传工件期间使用这些。不幸的是,我正在努力使这项工作。说实话,我是Java世界的新手,类路径是一个外国概念;我是一名自愿修复系统遗留部分的C ++开发人员。
我们通过Ant调用常春藤任务。我们引入了一个ivysettings.xml
文件,其相关结构类似于:
<ivysettings>
<classpath file="${build-utils.basedir}/ivy.lib/commons-httpclient-3.1.jar"/>
<classpath file="${build-utils.basedir}/ivy.lib/commons-codec-1.10.jar"/>
<classpath file="${build-utils.basedir}/ivy.lib/commons-logging-1.2.jar"/>
</ivysettings>
ivysettings.xml
通过我们组件之间共享的build-utils.xml
文件提取:
<project name="build-utils" xmlns:ivy="antlib:org.apache.ivy.ant">
<taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant">
<classpath>
<fileset dir="${build-utils.basedir}/ant.lib">
<include name="ivy*.jar"/>
</fileset>
</classpath>
</taskdef>
<ivy:settings file="${build-utils.basedir}/ivysettings.xml"/>
<target name="convert-POM-to-Ivy" > <!-- description="Convert a POM file to an Ivy file"; additionally verifies that we've pulled in Ivy correctly -->
<ivy:convertpom pomFile="pom.xml" ivyFile="ivyFileOut.xml" />
</target>
</project>
我们的每个组件都有ivy.xml
非常简单:
<ivy-module version="2.0" xmlns:e="http://ant.apache.org/ivy/extra">
<info organisation = "${groupId}"
module = "${artifactId}"
revision = "${version}}"/>
<configurations>
<include file="ivy-configurations.xml"/>
</configurations>
<!-- Some giant artifact -->
<artifact conf="${conf.el7}" type="tar.bz2" e:classifier="${conf.el7}"/>
<artifact type="pom"/>
<dependencies />
</ivy-module>
如果我运行ant echoproperties
目标并且grep for&#39; class.path&#39;我得到以下内容:
[echoproperties]
java.class.path=/usr/share/java/ant.jar\:/usr/share/java/ant-launcher.jar\:/usr/share/java/jaxp_parser_impl.jar\:/usr/share/java/xml-commons-apis.jar\:/usr/lib/jvm/java/lib/tools.jar\:/usr/share/ant/lib/ant-bootstrap.jar\:/usr/share/ant/lib/ant-launcher.jar\:/usr/share/ant/lib/ant.jar
[echoproperties]
java.class.path.ivy.instance=/usr/share/java/ant.jar\:/usr/share/java/ant-launcher.jar\:/usr/share/java/jaxp_parser_impl.jar\:/usr/share/java/xml-commons-apis.jar\:/usr/lib/jvm/java/lib/tools.jar\:/usr/share/ant/lib/ant-bootstrap.jar\:/usr/share/ant/lib/ant-launcher.jar\:/usr/share/ant/lib/ant.jar
通过此设置,我仍然遇到上传问题,而且我不确定是否可以验证我是否使用commons-httpclient
。
有人可以提供一些关于如何将jar放入Ivy类路径的提示吗?我做错了,我需要在Ant类路径中使用它吗?如果是这样,有人能指出我正确的方向吗?