本文整理汇总了Java中org.apache.tools.ant.taskdefs.Property.init方法的典型用法代码示例。如果您正苦于以下问题:Java Property.init方法的具体用法?Java Property.init怎么用?Java Property.init使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.tools.ant.taskdefs.Property
的用法示例。
在下文中一共展示了Property.init方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: updateProject
import org.apache.tools.ant.taskdefs.Property; //导入方法依赖的package包/类
/**
* Updates the Ant Project used in this container with variables set in Ivy.
*
* All variables defined in Ivy will be set in the Ant project under two names:
* <ul>
* <li>the name of the variable</li>
* <li>the name of the variable suffixed with a dot + the given id, if the given id is not null
* </li>
* </ul>
*
* @param id
* The identifier of the settings in which the variables have been set, which should
* be used as property names suffix
*/
public void updateProject(String id) {
Map<String, String> r = new HashMap<>(super.getVariables());
r.putAll(overwrittenProperties);
for (Map.Entry<String, String> entry : r.entrySet()) {
setPropertyIfNotSet(entry.getKey(), entry.getValue());
if (id != null) {
setPropertyIfNotSet(entry.getKey() + "." + id, entry.getValue());
}
}
if (getEnvironmentPrefix() != null) {
Property propTask = new Property();
propTask.setProject(project);
propTask.setEnvironment(getEnvironmentPrefix());
propTask.init();
propTask.execute();
}
}
示例2: loadDeliveryList
import org.apache.tools.ant.taskdefs.Property; //导入方法依赖的package包/类
private void loadDeliveryList() {
Property property = (Property) getProject().createTask("property");
property.setOwningTarget(getOwningTarget());
property.init();
property.setFile(deliveryList);
property.perform();
}
示例3: setProperty
import org.apache.tools.ant.taskdefs.Property; //导入方法依赖的package包/类
private void setProperty(final String name, final String value) {
final Property property = (Property) getProject().createTask("property");
property.setOwningTarget(getOwningTarget());
property.init();
property.setName(name);
property.setValue(value);
property.execute();
}
示例4: execute
import org.apache.tools.ant.taskdefs.Property; //导入方法依赖的package包/类
public void execute() throws BuildException {
try {
super.execute();
} catch (final BuildException be) {
if (failonerror) throw be;
if (null != failonerrorProperty) {
final Property property = (Property) getProject().createTask("property");
property.setOwningTarget(getOwningTarget());
property.init();
property.setName(failonerrorProperty);
property.setValue("true");
property.execute();
}
}
}
示例5: createIvyEngine
import org.apache.tools.ant.taskdefs.Property; //导入方法依赖的package包/类
void createIvyEngine(final ProjectComponent task) {
Project project = task.getProject();
Property prop = new Property() {
public void execute() throws BuildException {
addProperties(getDefaultProperties(task));
}
};
prop.setProject(project);
prop.init();
prop.execute();
IvyAntVariableContainer ivyAntVariableContainer = new IvyAntVariableContainer(project);
IvySettings settings = new IvySettings(ivyAntVariableContainer);
settings.setBaseDir(project.getBaseDir());
if (file == null && url == null) {
defineDefaultSettingFile(ivyAntVariableContainer, task);
}
if (antWorkspaceResolver != null) {
settings.addConfigured(antWorkspaceResolver.getResolver());
}
Ivy ivy = Ivy.newInstance(settings);
try {
ivy.pushContext();
AntMessageLogger.register(task, ivy);
Message.showInfo();
configureURLHandler();
if (file != null) {
if (!file.exists()) {
throw new BuildException("settings file does not exist: " + file);
}
ivy.configure(file);
} else {
if (url == null) {
throw new AssertionError(
"ivy setting should have either a file, either an url,"
+ " and if not defineDefaultSettingFile must set it.");
}
ivy.configure(url);
}
ivyAntVariableContainer.updateProject(id);
ivyEngine = ivy;
} catch (ParseException | IOException e) {
throw new BuildException("impossible to configure ivy:settings with given "
+ (file != null ? "file: " + file : "url: " + url) + " : " + e, e);
} finally {
ivy.popContext();
}
}