浏览代码

Relax exclusions for bundled project's META-INF.

Allow anything in a sub-directory, such as services. This greatly
simplifies embedding complex software such as Jetty.
pull/478/head
Chris Smith 8 年前
父节点
当前提交
23db7b0bdf
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      build.gradle

+ 1
- 1
build.gradle 查看文件

@@ -103,7 +103,7 @@ subprojects {
103 103
         }
104 104
 
105 105
         from { configurations.bundle.minus(configurations.provided).collect { it.isDirectory() ? it : zipTree(it) } } {
106
-            exclude 'META-INF/**'
106
+            exclude 'META-INF/*'
107 107
         }
108 108
     }
109 109
 

正在加载...
取消
保存