Search Gradle plugins

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.3.1

Created 24 February 2016.

Deploy artifact to one or more, local or remote WebSphere Application Server

Using the plugins DSL:

plugins {
  id("com.orctom.was") version "1.1.3.1"
}

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.3.1")
  }
}

apply(plugin = "com.orctom.was")

Using the plugins DSL:

plugins {
  id "com.orctom.was" version "1.1.3.1"
}

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.3.1"
  }
}

apply plugin: "com.orctom.was"

Learn how to apply plugins to subprojects