Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/keenwrite.git

Updated incorrect comment. Some formatting.

Authordjarvis <email>
Date2016-12-20 18:04:15 GMT-0800
Commite91d5d8e9485a0091ea346ba1f21fc9440cbd24c
Parent25ed90e
Delta3 lines added, 3 lines removed
build.gradle
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(' ')
}
}