Skip to content

Commit

Permalink
add setter and getter
Browse files Browse the repository at this point in the history
  • Loading branch information
wdog5 committed Feb 2, 2024
1 parent d3489ff commit d8468a1
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,24 @@ class RemapSpigotTask extends DefaultTask {
this.excludes = excludes
}

@Input
List<String> getIncludesApi() {
return includesApi
}

void setIncludesApi(List<String> includes) {
this.includesApi = includes
}

@Input
List<String> getExcludesApi() {
return excludesApi
}

void setExcludesApi(List<String> excludes) {
this.excludesApi = excludes
}

@InputFile
File getSsJar() {
return ssJar
Expand Down

0 comments on commit d8468a1

Please sign in to comment.