Procházet zdrojové kódy

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 před 8 roky
rodič
revize
23db7b0bdf
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      build.gradle

+ 1
- 1
build.gradle Zobrazit soubor

@@ -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
 

Načítá se…
Zrušit
Uložit