Browse Source

Relax META-INF exclusions for jars.

This allows service entries to be included.
pull/566/head
Chris Smith 9 years ago
parent
commit
4226a6897d
1 changed files with 3 additions and 2 deletions
  1. 3
    2
      gradle/jar.gradle

+ 3
- 2
gradle/jar.gradle View File

56
     }
56
     }
57
 
57
 
58
     from { configurations.bundle.collect { it.isDirectory() ? it : zipTree(it) } } {
58
     from { configurations.bundle.collect { it.isDirectory() ? it : zipTree(it) } } {
59
-        exclude 'META-INF/**'
59
+        exclude 'META-INF/*'
60
+        exclude 'META-INF/maven/**'
60
     }
61
     }
61
 
62
 
62
     manifest {
63
     manifest {
70
             rename ".*", "DMDirc.jar"
71
             rename ".*", "DMDirc.jar"
71
         }
72
         }
72
     }
73
     }
73
-}
74
+}

Loading…
Cancel
Save