Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ public void doTask() throws IOException {
map.put("keypass", getKeyPass().get());
if (getKeyStore().isPresent())
map.put("keyStore", getKeyStore().get());
if (getTsaUrl().isPresent())
map.put("tsaurl", getTsaUrl().get());

getProject().getAnt().invokeMethod("signjar", map);

Expand Down Expand Up @@ -165,6 +167,10 @@ private void writeOutputJar(File signedJar, File outputJar, Map<String, Entry<by
@Optional
public abstract Property<String> getKeyStore();

@Input
@Optional
public abstract Property<String> getTsaUrl();

@Override
public PatternFilterable exclude(String... arg0) {
return patternSet.exclude(arg0);
Expand Down