io.codemodder.plugins.maven.operator.Kind 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.
The newest version!
package io.codemodder.plugins.maven.operator;
/**
* Represents a Kind of Version Pinning in a Maven File, representing the `-source` and `-target`
* flags as well as the newer `-release` flag of `javac`.
*/
enum Kind {
SOURCE,
TARGET,
RELEASE
}