diff --git a/build.gradle b/build.gradle index 309a82f..fc27093 100644 --- a/build.gradle +++ b/build.gradle @@ -159,7 +159,7 @@ uploadArchives { mavenDeployer { addFilter('AppleCommander') { artifact, file -> // Note that the other executables all have suffixes which change their name. - return artifact.name == 'AppleCommander' && artifact.ext == 'jar' + return artifact.name == 'AppleCommander' && artifact.ext != 'zip' && artifact.ext != 'tar' } beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }