File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,11 @@ project(':rss-middletier') {
7878 }
7979
8080 jar {
81- from { configurations. compile. collect { it. isDirectory() ? it : zipTree(it) } }
81+ from(configurations. compile. collect { it. isDirectory() ? it : zipTree(it) }) {
82+ exclude " META-INF/*.SF"
83+ exclude " META-INF/*.DSA"
84+ exclude " META-INF/*.RSA"
85+ }
8286 manifest { attributes ' Main-Class' : ' com.netflix.recipes.rss.server.MiddleTierServer' }
8387 }
8488}
@@ -94,7 +98,11 @@ project(':rss-edge') {
9498 }
9599
96100 jar {
97- from { configurations. compile. collect { it. isDirectory() ? it : zipTree(it) } }
101+ from(configurations. compile. collect { it. isDirectory() ? it : zipTree(it) }) {
102+ exclude " META-INF/*.SF"
103+ exclude " META-INF/*.DSA"
104+ exclude " META-INF/*.RSA"
105+ }
98106 manifest { attributes ' Main-Class' : ' com.netflix.recipes.rss.server.EdgeServer' }
99107 }
100108}
You can’t perform that action at this time.
0 commit comments