com.orctom.was
Owner:
ORCTOM
Deploy artifact to one or more, local or remote WebSphere Application Server
https://github.com/orctom/was-gradle-plugin
Sources: https://github.com/orctom/was-gradle-plugin
Version 1.1.2
Created 15 December 2015.
Deploy artifact to one or more, local or remote WebSphere Application Server
Using the plugins DSL:
plugins {
id("com.orctom.was") version "1.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.orctom.gradle.was:was-gradle-plugin:1.1.2")
}
}
apply(plugin = "com.orctom.was")
Using the plugins DSL:
plugins {
id "com.orctom.was" version "1.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.orctom.gradle.was:was-gradle-plugin:1.1.2"
}
}
apply plugin: "com.orctom.was"