ソースを参照

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
 

読み込み中…
キャンセル
保存