搜索Gradle插件

版本 0.9.19-SNAPSHOT (最新)

0.9.19-SNAPSHOT

创建于2019年4月30日。

用于处理远程SSH服务器的Gradle插件

使用插件DSL

plugins {
  id("com.aestasit.sshoogr") version "0.9.19-SNAPSHOT"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.aestasit.infrastructure.sshoogr:sshoogr-gradle:0.9.19-SNAPSHOT")
  }
}

apply(plugin = "com.aestasit.sshoogr")

使用插件DSL

plugins {
  id "com.aestasit.sshoogr" version "0.9.19-SNAPSHOT"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.aestasit.infrastructure.sshoogr:sshoogr-gradle:0.9.19-SNAPSHOT"
  }
}

apply plugin: "com.aestasit.sshoogr"

学习如何应用插件到子项目中