com.atlassian.bamboo.specs.builders.task.DumpVariablesTask Maven / Gradle / Ivy
package com.atlassian.bamboo.specs.builders.task;
import com.atlassian.bamboo.specs.api.builders.task.Task;
import com.atlassian.bamboo.specs.model.task.DumpVariablesTaskProperties;
import org.jetbrains.annotations.NotNull;
/**
* Represents a task that dumps Bamboo variables to log when task is run on agent.
*/
public class DumpVariablesTask extends Task {
public DumpVariablesTask() {
}
@NotNull
@Override
protected DumpVariablesTaskProperties build() {
return new DumpVariablesTaskProperties(description, taskEnabled, requirements, conditions);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy