执行 ant compile-native tar 报错
错误: error getting jar to.....
因无法连接到外网,所以无法从build.xml里指定的url下载所需包
在内网搭建服务器,将报错提示的软件包放入服务器目录中,并修改build.xml中ivy_repo_url。
ivysetting.xml中<propertyvalue="http://repo1.maven.org/maven2/",
value值也需修改成自定义服务器
重新执行 ant compile-native tar
报错:commons-logging#commons-logging;1.0.4: configuration not found in commons-logging#commons-logging;1.0.4:
'master'. It was required from com.Hadoop.gplcompression#Hadoop-GPL-Compression;0.4.15 commons-logging
修改ivy.xml中conf="commons-logging->master"/>将master改成default
重新执行 ant compile-native tar成功