Skip to content

Commit d55761f

Browse files
committed
AbstractInstallMojo: remove Fiji_Updater hack
We haven't shipped an unversioned Fiji_Updater for a long time. That component shouldn't be a dependency of any project these days.
1 parent c2da6d8 commit d55761f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/org/scijava/maven/plugin/install/AbstractInstallMojo.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,7 @@ else if (isBioFormatsArtifact(artifact)) {
205205
else {
206206
targetDirectory = new File(appDir, "jars");
207207
}
208-
final String fileName = "Fiji_Updater".equals(artifact.getArtifactId())
209-
? artifact.getArtifactId() + ".jar" : source.getName();
208+
final String fileName = source.getName();
210209
final File target = new File(targetDirectory, fileName);
211210

212211
boolean newerVersion = false;

0 commit comments

Comments
 (0)