com.mcwa.oracleforms
Owner: Ethan Davidson
A Gradle plugin for working with Oracle Forms
https://github.com/ethanmdavidson/oracleformsgradleplugin
Sources: https://github.com/ethanmdavidson/oracleformsgradleplugin
Version 1.7.6-SNAPSHOT
1.7.6-SNAPSHOT
Created 09 April 2019.
A Gradle plugin for working with Oracle Forms
Using the plugins DSL:
plugins {
id("com.mcwa.oracleforms") version "1.7.6-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.mcwa:oracleformsgradleplugin:1.7.6-SNAPSHOT")
}
}
apply(plugin = "com.mcwa.oracleforms")
Using the plugins DSL:
plugins {
id "com.mcwa.oracleforms" version "1.7.6-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.mcwa:oracleformsgradleplugin:1.7.6-SNAPSHOT"
}
}
apply plugin: "com.mcwa.oracleforms"