소스 검색

Relax META-INF exclusions for jars.

This allows service entries to be included.
pull/566/head
Chris Smith 9 년 전
부모
커밋
4226a6897d
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3
    2
      gradle/jar.gradle

+ 3
- 2
gradle/jar.gradle 파일 보기

@@ -56,7 +56,8 @@ jar {
56 56
     }
57 57
 
58 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 63
     manifest {
@@ -70,4 +71,4 @@ jar {
70 71
             rename ".*", "DMDirc.jar"
71 72
         }
72 73
     }
73
-}
74
+}

Loading…
취소
저장