mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2024-12-21 17:29:55 +00:00
Filtered on artifacts a bit cleaner...
This commit is contained in:
parent
c5a69c0673
commit
7e6f82a933
@ -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) }
|
||||
|
Loading…
Reference in New Issue
Block a user