项目作者: username4gh

项目描述 :
FatJar to include all the dependencies into the resulting-jar
高级语言: Groovy
项目地址: git://github.com/username4gh/FatJar.git
创建时间: 2018-04-13T09:47:40Z
项目社区:https://github.com/username4gh/FatJar

开源协议:Apache License 2.0

下载


What’s for

This gradle-plugin will do what’s been described in the link below automatically

https://stackoverflow.com/questions/3445825/gradle-how-do-i-build-a-jar-with-a-lib-dir-with-other-jars-in-it

Usage

Just set it up like below with your /path/to/project_root_dir/build.gradle

  1. buildscript {
  2. repositories {
  3. maven {
  4. url "https://raw.githubusercontent.com/username4gh/repository/master/"
  5. }
  6. }
  7. dependencies {
  8. classpath 'com.kyokose.gradle:fatjar:{version}'
  9. }
  10. }