搜索 Gradle 插件

com.github.ManifestClasspath

所有者: Viswa Ramamoorthy

解决 Windows Gradle 长类路径问题。修复 JavaExec 任务出现“创建进程错误=206,文件名或扩展名太长”的消息

版本 0.1.0-RELEASE(最新版)

0.1.0-RELEASE

创建于 2018 年 4 月 15 日。

解决 Windows Gradle 长类路径问题。修复 JavaExec 任务出现“创建进程错误=206,文件名或扩展名太长”的消息

使用 插件 DSL

plugins {
  id("com.github.ManifestClasspath") version "0.1.0-RELEASE"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.viswaramamoorthy:gradle-util-plugins:0.1.0-RELEASE")
  }
}

apply(plugin = "com.github.ManifestClasspath")

使用 插件 DSL

plugins {
  id "com.github.ManifestClasspath" version "0.1.0-RELEASE"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.viswaramamoorthy:gradle-util-plugins:0.1.0-RELEASE"
  }
}

apply plugin: "com.github.ManifestClasspath"

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