Modernizer Maven Plugin detects uses of legacy APIs which modern Java versions
supersede.
These modern APIs are often more performant, safer, and idiomatic than the
legacy equivalents.
For example, Modernizer can detect uses of Vector instead of ArrayList,
String.getBytes(String) instead of String.getBytes(Charset), and
Guava Objects.equal instead of Java 7 Objects.equals.
The default configuration detects
over 200 legacy APIs,
including third-party libraries like
Apache Commons,
Guava,
and Joda-Time.
Configuration
To run Modernizer, add the following to the <plugins> stanza in your pom.xml
then invoke mvn modernizer:modernizer:
The <configuration> stanza can contain several elements:
<javaVersion> enables violations based on target Java version, e.g., 8. For example, Modernizer will detect uses of Vector as violations when targeting Java 1.2 but not when targeting Java 1.1. Required parameter.
<failOnViolations> fail phase if Modernizer detects any violations. Defaults to true.
<includeTestClasses> run Modernizer on test classes. Defaults to true.
<violationsFile> user-specified violation file. Also disables standard violation checks. Can point to classpath using absolute paths, e.g. classpath:/your/file.xml.
<violationsFiles> user-specified violations file. The latter files override violations from the former ones, including violationsFile and the default violations. Can point to classpath using absolute paths, e.g. classpath:/your/file.xml.
<exclusionsFile> disables user-specified violations. This is a text file with one exclusion per line in the javap format: java/lang/String.getBytes:(Ljava/lang/String;)[B. Empty lines and lines starting with # are ignored.
<exclusions> violations to disable. Each exclusion should be in the javap format: java/lang/String.getBytes:(Ljava/lang/String;)[B.
<exclusionPatterns> violation patterns to disable, specified using <exclusionPattern> child elements. Each exclusion should be a regular expression that matches the javap format: java/lang/.* of a violation.
<ignorePackages> package prefixes to ignore, specified using <ignorePackage> child elements. Specifying foo.bar subsequently ignores foo.bar.*, foo.bar.baz.* and so on.
<ignoreClassNamePatterns> full qualified class names (incl. package) to ignore, specified using <ignoreClassNamePattern> child elements. Each exclusion should be a regular expression that matches a package and/or class; the package will be / not . separated (ASM's format).
请发表评论