com.lognet.automation.server
Owner: Lognet Systems
Gradle plugin for automating deployment of applications on servers
https://github.com/lognetSystems/gradleDeployPlugin
Sources: https://github.com/lognetSystems/gradleDeployPlugin
Version 1.0.3-SNAPSHOT (latest)
1.0.3-SNAPSHOT
Created 07 January 2019.
Gradle plugin for automating deployment of applications on servers
Using the plugins DSL:
plugins {
id("com.lognet.automation.server") version "1.0.3-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.lognet.automation:server-manager:1.0.3-SNAPSHOT")
}
}
apply(plugin = "com.lognet.automation.server")
Using the plugins DSL:
plugins {
id "com.lognet.automation.server" version "1.0.3-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.lognet.automation:server-manager:1.0.3-SNAPSHOT"
}
}
apply plugin: "com.lognet.automation.server"