Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我们使用 Gradle Application 插件为我的项目创建可运行的 jar 时,distZip 任务会添加所有与 lib 文件夹无关的 jar。
有什么方法可以排除 Gradle 创建的分发 zip 文件中不需要的 jar。
为了排除添加的 dist 中的传递依赖 jar。
compile ("org.apache.solr:solr-solrj:3.6.0"){ transitive = false }