Reduce external jar file size

后端 未结 4 1241
长情又很酷
长情又很酷 2020-12-16 23:35

I\'ve developed a module for a Java project. The module depends on external library (fastutil). The problem is, the fastutil.jar file is a couple o

4条回答
  •  独厮守ぢ
    2020-12-16 23:53

    As fastutil is LGPL open-source software, you could just copy the relevant source files to your project and drop that jar file. The compiler will then tell you if have all the files you need. Just keep the packages as they are and put a copy of the fastutil license file on top.

提交回复
热议问题