diff --git a/app/ac-cli/build.gradle b/app/ac-cli/build.gradle index ea05357..5e6e126 100644 --- a/app/ac-cli/build.gradle +++ b/app/ac-cli/build.gradle @@ -24,8 +24,8 @@ application { bootJar { manifest { - attributes 'Implementation-Title': 'AppleCommander (Swing)', + attributes 'Implementation-Title': "AppleCommander 'ac'", 'Implementation-Version': archiveVersion } - from('LICENSE') + from('../../LICENSE') } diff --git a/app/ac-swing/build.gradle b/app/ac-swing/build.gradle index 5da9dcc..2a37f93 100644 --- a/app/ac-swing/build.gradle +++ b/app/ac-swing/build.gradle @@ -17,8 +17,8 @@ application { bootJar { manifest { - attributes 'Implementation-Title': 'AppleCommander', + attributes 'Implementation-Title': 'AppleCommander (Swing)', 'Implementation-Version': archiveVersion } - from('LICENSE') + from('../../LICENSE') } diff --git a/app/ac-swt-linux-aarch64/build.gradle b/app/ac-swt-linux-aarch64/build.gradle index 37782bd..b71fb4c 100644 --- a/app/ac-swt-linux-aarch64/build.gradle +++ b/app/ac-swt-linux-aarch64/build.gradle @@ -21,8 +21,8 @@ application { bootJar { manifest { - attributes 'Implementation-Title': 'AppleCommander', + attributes 'Implementation-Title': 'AppleCommander (Linux Arm)', 'Implementation-Version': archiveVersion } - from('LICENSE') + from('../../LICENSE') } diff --git a/app/ac-swt-linux-x86_64/build.gradle b/app/ac-swt-linux-x86_64/build.gradle index 6c3776f..e509d9e 100644 --- a/app/ac-swt-linux-x86_64/build.gradle +++ b/app/ac-swt-linux-x86_64/build.gradle @@ -21,8 +21,8 @@ application { bootJar { manifest { - attributes 'Implementation-Title': 'AppleCommander', + attributes 'Implementation-Title': 'AppleCommander (Linux)', 'Implementation-Version': archiveVersion } - from('LICENSE') + from('../../LICENSE') } diff --git a/app/ac-swt-macosx-aarch64/build.gradle b/app/ac-swt-macosx-aarch64/build.gradle index 01293e7..75e2bc1 100644 --- a/app/ac-swt-macosx-aarch64/build.gradle +++ b/app/ac-swt-macosx-aarch64/build.gradle @@ -21,8 +21,8 @@ application { bootJar { manifest { - attributes 'Implementation-Title': 'AppleCommander', + attributes 'Implementation-Title': 'AppleCommander (Mac Arm)', 'Implementation-Version': archiveVersion } - from('LICENSE') + from('../../LICENSE') } diff --git a/app/ac-swt-macosx-x86_64/build.gradle b/app/ac-swt-macosx-x86_64/build.gradle index ccd957e..92dc68c 100644 --- a/app/ac-swt-macosx-x86_64/build.gradle +++ b/app/ac-swt-macosx-x86_64/build.gradle @@ -21,8 +21,8 @@ application { bootJar { manifest { - attributes 'Implementation-Title': 'AppleCommander', + attributes 'Implementation-Title': 'AppleCommander (Mac)', 'Implementation-Version': archiveVersion } - from('LICENSE') + from('../../LICENSE') } diff --git a/app/ac-swt-win32-x86_64/build.gradle b/app/ac-swt-win32-x86_64/build.gradle index 2acba23..14ed0ec 100644 --- a/app/ac-swt-win32-x86_64/build.gradle +++ b/app/ac-swt-win32-x86_64/build.gradle @@ -21,8 +21,8 @@ application { bootJar { manifest { - attributes 'Implementation-Title': 'AppleCommander', + attributes 'Implementation-Title': 'AppleCommander (Windows)', 'Implementation-Version': archiveVersion } - from('LICENSE') + from('../../LICENSE') } diff --git a/lib/ac-api/build.gradle b/lib/ac-api/build.gradle index 2177451..5852756 100644 --- a/lib/ac-api/build.gradle +++ b/lib/ac-api/build.gradle @@ -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() +}