本文整理了Java中org.apache.tools.ant.Project.setSystemProperties()
方法的一些代码示例,展示了Project.setSystemProperties()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Project.setSystemProperties()
方法的具体详情如下:
包路径:org.apache.tools.ant.Project
类名称:Project
方法名:setSystemProperties
[英]Add all system properties which aren't already defined as user properties to the project properties.
[中]将尚未定义为用户属性的所有系统属性添加到项目属性中。
代码示例来源:origin: org.apache.ant/ant
/**
* Initializes the properties.
* @exception BuildException if an vital property could not be set.
* @since Ant 1.7
*/
public void initProperties() throws BuildException {
setJavaVersionProperty();
setSystemProperties();
setPropertyInternal(MagicNames.ANT_VERSION, Main.getAntVersion());
setAntLib();
}
代码示例来源:origin: Ant-Grand/Grand
antProject.setSystemProperties();
antProject.init();
antProject.setUserProperty("ant.file", source.getAbsolutePath());
代码示例来源:origin: Ant-Grand/Grand
antProject.setSystemProperties();
代码示例来源:origin: org.codehaus.izpack/izpack-event
antProj.setSystemProperties();
addProperties(antProj, getProperties());
addPropertiesFromPropertyFiles(antProj);
代码示例来源:origin: javaee/metro-jax-ws
project.setSystemProperties();
内容来源于网络,如有侵权,请联系作者删除!