![JAR search and dependency download from the Maven repository](/logo.png)
org.gradle.api.plugins.cargo.RemoteContainerTask.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-cargo-plugin Show documentation
Show all versions of gradle-cargo-plugin Show documentation
Gradle plugin that provides deployment capabilities to local and remote containers via Cargo.
The newest version!
/*
* Copyright 2011 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.api.plugins.cargo
import org.gradle.api.InvalidUserDataException
/**
* Deploys WAR to remote container.
*
* @author Benjamin Muschko
*/
class RemoteContainerTask extends AbstractContainerTask {
String protocol
String hostname
String username
String password
@Override
void validateConfiguration() {
super.validateConfiguration()
if(getAction() != Action.UNDEPLOY.name) {
getDeployables().each { deployable ->
if(deployable.file && !deployable.file.exists()) {
throw new InvalidUserDataException("Deployable "
+ (deployable.file == null ? "null" : deployable.file.canonicalPath)
+ " does not exist")
}
logger.info "Deployable artifacts = ${getDeployables().collect { it.file.canonicalPath }}"
}
}
}
@Override
void runAction() {
logger.info "Starting action '${getAction()}' for remote container '${Container.getContainerForId(getContainerId()).description}' on '${getProtocol()}://${getHostname()}:${getPort()}'"
ant.taskdef(resource: CARGO_TASKS, classpath: getClasspath().asPath)
ant.cargo(containerId: getContainerId(), type: 'remote', action: getAction()) {
configuration(type: 'runtime') {
property(name: 'cargo.protocol', value: getProtocol())
property(name: 'cargo.hostname', value: getHostname())
property(name: CARGO_SERVLET_PORT, value: getPort())
if(getUsername() && getPassword()) {
property(name: 'cargo.remote.username', value: getUsername())
property(name: 'cargo.remote.password', value: getPassword())
}
getDeployables().each { deployable ->
if(deployable.context) {
// For the undeploy action do not set a file attribute
if(getAction() == Action.UNDEPLOY.name) {
ant.deployable(type: getDeployableType(deployable).filenameExtension) {
property(name: CARGO_CONTEXT, value: deployable.context)
}
}
else {
ant.deployable(type: getDeployableType(deployable).filenameExtension, file: deployable.file) {
property(name: CARGO_CONTEXT, value: deployable.context)
}
}
}
else {
ant.deployable(type: getDeployableType(deployable).filenameExtension, file: deployable.file)
}
}
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy