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.4-SNAPSHOT (latest)
Created 16 February 2016.
Deploy artifact to one or more, local or remote WebSphere Application Server
Add this plugin to your build using the plugins DSL:
plugins {
id("com.orctom.was") version "1.1.4-SNAPSHOT"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.orctom.was:com.orctom.was.gradle.plugin:1.1.4-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("com.orctom.was") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.orctom.was:com.orctom.was.gradle.plugin:1.1.4-SNAPSHOT") } } apply(plugin = "com.orctom.was")
- Applying plugins to all subprojects .