Fixing LICENSE; adding source jar #62

This commit is contained in:
Rob Greene 2021-12-19 22:27:40 -06:00
parent 56dca70bbb
commit a75083f29b
8 changed files with 20 additions and 15 deletions

View File

@ -24,8 +24,8 @@ application {
bootJar {
manifest {
attributes 'Implementation-Title': 'AppleCommander (Swing)',
attributes 'Implementation-Title': "AppleCommander 'ac'",
'Implementation-Version': archiveVersion
}
from('LICENSE')
from('../../LICENSE')
}

View File

@ -17,8 +17,8 @@ application {
bootJar {
manifest {
attributes 'Implementation-Title': 'AppleCommander',
attributes 'Implementation-Title': 'AppleCommander (Swing)',
'Implementation-Version': archiveVersion
}
from('LICENSE')
from('../../LICENSE')
}

View File

@ -21,8 +21,8 @@ application {
bootJar {
manifest {
attributes 'Implementation-Title': 'AppleCommander',
attributes 'Implementation-Title': 'AppleCommander (Linux Arm)',
'Implementation-Version': archiveVersion
}
from('LICENSE')
from('../../LICENSE')
}

View File

@ -21,8 +21,8 @@ application {
bootJar {
manifest {
attributes 'Implementation-Title': 'AppleCommander',
attributes 'Implementation-Title': 'AppleCommander (Linux)',
'Implementation-Version': archiveVersion
}
from('LICENSE')
from('../../LICENSE')
}

View File

@ -21,8 +21,8 @@ application {
bootJar {
manifest {
attributes 'Implementation-Title': 'AppleCommander',
attributes 'Implementation-Title': 'AppleCommander (Mac Arm)',
'Implementation-Version': archiveVersion
}
from('LICENSE')
from('../../LICENSE')
}

View File

@ -21,8 +21,8 @@ application {
bootJar {
manifest {
attributes 'Implementation-Title': 'AppleCommander',
attributes 'Implementation-Title': 'AppleCommander (Mac)',
'Implementation-Version': archiveVersion
}
from('LICENSE')
from('../../LICENSE')
}

View File

@ -21,8 +21,8 @@ application {
bootJar {
manifest {
attributes 'Implementation-Title': 'AppleCommander',
attributes 'Implementation-Title': 'AppleCommander (Windows)',
'Implementation-Version': archiveVersion
}
from('LICENSE')
from('../../LICENSE')
}

View File

@ -19,7 +19,7 @@ tasks.withType(Jar) {
attributes 'Implementation-Title': 'AppleCommander',
'Implementation-Version': archiveVersion
}
from('LICENSE')
from('../../LICENSE')
}
javadoc {
@ -27,3 +27,8 @@ javadoc {
source = sourceSets.main.allJava
options.addStringOption('Xdoclint:none', '-quiet')
}
java {
withSourcesJar()
withJavadocJar()
}