Search Gradle plugins

Version 1.10.4

Created 22 July 2019.

A Gradle plugin for working with Oracle Forms

Using the plugins DSL:

plugins {
  id("com.mcwa.oracleforms") version "1.10.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.mcwa:oracleformsgradleplugin:1.10.4")
  }
}

apply(plugin = "com.mcwa.oracleforms")

Using the plugins DSL:

plugins {
  id "com.mcwa.oracleforms" version "1.10.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.mcwa:oracleformsgradleplugin:1.10.4"
  }
}

apply plugin: "com.mcwa.oracleforms"

Learn how to apply plugins to subprojects