| Author | djarvis <email> |
|---|---|
| Date | 2016-12-20 18:04:15 GMT-0800 |
| Commit | e91d5d8e9485a0091ea346ba1f21fc9440cbd24c |
| Parent | 25ed90e |
| Delta | 3 lines added, 3 lines removed |
| baseName = 'scrivenvar' | ||
| - // remove the security files (from mail.jar / activation.jar) so that the jar will be executable. | ||
| + // Remove digital signature files to ensure an executable JAR file. | ||
| doFirst { | ||
| from { | ||
| manifest { | ||
| - attributes 'Main-Class': mainClassName, | ||
| - 'Class-Path': configurations.compile.collect { 'libs/' + it.getName() }.join(' ') | ||
| + attributes 'Main-Class': mainClassName | ||
| + attributes 'Class-Path': configurations.compile.collect { 'libs/' + it.getName() }.join(' ') | ||
| } | ||
| } | ||