Giter Site home page Giter Site logo

fatjar's Introduction

fatjar

1. 简介

开发过程中经常需要将多个jar包整合成一个jar包对外输出。在eclipse上开发时有一个eclipse fatjar plugin可以帮助我们完成这项工作,但开发工具换成Android studio之后我没有找到类似功能的插件,所以就自己写了一个整合jar的小工具,然后在build.gradle中添加一个task来执行它,也实现了类似的功能。

2. 使用方法

  • 将准备合并的jar的路径配置到fatjar_congig.xml中;

  • 将 fatjar_congig.xml 和 fatjar_0818.jar 放在同一个目录下,双击fatjar_0818.jar即可;

  • 将 fatjar_congig.xml 和 fatjar_0818.jar 放在build.gradle文件所在目录下,添加gradle的task,执行task即可;

    task fatjar (type: JavaExec) { javaexec { main="-jar"; args = ["fatjar_0818.jar"]; } }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.