io.codemodder.plugins.maven.operator.AbstractVersionCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codemodder-plugin-maven Show documentation
Show all versions of codemodder-plugin-maven Show documentation
Plugin for providing Maven dependency management functions to codemods.
package io.codemodder.plugins.maven.operator;
import java.util.*;
import org.apache.commons.lang3.builder.CompareToBuilder;
/** Base Class for Version Detection Commands */
class AbstractVersionCommand extends AbstractCommand {
/** Internal Result */
Set result = new TreeSet<>(VERSION_KIND_COMPARATOR);
static final Comparator VERSION_KIND_COMPARATOR =
new Comparator() {
@Override
public int compare(VersionDefinition o1, VersionDefinition o2) {
if (o1 == null) return 1;
if (o2 == null) return -1;
return new CompareToBuilder().append(o1.getKind(), o2.getKind()).toComparison();
}
};
static final Map TYPE_TO_KIND = new HashMap<>();
static final Map PROPERTY_TO_KIND = new HashMap<>();
static {
TYPE_TO_KIND.put("source", Kind.SOURCE);
TYPE_TO_KIND.put("target", Kind.TARGET);
TYPE_TO_KIND.put("release", Kind.RELEASE);
for (Map.Entry entry : TYPE_TO_KIND.entrySet()) {
PROPERTY_TO_KIND.put("maven.compiler." + entry.getKey(), entry.getValue());
}
}
}