diff --git a/AntTask.html b/AntTask.html index 23b59f10..44d206db 100644 --- a/AntTask.html +++ b/AntTask.html @@ -1,13 +1,13 @@ - + japicmp-base – Ant Task @@ -34,8 +34,8 @@
@@ -153,106 +153,111 @@

Advanced Usage

false If true, report only filenames (not full paths). +reportOnlySummary +true +false +If true, report only a breakdown of classes and their status when generating plain text or html reports. + ignoreMissingClasses true n.a. Ignore all superclasses/interfaces missing on the classpath. - + ignoreMissingClassesbyRegularExpressions true n.a. Ignore only those superclasses/interface missing on the classpath that are selected by a regular expression. - + accessModifier true protected Ignore changes below the access modifier level (public, package, protected, private). - + oldClassPath true n.a. Classpath for the dependencies of the old version. - + newClassPath true n.a. Classpath for the dependencies of the new version. - + oldClassPathRef true n.a. Classpath reference for the dependencies of the old version. - + newClassPathRef true n.a. Classpath reference for the dependencies of the new version. - + includes true n.a. Semicolon separated list of elements to include in the form package.Class#classMember, * can be used as wildcard. Annotations are given as FQN starting with @. Examples: mypackage;my.Class;other.Class#method(int,long);foo.Class#field;@my.Annotation. - + excludes true n.a. Semicolon separated list of elements to exclude in the form package.Class#classMember, * can be used as wildcard. Annotations are given as FQN starting with @. Examples: mypackage;my.Class;other.Class#method(int,long);foo.Class#field;@my.Annotation. - + includeExclusively true false Include only packages specified in the “includes” parameter, exclude their sub-packages. - + excludeExclusively true false Exclude only packages specified in the “excludes” parameter, include their sub-packages. - + xmlOutputFile true n.a. Path to the xml output file. - + htmlOutputFile true n.a. Path to the html output file. - + htmlStylesheet true n.a. Path to your own stylesheet. - + errorOnBinaryIncompatibility true false Exit with an error if a binary incompatibility is detected. - + errorOnSourceIncompatibility true false Exit with an error if a source incompatibility is detected. - + errorOnModifications true false Exit with an error if any change between versions is detected. - + errorOnExclusionIncompatibility true false Ignore incompatible changes caused by an excluded class. - + errorOnSemanticIncompatibility true false Exit with an error if the binary compatibility changes are inconsistent with Semantic Versioning. This expects versions of the form Major.Minor.Patch (e.g. 1.2.3 or 1.2.3-SNAPSHOT). - + ignoreMissingOldVersion true false When errorOnSemanticIncompatibility is true, ignore non-resolvable artifacts for the old version. - + ignoreMissingNewVersion true false diff --git a/CliTool.html b/CliTool.html index f405da1f..07d9882c 100644 --- a/CliTool.html +++ b/CliTool.html @@ -1,13 +1,13 @@ - + japicmp-base – CLI-Tool @@ -34,8 +34,8 @@
@@ -75,7 +75,8 @@

CLI-Tool

[(-n <pathToNewVersionJar> | --new <pathToNewVersionJar>)] [--new-classpath <newClassPath>] [--no-annotations] [(-o <pathToOldVersionJar> | --old <pathToOldVersionJar>)] - [--old-classpath <oldClassPath>] [--report-only-filename] + [--old-classpath <oldClassPath>] + [--report-only-filename] [--report-only-summary] [(-s | --semantic-versioning)] [(-x <pathToXmlOutputFile> | --xml-file <pathToXmlOutputFile>)] [--error-on-binary-incompatibility] @@ -157,6 +158,10 @@

CLI-Tool

--report-only-filename Reports just filenames (not full paths) in report description. + --report-only-summary + Reports only a breakdown of classes and their status + when generating plain text or html reports. + -s, --semantic-versioning Tells you which part of the version to increment. @@ -196,16 +201,16 @@

CLI-Tool

When your library implements interfaces or extends classes from other libraries than the JDK and you want to evaluate binary compatibility you must specify the classpath for the two different versions:

-
java -jar japicmp-0.21.2-jar-with-dependencies.jar -n new-version.jar -o old-version.jar --new-classpath other-library-v2.jar
+
java -jar japicmp-0.22.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar --new-classpath other-library-v2.jar
     --old-classpath other-library-v1.jar
 

In case the classpath for both versions did not change, you can add the library using the standard way:

-
java -cp japicmp-0.21.2-jar-with-dependencies.jar;otherLibrary.jar japicmp.JApiCmp -n new-version.jar -o old-version.jar
+
java -cp japicmp-0.22.0-jar-with-dependencies.jar;otherLibrary.jar japicmp.JApiCmp -n new-version.jar -o old-version.jar
 

For reporting purposes you can also provide more than one jar as old or new version(s):

-
java -jar japicmp-0.21.2-jar-with-dependencies.jar -o lib1-old.jar;lib2-old.jar -n lib1-new.jar;lib2-new.jar
+
java -jar japicmp-0.22.0-jar-with-dependencies.jar -o lib1-old.jar;lib2-old.jar -n lib1-new.jar;lib2-new.jar
 
diff --git a/Examples.html b/Examples.html index 3cfc8fca..6586e11b 100644 --- a/Examples.html +++ b/Examples.html @@ -1,13 +1,13 @@ - + japicmp-base – Examples @@ -34,8 +34,8 @@
diff --git a/MavenPlugin.html b/MavenPlugin.html index 0ec4c39a..eca50bbb 100644 --- a/MavenPlugin.html +++ b/MavenPlugin.html @@ -1,13 +1,13 @@ - + japicmp-base – Maven Plugin @@ -34,8 +34,8 @@
@@ -68,7 +68,7 @@

Basic Usage

<plugin>
 	<groupId>com.github.siom79.japicmp</groupId>
 	<artifactId>japicmp-maven-plugin</artifactId>
-	<version>0.21.2</version>
+	<version>0.22.0</version>
 	<configuration>
 		<oldVersion>
 			<dependency>
@@ -102,7 +102,7 @@ 

Basic Usage

<plugin>
 	<groupId>com.github.siom79.japicmp</groupId>
 	<artifactId>japicmp-maven-plugin</artifactId>
-	<version>0.21.2</version>
+	<version>0.22.0</version>
 	<configuration>
 		<parameter>
 			<!-- see documentation -->
@@ -124,7 +124,7 @@ 

Basic Usage

<plugin>
 	<groupId>com.github.siom79.japicmp</groupId>
 	<artifactId>japicmp-maven-plugin</artifactId>
-	<version>0.21.2</version>
+	<version>0.22.0</version>
 	<configuration>
 		<parameter>
         	<oldVersionPattern>\d+\.\d+\.\d+\.GA</oldVersionPattern>
@@ -184,13 +184,13 @@ 

Advanced Usage

<plugin> <groupId>com.github.siom79.japicmp</groupId> <artifactId>japicmp-maven-plugin</artifactId> - <version>0.21.2</version> + <version>0.22.0</version> <configuration> <oldVersion> <dependency> <groupId>japicmp</groupId> <artifactId>japicmp-test-v1</artifactId> - <version>0.21.2</version> + <version>0.22.0</version> <type>jar</type> </dependency> </oldVersion> @@ -355,127 +355,132 @@

Advanced Usage

false If set to true, report will include only the artifact filename, not the complete artifact file path. +reportOnlySummary +true +false +If set to true, report only a breakdown of classes and their status when generating plain text or html reports. + ignoreMissingClasses true false If set to true, superclasses and interfaces that cannot be resolved are ignored. Pleases note that in this case the results for the affected classes may not be accurate. - + ignoreMissingClassesByRegularExpressions true n.a. List of regular expressions for superclasses and interfaces that cannot be resolved and that should be ignored. In contrast to the option ignoreMissingClasses, which ignores all missing classes, this options allows a fine-grained selection. - + accessModifier true protected Sets the access modifier level (public, protected, package_protected, private). - + includes true n.a. List of package, classes, methods and field that should be included. The syntax is similar to the one used for javadoc references. Annotations can also be used for filtering, just let the fully qualified name start with @. - + excludes true n.a. List of package, classes, methods and field that should be excluded. The syntax is similar to the one used for javadoc references. Annotations can also be used for filtering, just let the fully qualified name start with @. - + includeExclusively true false Include only packages specified in the “includes” parameter, exclude their sub-packages. - + excludeExclusively true false Exclude only packages specified in the “excludes” parameter, include their sub-packages. - + htmlStylesheet true n.a. Path to an individual CSS stylesheet for the HTML report. - + htmlTitle true n.a. A title for the HTML report (optional). - + skipPomModules true true Setting this parameter to false (default: true) will not skip execution in modules with packaging type pom. - + skip true false Setting this parameter to true will skip execution of the plugin. - + ignoreNonResolvableArtifacts true false Set this to true in order to ignore artifacts that cannot be resolved, i.e. the build does not break in case a dependency cannot be resolved to a file. - + ignoreMissingOptionalDependency true false Ignore missing optional dependencies. - + ignoreMissingOldVersion true false If set to true, not resolvable artifacts for the old version do not break the build. - + ignoreMissingNewVersion true false If set to true, not resolvable artifacts for the new version do not break the build. - + packagingSupported true n.a. List all packaging type for which the plugin should be executed. Helpful if you define the plugin in a root pom. - + postAnalysisScript true n.a. A [Groovy](http //www.groovy-lang.org/) script that gets invoked after analysis is completed and before the output is written. This way it can be used to filter the output or break the build on specific conditions. It can be an absolute path or a relative path of a file within the classpath. - + skipXmlReport true false If set to true, no XML report will be generated. - + skipHtmlReport true false If set to true, no HTML report will be generated. - + skipDiffReport true false If set to true, no diff report will be generated. - + oldVersionPattern true n.a. If <oldVersion> is not used, the old version compared against must match this regular expression. - + includeModules true n.a. List of regular expression that specify if an artifact should be excluded based on its artifact id. - + excludeModules true n.a. List of regular expression that specify if an artifact should be included based on its artifact id. - + reportLinkName true japicmp Name of the Site Report. Defaults to ‘japicmp’. You must specify different names when using a ReportSet. - + includeSnapshots true false @@ -515,197 +520,187 @@

Advanced Usage

true PATCH -CLASS_REMOVED -false +CLASS_GENERIC_TEMPLATE_CHANGED +true false -MAJOR +MINOR -CLASS_NOW_ABSTRACT -false +CLASS_GENERIC_TEMPLATE_GENERICS_CHANGED +true false -MAJOR +MINOR -CLASS_NOW_FINAL +CLASS_LESS_ACCESSIBLE false false MAJOR -CLASS_NO_LONGER_PUBLIC +CLASS_NOW_ABSTRACT false false MAJOR -CLASS_TYPE_CHANGED -false -false -MAJOR - CLASS_NOW_CHECKED_EXCEPTION true false MINOR - -CLASS_LESS_ACCESSIBLE + +CLASS_NOW_FINAL false false MAJOR - -CLASS_GENERIC_TEMPLATE_CHANGED -true -false -MINOR -CLASS_GENERIC_TEMPLATE_GENERICS_CHANGED -true +CLASS_NO_LONGER_PUBLIC false -MINOR +false +MAJOR -SUPERCLASS_REMOVED +CLASS_REMOVED false false MAJOR -SUPERCLASS_ADDED -true -true -MINOR - -SUPERCLASS_MODIFIED_INCOMPATIBLE +CLASS_TYPE_CHANGED false false MAJOR - -INTERFACE_ADDED -true -true -MINOR -INTERFACE_REMOVED +CONSTRUCTOR_LESS_ACCESSIBLE false false MAJOR -METHOD_REMOVED +CONSTRUCTOR_REMOVED false false MAJOR -METHOD_REMOVED_IN_SUPERCLASS -false +FIELD_GENERICS_CHANGED +true false -MAJOR +MINOR -METHOD_LESS_ACCESSIBLE +FIELD_LESS_ACCESSIBLE false false MAJOR -METHOD_LESS_ACCESSIBLE_THAN_IN_SUPERCLASS +FIELD_LESS_ACCESSIBLE_THAN_IN_SUPERCLASS false false MAJOR -METHOD_IS_STATIC_AND_OVERRIDES_NOT_STATIC +FIELD_NOW_FINAL false false MAJOR -METHOD_RETURN_TYPE_CHANGED +FIELD_NOW_STATIC false false MAJOR -METHOD_RETURN_TYPE_GENERICS_CHANGED +FIELD_NOW_TRANSIENT true -false -MINOR +true +PATCH -METHOD_PARAMETER_GENERICS_CHANGED +FIELD_NOW_VOLATILE true -false -MINOR +true +PATCH -METHOD_NOW_ABSTRACT +FIELD_NO_LONGER_STATIC false false MAJOR -METHOD_NOW_FINAL +FIELD_NO_LONGER_TRANSIENT +true +true +PATCH + +FIELD_NO_LONGER_VOLATILE +true +true +PATCH + +FIELD_REMOVED false false MAJOR -METHOD_NOW_STATIC +FIELD_REMOVED_IN_SUPERCLASS false false MAJOR -METHOD_NO_LONGER_STATIC +FIELD_STATIC_AND_OVERRIDES_STATIC false false MAJOR -METHOD_NOW_VARARGS -true -true -MINOR - -METHOD_NO_LONGER_VARARGS -true +FIELD_TYPE_CHANGED false -MINOR - -METHOD_ADDED_TO_INTERFACE -true false -MINOR +MAJOR -METHOD_ADDED_TO_PUBLIC_CLASS +INTERFACE_ADDED true true -PATCH +MINOR -METHOD_NOW_THROWS_CHECKED_EXCEPTION -true +INTERFACE_REMOVED false -MINOR +false +MAJOR -METHOD_NO_LONGER_THROWS_CHECKED_EXCEPTION +METHOD_ABSTRACT_ADDED_IN_IMPLEMENTED_INTERFACE true false MINOR -METHOD_ABSTRACT_ADDED_TO_CLASS +METHOD_ABSTRACT_ADDED_IN_SUPERCLASS true false MINOR -METHOD_ABSTRACT_ADDED_IN_SUPERCLASS +METHOD_ABSTRACT_ADDED_TO_CLASS true false MINOR -METHOD_ABSTRACT_ADDED_IN_IMPLEMENTED_INTERFACE -true +METHOD_ABSTRACT_NOW_DEFAULT false -MINOR +false +MAJOR -METHOD_DEFAULT_ADDED_IN_IMPLEMENTED_INTERFACE -true +METHOD_ADDED_TO_INTERFACE true +false MINOR -METHOD_NEW_DEFAULT +METHOD_ADDED_TO_PUBLIC_CLASS true true -MINOR +PATCH -METHOD_NEW_STATIC_ADDED_TO_INTERFACE +METHOD_DEFAULT_ADDED_IN_IMPLEMENTED_INTERFACE true true MINOR -METHOD_ABSTRACT_NOW_DEFAULT +METHOD_IS_STATIC_AND_OVERRIDES_NOT_STATIC +false +false +MAJOR + +METHOD_LESS_ACCESSIBLE +false +false +MAJOR + +METHOD_LESS_ACCESSIBLE_THAN_IN_SUPERCLASS false false MAJOR @@ -715,72 +710,102 @@

Advanced Usage

true PATCH -METHOD_NON_STATIC_IN_INTERFACE_NOW_STATIC +METHOD_NEW_DEFAULT true true MINOR -METHOD_STATIC_IN_INTERFACE_NO_LONGER_STATIC -false -false -MAJOR +METHOD_NEW_STATIC_ADDED_TO_INTERFACE +true +true +MINOR -FIELD_STATIC_AND_OVERRIDES_STATIC +METHOD_NON_STATIC_IN_INTERFACE_NOW_STATIC false false MAJOR -FIELD_LESS_ACCESSIBLE_THAN_IN_SUPERCLASS +METHOD_NOW_ABSTRACT false false MAJOR -FIELD_NOW_FINAL +METHOD_NOW_FINAL false false MAJOR -FIELD_NOW_STATIC +METHOD_NOW_STATIC false false MAJOR -FIELD_NO_LONGER_STATIC +METHOD_NOW_THROWS_CHECKED_EXCEPTION +true +false +MINOR + +METHOD_NOW_VARARGS +true +true +MINOR + +METHOD_NO_LONGER_STATIC false false MAJOR -FIELD_TYPE_CHANGED +METHOD_NO_LONGER_THROWS_CHECKED_EXCEPTION +true false +MINOR + +METHOD_NO_LONGER_VARARGS +true false -MAJOR +MINOR + +METHOD_PARAMETER_GENERICS_CHANGED +true +false +MINOR -FIELD_REMOVED +METHOD_REMOVED false false MAJOR -FIELD_REMOVED_IN_SUPERCLASS +METHOD_REMOVED_IN_SUPERCLASS false false MAJOR -FIELD_LESS_ACCESSIBLE +METHOD_RETURN_TYPE_CHANGED false false MAJOR -FIELD_GENERICS_CHANGED +METHOD_RETURN_TYPE_GENERICS_CHANGED true false MINOR -CONSTRUCTOR_REMOVED +METHOD_STATIC_IN_INTERFACE_NO_LONGER_STATIC false false MAJOR -CONSTRUCTOR_LESS_ACCESSIBLE +SUPERCLASS_ADDED +true +true +MINOR + +SUPERCLASS_MODIFIED_INCOMPATIBLE +false +false +MAJOR + +SUPERCLASS_REMOVED false false MAJOR @@ -828,7 +853,7 @@

Site report

<plugin> <groupId>com.github.siom79.japicmp</groupId> <artifactId>japicmp-maven-plugin</artifactId> - <version>0.21.2</version> + <version>0.22.0</version> <reportSets> <reportSet> <reports> diff --git a/ReleaseNotes.html b/ReleaseNotes.html index 7a33d0f7..244c0c80 100644 --- a/ReleaseNotes.html +++ b/ReleaseNotes.html @@ -1,13 +1,13 @@ - + japicmp-base – Versions @@ -34,8 +34,8 @@
@@ -63,6 +63,12 @@

Versions

The following versions of japicmp are available:

+

0.22.0 (2024-07-21)

+
    + +
  • New option –report-only-summary to make reports less verbose. #398
  • +
+

Available at Maven Central.

0.21.2 (2024-05-03)

    diff --git a/dependencies.html b/dependencies.html index 916e7117..f52972ae 100644 --- a/dependencies.html +++ b/dependencies.html @@ -1,13 +1,13 @@ - + japicmp-base – Project Dependencies @@ -34,8 +34,8 @@
@@ -148,7 +148,7 @@

Project Dependency Graph

Dependency Tree

    -
  • com.github.siom79.japicmp:japicmp-base:pom:0.21.3-SNAPSHOT [Information]
  • com.github.siom79.japicmp:japicmp-base:pom:0.22.0 [Information]
+
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    +- com.google.guava:guava:jar:33.0.0-jre:compile
    |  \- com.google.code.findbugs:jsr305:jar:3.0.2:compile
    +- org.mockito:mockito-core:jar:4.3.1:test
    |  +- net.bytebuddy:byte-buddy:jar:1.12.7:test
    |  |  \- com.google.code.findbugs:jsr305:jar:3.0.2:test
    |  \- net.bytebuddy:byte-buddy-agent:jar:1.12.7:test
    |     \- com.google.code.findbugs:jsr305:jar:3.0.2:test
    \- org.jsoup:jsoup:jar:1.15.3:test
       \- com.google.code.findbugs:jsr305:jar:3.0.2:test

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    +- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
    |  \- com.google.guava:guava:jar:33.0.0-jre:compile
    |     \- com.google.code.findbugs:jsr305:jar:3.0.2:compile
    +- org.mockito:mockito-core:jar:4.3.1:test
    |  +- net.bytebuddy:byte-buddy:jar:1.12.7:test
    |  |  \- com.google.code.findbugs:jsr305:jar:3.0.2:test
    |  \- net.bytebuddy:byte-buddy-agent:jar:1.12.7:test
    |     \- com.google.code.findbugs:jsr305:jar:3.0.2:test
    \- org.jsoup:jsoup:jar:1.15.3:test
       \- com.google.code.findbugs:jsr305:jar:3.0.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    +- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
    |  \- com.google.guava:guava:jar:33.0.0-jre:compile
    |     \- com.google.code.findbugs:jsr305:jar:3.0.2:compile
    +- org.mockito:mockito-core:jar:4.3.1:test
    |  +- net.bytebuddy:byte-buddy:jar:1.12.7:test
    |  |  \- com.google.code.findbugs:jsr305:jar:3.0.2:test
    |  \- net.bytebuddy:byte-buddy-agent:jar:1.12.7:test
    |     \- com.google.code.findbugs:jsr305:jar:3.0.2:test
    \- org.jsoup:jsoup:jar:1.15.3:test
       \- com.google.code.findbugs:jsr305:jar:3.0.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    +- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
    |  \- com.google.guava:guava:jar:33.0.0-jre:compile
    |     \- com.google.code.findbugs:jsr305:jar:3.0.2:compile
    +- org.mockito:mockito-core:jar:4.3.1:test
    |  +- net.bytebuddy:byte-buddy:jar:1.12.7:test
    |  |  \- com.google.code.findbugs:jsr305:jar:3.0.2:test
    |  \- net.bytebuddy:byte-buddy-agent:jar:1.12.7:test
    |     \- com.google.code.findbugs:jsr305:jar:3.0.2:test
    \- org.jsoup:jsoup:jar:1.15.3:test
       \- com.google.code.findbugs:jsr305:jar:3.0.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    +- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
    |  \- com.google.guava:guava:jar:33.0.0-jre:compile
    |     \- com.google.code.findbugs:jsr305:jar:3.0.2:compile
    +- org.mockito:mockito-core:jar:4.3.1:test
    |  +- net.bytebuddy:byte-buddy:jar:1.12.7:test
    |  |  \- com.google.code.findbugs:jsr305:jar:3.0.2:test
    |  \- net.bytebuddy:byte-buddy-agent:jar:1.12.7:test
    |     \- com.google.code.findbugs:jsr305:jar:3.0.2:test
    \- org.jsoup:jsoup:jar:1.15.3:test
       \- com.google.code.findbugs:jsr305:jar:3.0.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    +- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
    |  \- com.google.guava:guava:jar:33.0.0-jre:compile
    |     \- com.google.code.findbugs:jsr305:jar:3.0.2:compile
    +- org.mockito:mockito-core:jar:4.3.1:test
    |  +- net.bytebuddy:byte-buddy:jar:1.12.7:test
    |  |  \- com.google.code.findbugs:jsr305:jar:3.0.2:test
    |  \- net.bytebuddy:byte-buddy-agent:jar:1.12.7:test
    |     \- com.google.code.findbugs:jsr305:jar:3.0.2:test
    \- org.jsoup:jsoup:jar:1.15.3:test
       \- com.google.code.findbugs:jsr305:jar:3.0.2:compile

  • com.google.inject:guice

    @@ -130,22 +130,22 @@

    com.google.inject:guice

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    +- org.apache.maven:maven-plugin-api:jar:3.6.3:provided
    |  \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided
    |     \- com.google.inject:guice:jar:3.0:provided
    \- org.apache.maven:maven-core:jar:3.6.3:provided
       \- org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:provided
          \- com.google.inject:guice:jar:3.0:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
       |     \- com.google.inject:guice:jar:3.0:provided
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
             \- com.google.inject:guice:jar:3.0:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
       |     \- com.google.inject:guice:jar:3.0:provided
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
             \- com.google.inject:guice:jar:3.0:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
       |     \- com.google.inject:guice:jar:3.0:provided
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
             \- com.google.inject:guice:jar:3.0:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
       |     \- com.google.inject:guice:jar:3.0:provided
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
             \- com.google.inject:guice:jar:3.0:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
       |     \- com.google.inject:guice:jar:3.0:provided
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
             \- com.google.inject:guice:jar:3.0:provided

  • 3.0
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      +- org.apache.maven:maven-plugin-api:jar:3.6.3:provided
      |  \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided
      |     \- com.google.inject:guice:jar:3.0:provided
      \- org.apache.maven:maven-core:jar:3.6.3:provided
         \- org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:provided
            \- com.google.inject:guice:jar:3.0:provided

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
         |     \- com.google.inject:guice:jar:3.0:provided
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
               \- com.google.inject:guice:jar:3.0:provided

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
         |     \- com.google.inject:guice:jar:3.0:provided
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
               \- com.google.inject:guice:jar:3.0:provided

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
         |     \- com.google.inject:guice:jar:3.0:provided
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
               \- com.google.inject:guice:jar:3.0:provided

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
         |     \- com.google.inject:guice:jar:3.0:provided
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
               \- com.google.inject:guice:jar:3.0:provided

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
         |     \- com.google.inject:guice:jar:3.0:provided
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
               \- com.google.inject:guice:jar:3.0:provided

    4.2.1
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven:maven-core:jar:3.6.3:provided
         \- com.google.inject:guice:jar:no_aop:4.2.1:provided

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- com.google.inject:guice:jar:no_aop:4.2.1:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- com.google.inject:guice:jar:no_aop:4.2.1:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- com.google.inject:guice:jar:no_aop:4.2.1:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- com.google.inject:guice:jar:no_aop:4.2.1:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- com.google.inject:guice:jar:no_aop:4.2.1:compile

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven:maven-core:jar:3.6.3:provided
       \- com.google.inject:guice:jar:no_aop:4.2.1:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- com.google.inject:guice:jar:no_aop:4.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- com.google.inject:guice:jar:no_aop:4.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- com.google.inject:guice:jar:no_aop:4.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- com.google.inject:guice:jar:no_aop:4.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- com.google.inject:guice:jar:no_aop:4.2.1:compile

  • commons-collections:commons-collections

    @@ -156,42 +156,42 @@

    commons-collections:co

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
          \- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
             \- commons-collections:commons-collections:jar:3.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
                \- commons-collections:commons-collections:jar:3.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
                \- commons-collections:commons-collections:jar:3.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
                \- commons-collections:commons-collections:jar:3.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
                \- commons-collections:commons-collections:jar:3.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
                \- commons-collections:commons-collections:jar:3.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
          \- org.apache.velocity:velocity-tools:jar:2.0:compile
             \- commons-collections:commons-collections:jar:3.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- commons-collections:commons-collections:jar:3.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- commons-collections:commons-collections:jar:3.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- commons-collections:commons-collections:jar:3.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- commons-collections:commons-collections:jar:3.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- commons-collections:commons-collections:jar:3.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
          \- org.apache.velocity:velocity:jar:1.7:compile
             \- commons-collections:commons-collections:jar:3.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity:jar:1.7:compile
                \- commons-collections:commons-collections:jar:3.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity:jar:1.7:compile
                \- commons-collections:commons-collections:jar:3.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity:jar:1.7:compile
                \- commons-collections:commons-collections:jar:3.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity:jar:1.7:compile
                \- commons-collections:commons-collections:jar:3.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity:jar:1.7:compile
                \- commons-collections:commons-collections:jar:3.2.1:compile

  • 3.1
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
            \- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
               \- commons-collections:commons-collections:jar:3.1:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
                  \- commons-collections:commons-collections:jar:3.1:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
                  \- commons-collections:commons-collections:jar:3.1:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
                  \- commons-collections:commons-collections:jar:3.1:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
                  \- commons-collections:commons-collections:jar:3.1:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
                  \- commons-collections:commons-collections:jar:3.1:compile

    3.2
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
            \- org.apache.velocity:velocity-tools:jar:2.0:compile
               \- commons-collections:commons-collections:jar:3.2:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- commons-collections:commons-collections:jar:3.2:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- commons-collections:commons-collections:jar:3.2:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- commons-collections:commons-collections:jar:3.2:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- commons-collections:commons-collections:jar:3.2:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- commons-collections:commons-collections:jar:3.2:compile

    3.2.1
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
            \- org.apache.velocity:velocity:jar:1.7:compile
               \- commons-collections:commons-collections:jar:3.2.1:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity:jar:1.7:compile
                  \- commons-collections:commons-collections:jar:3.2.1:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity:jar:1.7:compile
                  \- commons-collections:commons-collections:jar:3.2.1:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity:jar:1.7:compile
                  \- commons-collections:commons-collections:jar:3.2.1:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity:jar:1.7:compile
                  \- commons-collections:commons-collections:jar:3.2.1:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity:jar:1.7:compile
                  \- commons-collections:commons-collections:jar:3.2.1:compile

    3.2.2
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
            \- commons-collections:commons-collections:jar:3.2.2:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- commons-collections:commons-collections:jar:3.2.2:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- commons-collections:commons-collections:jar:3.2.2:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- commons-collections:commons-collections:jar:3.2.2:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- commons-collections:commons-collections:jar:3.2.2:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- commons-collections:commons-collections:jar:3.2.2:compile

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
          \- commons-collections:commons-collections:jar:3.2.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- commons-collections:commons-collections:jar:3.2.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- commons-collections:commons-collections:jar:3.2.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- commons-collections:commons-collections:jar:3.2.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- commons-collections:commons-collections:jar:3.2.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- commons-collections:commons-collections:jar:3.2.2:compile

  • commons-digester:commons-digester

    @@ -202,22 +202,22 @@

    commons-digester:commons-dig

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
          \- org.apache.velocity:velocity-tools:jar:2.0:compile
             \- commons-chain:commons-chain:jar:1.1:compile
                \- commons-digester:commons-digester:jar:1.6:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- commons-chain:commons-chain:jar:1.1:compile
                   \- commons-digester:commons-digester:jar:1.6:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- commons-chain:commons-chain:jar:1.1:compile
                   \- commons-digester:commons-digester:jar:1.6:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- commons-chain:commons-chain:jar:1.1:compile
                   \- commons-digester:commons-digester:jar:1.6:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- commons-chain:commons-chain:jar:1.1:compile
                   \- commons-digester:commons-digester:jar:1.6:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- commons-chain:commons-chain:jar:1.1:compile
                   \- commons-digester:commons-digester:jar:1.6:compile

  • 1.6
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
            \- org.apache.velocity:velocity-tools:jar:2.0:compile
               \- commons-chain:commons-chain:jar:1.1:compile
                  \- commons-digester:commons-digester:jar:1.6:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- commons-chain:commons-chain:jar:1.1:compile
                     \- commons-digester:commons-digester:jar:1.6:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- commons-chain:commons-chain:jar:1.1:compile
                     \- commons-digester:commons-digester:jar:1.6:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- commons-chain:commons-chain:jar:1.1:compile
                     \- commons-digester:commons-digester:jar:1.6:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- commons-chain:commons-chain:jar:1.1:compile
                     \- commons-digester:commons-digester:jar:1.6:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- commons-chain:commons-chain:jar:1.1:compile
                     \- commons-digester:commons-digester:jar:1.6:compile

    1.8
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
            \- org.apache.velocity:velocity-tools:jar:2.0:compile
               \- commons-digester:commons-digester:jar:1.8:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- commons-digester:commons-digester:jar:1.8:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- commons-digester:commons-digester:jar:1.8:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- commons-digester:commons-digester:jar:1.8:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- commons-digester:commons-digester:jar:1.8:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- commons-digester:commons-digester:jar:1.8:compile

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
          \- org.apache.velocity:velocity-tools:jar:2.0:compile
             \- commons-digester:commons-digester:jar:1.8:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- commons-digester:commons-digester:jar:1.8:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- commons-digester:commons-digester:jar:1.8:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- commons-digester:commons-digester:jar:1.8:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- commons-digester:commons-digester:jar:1.8:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- commons-digester:commons-digester:jar:1.8:compile

  • commons-logging:commons-logging

    @@ -228,32 +228,32 @@

    commons-logging:commons-loggin

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
          \- org.apache.velocity:velocity-tools:jar:2.0:compile
             +- commons-beanutils:commons-beanutils:jar:1.7.0:compile
             |  \- commons-logging:commons-logging:jar:1.0.3:compile
             \- commons-chain:commons-chain:jar:1.1:compile
                \- commons-logging:commons-logging:jar:1.0.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                +- commons-beanutils:commons-beanutils:jar:1.7.0:compile
                |  \- commons-logging:commons-logging:jar:1.0.3:compile
                \- commons-chain:commons-chain:jar:1.1:compile
                   \- commons-logging:commons-logging:jar:1.0.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                +- commons-beanutils:commons-beanutils:jar:1.7.0:compile
                |  \- commons-logging:commons-logging:jar:1.0.3:compile
                \- commons-chain:commons-chain:jar:1.1:compile
                   \- commons-logging:commons-logging:jar:1.0.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                +- commons-beanutils:commons-beanutils:jar:1.7.0:compile
                |  \- commons-logging:commons-logging:jar:1.0.3:compile
                \- commons-chain:commons-chain:jar:1.1:compile
                   \- commons-logging:commons-logging:jar:1.0.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                +- commons-beanutils:commons-beanutils:jar:1.7.0:compile
                |  \- commons-logging:commons-logging:jar:1.0.3:compile
                \- commons-chain:commons-chain:jar:1.1:compile
                   \- commons-logging:commons-logging:jar:1.0.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                +- commons-beanutils:commons-beanutils:jar:1.7.0:compile
                |  \- commons-logging:commons-logging:jar:1.0.3:compile
                \- commons-chain:commons-chain:jar:1.1:compile
                   \- commons-logging:commons-logging:jar:1.0.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
          +- org.apache.velocity:velocity:jar:1.7:compile
          |  \- commons-logging:commons-logging:jar:1.1:provided
          \- org.apache.velocity:velocity-tools:jar:2.0:compile
             +- commons-digester:commons-digester:jar:1.8:compile
             |  \- commons-logging:commons-logging:jar:1.1:compile
             \- commons-logging:commons-logging:jar:1.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.apache.velocity:velocity:jar:1.7:compile
             |  \- commons-logging:commons-logging:jar:1.1:provided
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                +- commons-digester:commons-digester:jar:1.8:compile
                |  \- commons-logging:commons-logging:jar:1.1:compile
                \- commons-logging:commons-logging:jar:1.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.apache.velocity:velocity:jar:1.7:compile
             |  \- commons-logging:commons-logging:jar:1.1:provided
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                +- commons-digester:commons-digester:jar:1.8:compile
                |  \- commons-logging:commons-logging:jar:1.1:compile
                \- commons-logging:commons-logging:jar:1.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.apache.velocity:velocity:jar:1.7:compile
             |  \- commons-logging:commons-logging:jar:1.1:provided
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                +- commons-digester:commons-digester:jar:1.8:compile
                |  \- commons-logging:commons-logging:jar:1.1:compile
                \- commons-logging:commons-logging:jar:1.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.apache.velocity:velocity:jar:1.7:compile
             |  \- commons-logging:commons-logging:jar:1.1:provided
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                +- commons-digester:commons-digester:jar:1.8:compile
                |  \- commons-logging:commons-logging:jar:1.1:compile
                \- commons-logging:commons-logging:jar:1.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.apache.velocity:velocity:jar:1.7:compile
             |  \- commons-logging:commons-logging:jar:1.1:provided
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                +- commons-digester:commons-digester:jar:1.8:compile
                |  \- commons-logging:commons-logging:jar:1.1:compile
                \- commons-logging:commons-logging:jar:1.1:compile

  • 1.0.3
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
            \- org.apache.velocity:velocity-tools:jar:2.0:compile
               +- commons-beanutils:commons-beanutils:jar:1.7.0:compile
               |  \- commons-logging:commons-logging:jar:1.0.3:compile
               \- commons-chain:commons-chain:jar:1.1:compile
                  \- commons-logging:commons-logging:jar:1.0.3:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  +- commons-beanutils:commons-beanutils:jar:1.7.0:compile
                  |  \- commons-logging:commons-logging:jar:1.0.3:compile
                  \- commons-chain:commons-chain:jar:1.1:compile
                     \- commons-logging:commons-logging:jar:1.0.3:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  +- commons-beanutils:commons-beanutils:jar:1.7.0:compile
                  |  \- commons-logging:commons-logging:jar:1.0.3:compile
                  \- commons-chain:commons-chain:jar:1.1:compile
                     \- commons-logging:commons-logging:jar:1.0.3:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  +- commons-beanutils:commons-beanutils:jar:1.7.0:compile
                  |  \- commons-logging:commons-logging:jar:1.0.3:compile
                  \- commons-chain:commons-chain:jar:1.1:compile
                     \- commons-logging:commons-logging:jar:1.0.3:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  +- commons-beanutils:commons-beanutils:jar:1.7.0:compile
                  |  \- commons-logging:commons-logging:jar:1.0.3:compile
                  \- commons-chain:commons-chain:jar:1.1:compile
                     \- commons-logging:commons-logging:jar:1.0.3:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  +- commons-beanutils:commons-beanutils:jar:1.7.0:compile
                  |  \- commons-logging:commons-logging:jar:1.0.3:compile
                  \- commons-chain:commons-chain:jar:1.1:compile
                     \- commons-logging:commons-logging:jar:1.0.3:compile

    1.1
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
            +- org.apache.velocity:velocity:jar:1.7:compile
            |  \- commons-logging:commons-logging:jar:1.1:provided
            \- org.apache.velocity:velocity-tools:jar:2.0:compile
               +- commons-digester:commons-digester:jar:1.8:compile
               |  \- commons-logging:commons-logging:jar:1.1:compile
               \- commons-logging:commons-logging:jar:1.1:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.apache.velocity:velocity:jar:1.7:compile
               |  \- commons-logging:commons-logging:jar:1.1:provided
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  +- commons-digester:commons-digester:jar:1.8:compile
                  |  \- commons-logging:commons-logging:jar:1.1:compile
                  \- commons-logging:commons-logging:jar:1.1:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.apache.velocity:velocity:jar:1.7:compile
               |  \- commons-logging:commons-logging:jar:1.1:provided
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  +- commons-digester:commons-digester:jar:1.8:compile
                  |  \- commons-logging:commons-logging:jar:1.1:compile
                  \- commons-logging:commons-logging:jar:1.1:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.apache.velocity:velocity:jar:1.7:compile
               |  \- commons-logging:commons-logging:jar:1.1:provided
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  +- commons-digester:commons-digester:jar:1.8:compile
                  |  \- commons-logging:commons-logging:jar:1.1:compile
                  \- commons-logging:commons-logging:jar:1.1:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.apache.velocity:velocity:jar:1.7:compile
               |  \- commons-logging:commons-logging:jar:1.1:provided
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  +- commons-digester:commons-digester:jar:1.8:compile
                  |  \- commons-logging:commons-logging:jar:1.1:compile
                  \- commons-logging:commons-logging:jar:1.1:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.apache.velocity:velocity:jar:1.7:compile
               |  \- commons-logging:commons-logging:jar:1.1:provided
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  +- commons-digester:commons-digester:jar:1.8:compile
                  |  \- commons-logging:commons-logging:jar:1.1:compile
                  \- commons-logging:commons-logging:jar:1.1:compile

    1.2
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
               \- commons-logging:commons-logging:jar:1.2:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                  \- commons-logging:commons-logging:jar:1.2:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                  \- commons-logging:commons-logging:jar:1.2:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                  \- commons-logging:commons-logging:jar:1.2:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                  \- commons-logging:commons-logging:jar:1.2:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                  \- commons-logging:commons-logging:jar:1.2:compile

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
             \- commons-logging:commons-logging:jar:1.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                \- commons-logging:commons-logging:jar:1.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                \- commons-logging:commons-logging:jar:1.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                \- commons-logging:commons-logging:jar:1.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                \- commons-logging:commons-logging:jar:1.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                \- commons-logging:commons-logging:jar:1.2:compile

  • org.apache.commons:commons-lang3

    @@ -264,22 +264,22 @@

    org.apache.commons:commons-la

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          \- org.apache.commons:commons-text:jar:1.3:compile
             \- org.apache.commons:commons-lang3:jar:3.7:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.commons:commons-text:jar:1.3:compile
                \- org.apache.commons:commons-lang3:jar:3.7:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.commons:commons-text:jar:1.3:compile
                \- org.apache.commons:commons-lang3:jar:3.7:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.commons:commons-text:jar:1.3:compile
                \- org.apache.commons:commons-lang3:jar:3.7:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.commons:commons-text:jar:1.3:compile
                \- org.apache.commons:commons-lang3:jar:3.7:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.commons:commons-text:jar:1.3:compile
                \- org.apache.commons:commons-lang3:jar:3.7:compile

  • 3.7
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            \- org.apache.commons:commons-text:jar:1.3:compile
               \- org.apache.commons:commons-lang3:jar:3.7:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.commons:commons-text:jar:1.3:compile
                  \- org.apache.commons:commons-lang3:jar:3.7:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.commons:commons-text:jar:1.3:compile
                  \- org.apache.commons:commons-lang3:jar:3.7:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.commons:commons-text:jar:1.3:compile
                  \- org.apache.commons:commons-lang3:jar:3.7:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.commons:commons-text:jar:1.3:compile
                  \- org.apache.commons:commons-lang3:jar:3.7:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.commons:commons-text:jar:1.3:compile
                  \- org.apache.commons:commons-lang3:jar:3.7:compile

    3.8.1
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      +- org.apache.maven:maven-artifact:jar:3.6.3:provided
      |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
      +- org.apache.maven:maven-core:jar:3.6.3:provided
      |  \- org.apache.commons:commons-lang3:jar:3.8.1:provided
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
         |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
         \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
            \- org.apache.commons:commons-lang3:jar:3.8.1:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-artifact:jar:3.6.3:compile
         |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
         +- org.apache.maven:maven-core:jar:3.6.3:compile
         |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.commons:commons-lang3:jar:3.8.1:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-artifact:jar:3.6.3:compile
         |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
         +- org.apache.maven:maven-core:jar:3.6.3:compile
         |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.commons:commons-lang3:jar:3.8.1:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-artifact:jar:3.6.3:compile
         |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
         +- org.apache.maven:maven-core:jar:3.6.3:compile
         |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.commons:commons-lang3:jar:3.8.1:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-artifact:jar:3.6.3:compile
         |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
         +- org.apache.maven:maven-core:jar:3.6.3:compile
         |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.commons:commons-lang3:jar:3.8.1:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-artifact:jar:3.6.3:compile
         |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
         +- org.apache.maven:maven-core:jar:3.6.3:compile
         |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.commons:commons-lang3:jar:3.8.1:compile

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    +- org.apache.maven:maven-artifact:jar:3.6.3:provided
    |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
    +- org.apache.maven:maven-core:jar:3.6.3:provided
    |  \- org.apache.commons:commons-lang3:jar:3.8.1:provided
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
       |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
       \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
          \- org.apache.commons:commons-lang3:jar:3.8.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-artifact:jar:3.6.3:compile
       |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
       +- org.apache.maven:maven-core:jar:3.6.3:compile
       |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.commons:commons-lang3:jar:3.8.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-artifact:jar:3.6.3:compile
       |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
       +- org.apache.maven:maven-core:jar:3.6.3:compile
       |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.commons:commons-lang3:jar:3.8.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-artifact:jar:3.6.3:compile
       |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
       +- org.apache.maven:maven-core:jar:3.6.3:compile
       |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.commons:commons-lang3:jar:3.8.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-artifact:jar:3.6.3:compile
       |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
       +- org.apache.maven:maven-core:jar:3.6.3:compile
       |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.commons:commons-lang3:jar:3.8.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-artifact:jar:3.6.3:compile
       |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
       +- org.apache.maven:maven-core:jar:3.6.3:compile
       |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          |  \- org.apache.commons:commons-lang3:jar:3.8.1:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.commons:commons-lang3:jar:3.8.1:compile

  • org.apache.httpcomponents:httpcore

    @@ -290,22 +290,22 @@

    org.apache.httpcomponents:h

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
             \- org.apache.httpcomponents:httpcore:jar:4.4.13:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                \- org.apache.httpcomponents:httpcore:jar:4.4.13:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                \- org.apache.httpcomponents:httpcore:jar:4.4.13:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                \- org.apache.httpcomponents:httpcore:jar:4.4.13:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                \- org.apache.httpcomponents:httpcore:jar:4.4.13:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                \- org.apache.httpcomponents:httpcore:jar:4.4.13:compile

  • 4.4.13
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
               \- org.apache.httpcomponents:httpcore:jar:4.4.13:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                  \- org.apache.httpcomponents:httpcore:jar:4.4.13:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                  \- org.apache.httpcomponents:httpcore:jar:4.4.13:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                  \- org.apache.httpcomponents:httpcore:jar:4.4.13:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                  \- org.apache.httpcomponents:httpcore:jar:4.4.13:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.httpcomponents:httpclient:jar:4.5.13:compile
                  \- org.apache.httpcomponents:httpcore:jar:4.4.13:compile

    4.4.14
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            \- org.apache.httpcomponents:httpcore:jar:4.4.14:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.httpcomponents:httpcore:jar:4.4.14:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.httpcomponents:httpcore:jar:4.4.14:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.httpcomponents:httpcore:jar:4.4.14:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.httpcomponents:httpcore:jar:4.4.14:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
               \- org.apache.httpcomponents:httpcore:jar:4.4.14:compile

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          \- org.apache.httpcomponents:httpcore:jar:4.4.14:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.httpcomponents:httpcore:jar:4.4.14:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.httpcomponents:httpcore:jar:4.4.14:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.httpcomponents:httpcore:jar:4.4.14:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.httpcomponents:httpcore:jar:4.4.14:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
             \- org.apache.httpcomponents:httpcore:jar:4.4.14:compile

  • org.apache.maven.plugin-tools:maven-plugin-annotations

    @@ -316,22 +316,22 @@

    org.apa

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.5.2:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.5.2:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.5.2:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.5.2:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.5.2:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.5.2:provided

  • 3.5.2
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.5.2:provided

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.5.2:provided

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.5.2:provided

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.5.2:provided

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.5.2:provided

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.5.2:provided

    3.6.4
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.6.4:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.6.4:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.6.4:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.6.4:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.6.4:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.6.4:compile

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.6.4:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.6.4:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.6.4:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.6.4:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.6.4:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.6.4:compile

  • org.apache.maven.shared:maven-shared-utils

    @@ -342,22 +342,22 @@

    org.apache.maven.sh

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven:maven-core:jar:3.6.3:provided
       \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile

  • 3.2.1
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven:maven-core:jar:3.6.3:provided
         \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile

    3.3.3
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.shared:maven-shared-utils:jar:3.3.3:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.shared:maven-shared-utils:jar:3.3.3:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.shared:maven-shared-utils:jar:3.3.3:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.shared:maven-shared-utils:jar:3.3.3:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.shared:maven-shared-utils:jar:3.3.3:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.shared:maven-shared-utils:jar:3.3.3:compile

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.shared:maven-shared-utils:jar:3.3.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.shared:maven-shared-utils:jar:3.3.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.shared:maven-shared-utils:jar:3.3.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.shared:maven-shared-utils:jar:3.3.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.shared:maven-shared-utils:jar:3.3.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.shared:maven-shared-utils:jar:3.3.3:compile

  • org.apache.maven:maven-artifact

    @@ -368,22 +368,22 @@

    org.apache.maven:maven-artifac

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
          \- org.apache.maven:maven-artifact:jar:3.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.maven:maven-artifact:jar:3.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.maven:maven-artifact:jar:3.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.maven:maven-artifact:jar:3.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.maven:maven-artifact:jar:3.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.maven:maven-artifact:jar:3.0:compile

  • 3.0
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
            \- org.apache.maven:maven-artifact:jar:3.0:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.maven:maven-artifact:jar:3.0:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.maven:maven-artifact:jar:3.0:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.maven:maven-artifact:jar:3.0:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.maven:maven-artifact:jar:3.0:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.maven:maven-artifact:jar:3.0:compile

    3.6.3
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      +- org.apache.maven:maven-plugin-api:jar:3.6.3:provided
      |  \- org.apache.maven:maven-artifact:jar:3.6.3:provided
      +- org.apache.maven:maven-artifact:jar:3.6.3:provided
      \- org.apache.maven:maven-core:jar:3.6.3:provided
         +- org.apache.maven:maven-artifact:jar:3.6.3:provided
         \- org.apache.maven:maven-model-builder:jar:3.6.3:provided
            \- org.apache.maven:maven-artifact:jar:3.6.3:provided

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  \- org.apache.maven:maven-artifact:jar:3.6.3:compile
         +- org.apache.maven:maven-artifact:jar:3.6.3:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            +- org.apache.maven:maven-artifact:jar:3.6.3:compile
            \- org.apache.maven:maven-model-builder:jar:3.6.3:compile
               \- org.apache.maven:maven-artifact:jar:3.6.3:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  \- org.apache.maven:maven-artifact:jar:3.6.3:compile
         +- org.apache.maven:maven-artifact:jar:3.6.3:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            +- org.apache.maven:maven-artifact:jar:3.6.3:compile
            \- org.apache.maven:maven-model-builder:jar:3.6.3:compile
               \- org.apache.maven:maven-artifact:jar:3.6.3:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  \- org.apache.maven:maven-artifact:jar:3.6.3:compile
         +- org.apache.maven:maven-artifact:jar:3.6.3:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            +- org.apache.maven:maven-artifact:jar:3.6.3:compile
            \- org.apache.maven:maven-model-builder:jar:3.6.3:compile
               \- org.apache.maven:maven-artifact:jar:3.6.3:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  \- org.apache.maven:maven-artifact:jar:3.6.3:compile
         +- org.apache.maven:maven-artifact:jar:3.6.3:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            +- org.apache.maven:maven-artifact:jar:3.6.3:compile
            \- org.apache.maven:maven-model-builder:jar:3.6.3:compile
               \- org.apache.maven:maven-artifact:jar:3.6.3:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  \- org.apache.maven:maven-artifact:jar:3.6.3:compile
         +- org.apache.maven:maven-artifact:jar:3.6.3:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            +- org.apache.maven:maven-artifact:jar:3.6.3:compile
            \- org.apache.maven:maven-model-builder:jar:3.6.3:compile
               \- org.apache.maven:maven-artifact:jar:3.6.3:compile

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    +- org.apache.maven:maven-plugin-api:jar:3.6.3:provided
    |  \- org.apache.maven:maven-artifact:jar:3.6.3:provided
    +- org.apache.maven:maven-artifact:jar:3.6.3:provided
    \- org.apache.maven:maven-core:jar:3.6.3:provided
       +- org.apache.maven:maven-artifact:jar:3.6.3:provided
       \- org.apache.maven:maven-model-builder:jar:3.6.3:provided
          \- org.apache.maven:maven-artifact:jar:3.6.3:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  \- org.apache.maven:maven-artifact:jar:3.6.3:compile
       +- org.apache.maven:maven-artifact:jar:3.6.3:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          +- org.apache.maven:maven-artifact:jar:3.6.3:compile
          \- org.apache.maven:maven-model-builder:jar:3.6.3:compile
             \- org.apache.maven:maven-artifact:jar:3.6.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  \- org.apache.maven:maven-artifact:jar:3.6.3:compile
       +- org.apache.maven:maven-artifact:jar:3.6.3:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          +- org.apache.maven:maven-artifact:jar:3.6.3:compile
          \- org.apache.maven:maven-model-builder:jar:3.6.3:compile
             \- org.apache.maven:maven-artifact:jar:3.6.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  \- org.apache.maven:maven-artifact:jar:3.6.3:compile
       +- org.apache.maven:maven-artifact:jar:3.6.3:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          +- org.apache.maven:maven-artifact:jar:3.6.3:compile
          \- org.apache.maven:maven-model-builder:jar:3.6.3:compile
             \- org.apache.maven:maven-artifact:jar:3.6.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  \- org.apache.maven:maven-artifact:jar:3.6.3:compile
       +- org.apache.maven:maven-artifact:jar:3.6.3:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          +- org.apache.maven:maven-artifact:jar:3.6.3:compile
          \- org.apache.maven:maven-model-builder:jar:3.6.3:compile
             \- org.apache.maven:maven-artifact:jar:3.6.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  \- org.apache.maven:maven-artifact:jar:3.6.3:compile
       +- org.apache.maven:maven-artifact:jar:3.6.3:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          +- org.apache.maven:maven-artifact:jar:3.6.3:compile
          \- org.apache.maven:maven-model-builder:jar:3.6.3:compile
             \- org.apache.maven:maven-artifact:jar:3.6.3:compile

  • org.apache.maven:maven-core

    @@ -394,22 +394,22 @@

    org.apache.maven:maven-core

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven:maven-core:jar:3.1.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven:maven-core:jar:3.1.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven:maven-core:jar:3.1.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven:maven-core:jar:3.1.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven:maven-core:jar:3.1.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven:maven-core:jar:3.1.0:compile

  • 3.1.0
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven:maven-core:jar:3.1.0:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven:maven-core:jar:3.1.0:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven:maven-core:jar:3.1.0:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven:maven-core:jar:3.1.0:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven:maven-core:jar:3.1.0:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven:maven-core:jar:3.1.0:compile

    3.6.3
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven:maven-core:jar:3.6.3:provided

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven:maven-core:jar:3.6.3:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile

  • org.apache.maven:maven-plugin-api

    @@ -420,22 +420,22 @@

    org.apache.maven:maven-plugi

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven:maven-plugin-api:jar:3.1.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven:maven-plugin-api:jar:3.1.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven:maven-plugin-api:jar:3.1.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven:maven-plugin-api:jar:3.1.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven:maven-plugin-api:jar:3.1.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven:maven-plugin-api:jar:3.1.0:compile

  • 3.1.0
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven:maven-plugin-api:jar:3.1.0:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven:maven-plugin-api:jar:3.1.0:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven:maven-plugin-api:jar:3.1.0:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven:maven-plugin-api:jar:3.1.0:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven:maven-plugin-api:jar:3.1.0:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven:maven-plugin-api:jar:3.1.0:compile

    3.6.3
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      +- org.apache.maven:maven-plugin-api:jar:3.6.3:provided
      \- org.apache.maven:maven-core:jar:3.6.3:provided
         \- org.apache.maven:maven-plugin-api:jar:3.6.3:provided

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    +- org.apache.maven:maven-plugin-api:jar:3.6.3:provided
    \- org.apache.maven:maven-core:jar:3.6.3:provided
       \- org.apache.maven:maven-plugin-api:jar:3.6.3:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile

  • org.apache.velocity:velocity

    @@ -446,22 +446,22 @@

    org.apache.velocity:velocity

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
          \- org.apache.velocity:velocity-tools:jar:2.0:compile
             \- org.apache.velocity:velocity:jar:1.6.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- org.apache.velocity:velocity:jar:1.6.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- org.apache.velocity:velocity:jar:1.6.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- org.apache.velocity:velocity:jar:1.6.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- org.apache.velocity:velocity:jar:1.6.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.apache.velocity:velocity-tools:jar:2.0:compile
                \- org.apache.velocity:velocity:jar:1.6.2:compile

  • 1.6.2
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
            \- org.apache.velocity:velocity-tools:jar:2.0:compile
               \- org.apache.velocity:velocity:jar:1.6.2:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- org.apache.velocity:velocity:jar:1.6.2:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- org.apache.velocity:velocity:jar:1.6.2:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- org.apache.velocity:velocity:jar:1.6.2:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- org.apache.velocity:velocity:jar:1.6.2:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.apache.velocity:velocity-tools:jar:2.0:compile
                  \- org.apache.velocity:velocity:jar:1.6.2:compile

    1.7
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
            +- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
            |  \- org.apache.velocity:velocity:jar:1.7:compile
            \- org.apache.velocity:velocity:jar:1.7:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
               |  \- org.apache.velocity:velocity:jar:1.7:compile
               \- org.apache.velocity:velocity:jar:1.7:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
               |  \- org.apache.velocity:velocity:jar:1.7:compile
               \- org.apache.velocity:velocity:jar:1.7:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
               |  \- org.apache.velocity:velocity:jar:1.7:compile
               \- org.apache.velocity:velocity:jar:1.7:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
               |  \- org.apache.velocity:velocity:jar:1.7:compile
               \- org.apache.velocity:velocity:jar:1.7:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
               |  \- org.apache.velocity:velocity:jar:1.7:compile
               \- org.apache.velocity:velocity:jar:1.7:compile

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
          +- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
          |  \- org.apache.velocity:velocity:jar:1.7:compile
          \- org.apache.velocity:velocity:jar:1.7:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
             |  \- org.apache.velocity:velocity:jar:1.7:compile
             \- org.apache.velocity:velocity:jar:1.7:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
             |  \- org.apache.velocity:velocity:jar:1.7:compile
             \- org.apache.velocity:velocity:jar:1.7:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
             |  \- org.apache.velocity:velocity:jar:1.7:compile
             \- org.apache.velocity:velocity:jar:1.7:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
             |  \- org.apache.velocity:velocity:jar:1.7:compile
             \- org.apache.velocity:velocity:jar:1.7:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.codehaus.plexus:plexus-velocity:jar:1.2:compile
             |  \- org.apache.velocity:velocity:jar:1.7:compile
             \- org.apache.velocity:velocity:jar:1.7:compile

  • org.codehaus.plexus:plexus-classworlds

    @@ -472,22 +472,22 @@

    org.codehaus.plexus:ple

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven:maven-plugin-api:jar:3.6.3:provided
       \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided
          \- org.codehaus.plexus:plexus-classworlds:jar:2.5.2:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
             \- org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
             \- org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
             \- org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
             \- org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
             \- org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile

  • 2.5.2
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven:maven-plugin-api:jar:3.6.3:provided
         \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided
            \- org.codehaus.plexus:plexus-classworlds:jar:2.5.2:provided

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
               \- org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
               \- org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
               \- org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
               \- org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
               \- org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile

    2.6.0
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      +- org.apache.maven:maven-plugin-api:jar:3.6.3:provided
      |  \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:provided
      \- org.apache.maven:maven-core:jar:3.6.3:provided
         \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:provided

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    +- org.apache.maven:maven-plugin-api:jar:3.6.3:provided
    |  \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:provided
    \- org.apache.maven:maven-core:jar:3.6.3:provided
       \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile

  • org.codehaus.plexus:plexus-component-annotations

    @@ -498,32 +498,32 @@

    org.codehaus.

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven:maven-plugin-api:jar:3.6.3:provided
       \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided
          \- org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
             \- org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
             \- org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
             \- org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
             \- org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
             \- org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile

  • +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
       |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile
       \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
          \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile

  • 1.5.5
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven:maven-plugin-api:jar:3.6.3:provided
         \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided
            \- org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:provided

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
               \- org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
               \- org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
               \- org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
               \- org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
               \- org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile

    2.0.0
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
         |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile
         \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
            \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.codehaus.plexus:plexus-component-annotations:jar:2.0.0:compile

    2.1.0
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      +- org.apache.maven:maven-core:jar:3.6.3:provided
      |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
         |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
         \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
            +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
            \- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
               \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-core:jar:3.6.3:compile
         |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
               \- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
                  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-core:jar:3.6.3:compile
         |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
               \- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
                  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-core:jar:3.6.3:compile
         |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
               \- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
                  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-core:jar:3.6.3:compile
         |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
               \- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
                  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-core:jar:3.6.3:compile
         |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
               \- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
                  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    +- org.apache.maven:maven-core:jar:3.6.3:provided
    |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
       |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
       \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
          +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
          \- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
             \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-core:jar:3.6.3:compile
       |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
             \- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
                \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-core:jar:3.6.3:compile
       |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
             \- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
                \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-core:jar:3.6.3:compile
       |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
             \- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
                \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-core:jar:3.6.3:compile
       |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
             \- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
                \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-core:jar:3.6.3:compile
       |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile
             \- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
                \- org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile

  • org.codehaus.plexus:plexus-container-default

    @@ -534,22 +534,22 @@

    org.codehaus.plex

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven:maven-core:jar:3.6.3:provided
       \- org.apache.maven:maven-settings-builder:jar:3.6.3:provided
          \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:provided
             +- org.sonatype.plexus:plexus-cipher:jar:1.4:provided
             |  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided
             \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
             \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                +- org.sonatype.plexus:plexus-cipher:jar:1.4:compile
                |  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided
                \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
             \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                +- org.sonatype.plexus:plexus-cipher:jar:1.4:compile
                |  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided
                \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
             \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                +- org.sonatype.plexus:plexus-cipher:jar:1.4:compile
                |  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided
                \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
             \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                +- org.sonatype.plexus:plexus-cipher:jar:1.4:compile
                |  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided
                \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
             \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                +- org.sonatype.plexus:plexus-cipher:jar:1.4:compile
                |  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided
                \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided

  • 1.0-alpha-9-stable-1
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven:maven-core:jar:3.6.3:provided
         \- org.apache.maven:maven-settings-builder:jar:3.6.3:provided
            \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:provided
               +- org.sonatype.plexus:plexus-cipher:jar:1.4:provided
               |  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided
               \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
               \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                  +- org.sonatype.plexus:plexus-cipher:jar:1.4:compile
                  |  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided
                  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
               \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                  +- org.sonatype.plexus:plexus-cipher:jar:1.4:compile
                  |  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided
                  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
               \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                  +- org.sonatype.plexus:plexus-cipher:jar:1.4:compile
                  |  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided
                  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
               \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                  +- org.sonatype.plexus:plexus-cipher:jar:1.4:compile
                  |  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided
                  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
               \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                  +- org.sonatype.plexus:plexus-cipher:jar:1.4:compile
                  |  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided
                  \- org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:provided

    1.7.1
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven:maven-core:jar:3.6.3:provided
         \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
            \- org.codehaus.plexus:plexus-container-default:jar:1.7.1:provided

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
               \- org.codehaus.plexus:plexus-container-default:jar:1.7.1:provided

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
               \- org.codehaus.plexus:plexus-container-default:jar:1.7.1:provided

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
               \- org.codehaus.plexus:plexus-container-default:jar:1.7.1:provided

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
               \- org.codehaus.plexus:plexus-container-default:jar:1.7.1:provided

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
               \- org.codehaus.plexus:plexus-container-default:jar:1.7.1:provided

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven:maven-core:jar:3.6.3:provided
       \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
          \- org.codehaus.plexus:plexus-container-default:jar:1.7.1:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
             \- org.codehaus.plexus:plexus-container-default:jar:1.7.1:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
             \- org.codehaus.plexus:plexus-container-default:jar:1.7.1:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
             \- org.codehaus.plexus:plexus-container-default:jar:1.7.1:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
             \- org.codehaus.plexus:plexus-container-default:jar:1.7.1:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
             \- org.codehaus.plexus:plexus-container-default:jar:1.7.1:provided

  • org.codehaus.plexus:plexus-utils

    @@ -560,62 +560,62 @@

    org.codehaus.plexus:plexus-ut

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
          \- org.codehaus.plexus:plexus-i18n:jar:1.0-beta-10:compile
             \- org.codehaus.plexus:plexus-utils:jar:1.4.5:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.codehaus.plexus:plexus-i18n:jar:1.0-beta-10:compile
                \- org.codehaus.plexus:plexus-utils:jar:1.4.5:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.codehaus.plexus:plexus-i18n:jar:1.0-beta-10:compile
                \- org.codehaus.plexus:plexus-utils:jar:1.4.5:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.codehaus.plexus:plexus-i18n:jar:1.0-beta-10:compile
                \- org.codehaus.plexus:plexus-utils:jar:1.4.5:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.codehaus.plexus:plexus-i18n:jar:1.0-beta-10:compile
                \- org.codehaus.plexus:plexus-utils:jar:1.4.5:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             \- org.codehaus.plexus:plexus-i18n:jar:1.0-beta-10:compile
                \- org.codehaus.plexus:plexus-utils:jar:1.4.5:compile

  • +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven:maven-core:jar:3.6.3:provided
       \- org.apache.maven:maven-settings-builder:jar:3.6.3:provided
          \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:provided
             \- org.codehaus.plexus:plexus-utils:jar:1.5.5:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
             \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                \- org.codehaus.plexus:plexus-utils:jar:1.5.5:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
             \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                \- org.codehaus.plexus:plexus-utils:jar:1.5.5:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
             \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                \- org.codehaus.plexus:plexus-utils:jar:1.5.5:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
             \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                \- org.codehaus.plexus:plexus-utils:jar:1.5.5:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
             \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                \- org.codehaus.plexus:plexus-utils:jar:1.5.5:compile

  • +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven:maven-plugin-api:jar:3.6.3:provided
       \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided
          \- org.codehaus.plexus:plexus-utils:jar:3.0.17:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
             \- org.codehaus.plexus:plexus-utils:jar:3.0.17:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
             \- org.codehaus.plexus:plexus-utils:jar:3.0.17:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
             \- org.codehaus.plexus:plexus-utils:jar:3.0.17:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
             \- org.codehaus.plexus:plexus-utils:jar:3.0.17:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
          \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
             \- org.codehaus.plexus:plexus-utils:jar:3.0.17:compile

  • +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       \- org.codehaus.plexus:plexus-utils:jar:3.0.24:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.codehaus.plexus:plexus-utils:jar:3.0.24:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.codehaus.plexus:plexus-utils:jar:3.0.24:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.codehaus.plexus:plexus-utils:jar:3.0.24:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.codehaus.plexus:plexus-utils:jar:3.0.24:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          \- org.codehaus.plexus:plexus-utils:jar:3.0.24:compile

  • +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    +- org.apache.maven:maven-plugin-api:jar:3.6.3:provided
    |  +- org.apache.maven:maven-model:jar:3.6.3:provided
    |  |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:provided
    |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
    +- org.apache.maven:maven-artifact:jar:3.6.3:provided
    |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:provided
    \- org.apache.maven:maven-core:jar:3.6.3:provided
       +- org.apache.maven:maven-settings:jar:3.6.3:provided
       |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:provided
       +- org.apache.maven:maven-settings-builder:jar:3.6.3:provided
       |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:provided
       +- org.apache.maven:maven-repository-metadata:jar:3.6.3:provided
       |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:provided
       +- org.apache.maven:maven-model-builder:jar:3.6.3:provided
       |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:provided
       +- org.apache.maven:maven-resolver-provider:jar:3.6.3:provided
       |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:provided
       \- org.codehaus.plexus:plexus-utils:jar:3.2.1:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  +- org.apache.maven:maven-model:jar:3.6.3:compile
       |  |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
       |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
       +- org.apache.maven:maven-artifact:jar:3.6.3:compile
       |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          +- org.apache.maven:maven-settings:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-model-builder:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  +- org.apache.maven:maven-model:jar:3.6.3:compile
       |  |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
       |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
       +- org.apache.maven:maven-artifact:jar:3.6.3:compile
       |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          +- org.apache.maven:maven-settings:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-model-builder:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  +- org.apache.maven:maven-model:jar:3.6.3:compile
       |  |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
       |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
       +- org.apache.maven:maven-artifact:jar:3.6.3:compile
       |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          +- org.apache.maven:maven-settings:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-model-builder:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  +- org.apache.maven:maven-model:jar:3.6.3:compile
       |  |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
       |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
       +- org.apache.maven:maven-artifact:jar:3.6.3:compile
       |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          +- org.apache.maven:maven-settings:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-model-builder:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
       |  +- org.apache.maven:maven-model:jar:3.6.3:compile
       |  |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
       |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
       +- org.apache.maven:maven-artifact:jar:3.6.3:compile
       |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          +- org.apache.maven:maven-settings:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-model-builder:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          +- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
          \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile

  • 1.4.5
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
            \- org.codehaus.plexus:plexus-i18n:jar:1.0-beta-10:compile
               \- org.codehaus.plexus:plexus-utils:jar:1.4.5:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.codehaus.plexus:plexus-i18n:jar:1.0-beta-10:compile
                  \- org.codehaus.plexus:plexus-utils:jar:1.4.5:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.codehaus.plexus:plexus-i18n:jar:1.0-beta-10:compile
                  \- org.codehaus.plexus:plexus-utils:jar:1.4.5:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.codehaus.plexus:plexus-i18n:jar:1.0-beta-10:compile
                  \- org.codehaus.plexus:plexus-utils:jar:1.4.5:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.codehaus.plexus:plexus-i18n:jar:1.0-beta-10:compile
                  \- org.codehaus.plexus:plexus-utils:jar:1.4.5:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               \- org.codehaus.plexus:plexus-i18n:jar:1.0-beta-10:compile
                  \- org.codehaus.plexus:plexus-utils:jar:1.4.5:compile

    1.5.5
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven:maven-core:jar:3.6.3:provided
         \- org.apache.maven:maven-settings-builder:jar:3.6.3:provided
            \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:provided
               \- org.codehaus.plexus:plexus-utils:jar:1.5.5:provided

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
               \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                  \- org.codehaus.plexus:plexus-utils:jar:1.5.5:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
               \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                  \- org.codehaus.plexus:plexus-utils:jar:1.5.5:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
               \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                  \- org.codehaus.plexus:plexus-utils:jar:1.5.5:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
               \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                  \- org.codehaus.plexus:plexus-utils:jar:1.5.5:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
               \- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
                  \- org.codehaus.plexus:plexus-utils:jar:1.5.5:compile

    3.0.17
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven:maven-plugin-api:jar:3.6.3:provided
         \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided
            \- org.codehaus.plexus:plexus-utils:jar:3.0.17:provided

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
               \- org.codehaus.plexus:plexus-utils:jar:3.0.17:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
               \- org.codehaus.plexus:plexus-utils:jar:3.0.17:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
               \- org.codehaus.plexus:plexus-utils:jar:3.0.17:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
               \- org.codehaus.plexus:plexus-utils:jar:3.0.17:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
            \- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
               \- org.codehaus.plexus:plexus-utils:jar:3.0.17:compile

    3.0.24
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         \- org.codehaus.plexus:plexus-utils:jar:3.0.24:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.codehaus.plexus:plexus-utils:jar:3.0.24:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.codehaus.plexus:plexus-utils:jar:3.0.24:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.codehaus.plexus:plexus-utils:jar:3.0.24:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.codehaus.plexus:plexus-utils:jar:3.0.24:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            \- org.codehaus.plexus:plexus-utils:jar:3.0.24:compile

    3.2.1
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      +- org.apache.maven:maven-plugin-api:jar:3.6.3:provided
      |  +- org.apache.maven:maven-model:jar:3.6.3:provided
      |  |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:provided
      |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
      +- org.apache.maven:maven-artifact:jar:3.6.3:provided
      |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:provided
      \- org.apache.maven:maven-core:jar:3.6.3:provided
         +- org.apache.maven:maven-settings:jar:3.6.3:provided
         |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:provided
         +- org.apache.maven:maven-settings-builder:jar:3.6.3:provided
         |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:provided
         +- org.apache.maven:maven-repository-metadata:jar:3.6.3:provided
         |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:provided
         +- org.apache.maven:maven-model-builder:jar:3.6.3:provided
         |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:provided
         +- org.apache.maven:maven-resolver-provider:jar:3.6.3:provided
         |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:provided
         \- org.codehaus.plexus:plexus-utils:jar:3.2.1:provided

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  +- org.apache.maven:maven-model:jar:3.6.3:compile
         |  |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
         |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
         +- org.apache.maven:maven-artifact:jar:3.6.3:compile
         |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            +- org.apache.maven:maven-settings:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-model-builder:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  +- org.apache.maven:maven-model:jar:3.6.3:compile
         |  |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
         |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
         +- org.apache.maven:maven-artifact:jar:3.6.3:compile
         |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            +- org.apache.maven:maven-settings:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-model-builder:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  +- org.apache.maven:maven-model:jar:3.6.3:compile
         |  |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
         |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
         +- org.apache.maven:maven-artifact:jar:3.6.3:compile
         |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            +- org.apache.maven:maven-settings:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-model-builder:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  +- org.apache.maven:maven-model:jar:3.6.3:compile
         |  |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
         |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
         +- org.apache.maven:maven-artifact:jar:3.6.3:compile
         |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            +- org.apache.maven:maven-settings:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-model-builder:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         +- org.apache.maven:maven-plugin-api:jar:3.6.3:compile
         |  +- org.apache.maven:maven-model:jar:3.6.3:compile
         |  |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
         |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
         +- org.apache.maven:maven-artifact:jar:3.6.3:compile
         |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            +- org.apache.maven:maven-settings:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-settings-builder:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-model-builder:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            +- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile
            \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile

    3.3.0
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
         +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
         |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
         +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
         |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
         \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
            +- org.apache.maven.doxia:doxia-skin-model:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
            +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
            +- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
            \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
            +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.apache.maven.doxia:doxia-skin-model:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
               +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
               +- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
               \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
            +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.apache.maven.doxia:doxia-skin-model:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
               +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
               +- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
               \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
            +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.apache.maven.doxia:doxia-skin-model:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
               +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
               +- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
               \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
            +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.apache.maven.doxia:doxia-skin-model:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
               +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
               +- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
               \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
            +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
            +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
            |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
            \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
               +- org.apache.maven.doxia:doxia-skin-model:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
               +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
               +- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
               |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
               \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
       +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
       |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
       +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
       |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
       \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
          +- org.apache.maven.doxia:doxia-skin-model:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
          +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
          +- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
          \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
          +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.apache.maven.doxia:doxia-skin-model:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
             +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
             +- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
             \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
          +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.apache.maven.doxia:doxia-skin-model:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
             +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
             +- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
             \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
          +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.apache.maven.doxia:doxia-skin-model:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
             +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
             +- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
             \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
          +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.apache.maven.doxia:doxia-skin-model:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
             +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
             +- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
             \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven.reporting:maven-reporting-impl:jar:3.1.0:compile
          +- org.apache.maven.doxia:doxia-decoration-model:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
          +- org.apache.maven.doxia:doxia-core:jar:1.11.1:compile
          |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
          \- org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1:compile
             +- org.apache.maven.doxia:doxia-skin-model:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
             +- org.apache.maven.doxia:doxia-module-xhtml:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
             +- org.apache.maven.doxia:doxia-module-xhtml5:jar:1.11.1:compile
             |  \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
             \- org.codehaus.plexus:plexus-utils:jar:3.3.0:compile

  • org.slf4j:slf4j-api

    @@ -626,22 +626,22 @@

    org.slf4j:slf4j-api

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven:maven-core:jar:3.6.3:provided
       \- org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:provided
          \- org.slf4j:slf4j-api:jar:1.7.25:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
             \- org.slf4j:slf4j-api:jar:1.7.25:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
             \- org.slf4j:slf4j-api:jar:1.7.25:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
             \- org.slf4j:slf4j-api:jar:1.7.25:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
             \- org.slf4j:slf4j-api:jar:1.7.25:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
             \- org.slf4j:slf4j-api:jar:1.7.25:compile

  • 1.7.25
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven:maven-core:jar:3.6.3:provided
         \- org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:provided
            \- org.slf4j:slf4j-api:jar:1.7.25:provided

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
               \- org.slf4j:slf4j-api:jar:1.7.25:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
               \- org.slf4j:slf4j-api:jar:1.7.25:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
               \- org.slf4j:slf4j-api:jar:1.7.25:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
               \- org.slf4j:slf4j-api:jar:1.7.25:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
               \- org.slf4j:slf4j-api:jar:1.7.25:compile

    1.7.29
      -
    1. com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT
      \- org.apache.maven:maven-core:jar:3.6.3:provided
         \- org.apache.maven:maven-resolver-provider:jar:3.6.3:provided
            \- org.slf4j:slf4j-api:jar:1.7.29:provided

    2. -
    3. com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
               \- org.slf4j:slf4j-api:jar:1.7.29:compile

    4. -
    5. com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
               \- org.slf4j:slf4j-api:jar:1.7.29:compile

    6. -
    7. com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
               \- org.slf4j:slf4j-api:jar:1.7.29:compile

    8. -
    9. com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
               \- org.slf4j:slf4j-api:jar:1.7.29:compile

    10. -
    11. com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.21.3-SNAPSHOT
      \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.21.3-SNAPSHOT:compile
         \- org.apache.maven:maven-core:jar:3.6.3:compile
            \- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
               \- org.slf4j:slf4j-api:jar:1.7.29:compile

    +
  • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0
    \- org.apache.maven:maven-core:jar:3.6.3:provided
       \- org.apache.maven:maven-resolver-provider:jar:3.6.3:provided
          \- org.slf4j:slf4j-api:jar:1.7.29:provided

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-classifier:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
             \- org.slf4j:slf4j-api:jar:1.7.29:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-guava:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
             \- org.slf4j:slf4j-api:jar:1.7.29:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-japicmp:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
             \- org.slf4j:slf4j-api:jar:1.7.29:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin-userproperty:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
             \- org.slf4j:slf4j-api:jar:1.7.29:compile

  • +
  • com.github.siom79.japicmp:japicmp-test-maven-plugin:jar:0.22.0
    \- com.github.siom79.japicmp:japicmp-maven-plugin:jar:0.22.0:compile
       \- org.apache.maven:maven-core:jar:3.6.3:compile
          \- org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
             \- org.slf4j:slf4j-api:jar:1.7.29:compile

  • diff --git a/dependency-info.html b/dependency-info.html index 3afe07df..bc5512a0 100644 --- a/dependency-info.html +++ b/dependency-info.html @@ -1,13 +1,13 @@ - + japicmp-base – Dependency Information @@ -34,8 +34,8 @@
    @@ -67,25 +67,25 @@

    Apache Maven

    <dependency>
       <groupId>com.github.siom79.japicmp</groupId>
       <artifactId>japicmp-base</artifactId>
    -  <version>0.21.3-SNAPSHOT</version>
    +  <version>0.22.0</version>
       <type>pom</type>
     </dependency>

    Apache Buildr

    -
    'com.github.siom79.japicmp:japicmp-base:pom:0.21.3-SNAPSHOT'
    +
    'com.github.siom79.japicmp:japicmp-base:pom:0.22.0'

    Apache Ivy

    -
    <dependency org="com.github.siom79.japicmp" name="japicmp-base" rev="0.21.3-SNAPSHOT">
    +
    <dependency org="com.github.siom79.japicmp" name="japicmp-base" rev="0.22.0">
       <artifact name="japicmp-base" type="pom" />
     </dependency>

    Groovy Grape

    @Grapes(
    -@Grab(group='com.github.siom79.japicmp', module='japicmp-base', version='0.21.3-SNAPSHOT')
    +@Grab(group='com.github.siom79.japicmp', module='japicmp-base', version='0.22.0')
     )

    Gradle/Grails

    -
    compile 'com.github.siom79.japicmp:japicmp-base:0.21.3-SNAPSHOT'
    +
    compile 'com.github.siom79.japicmp:japicmp-base:0.22.0'

    Scala SBT

    -
    libraryDependencies += "com.github.siom79.japicmp" % "japicmp-base" % "0.21.3-SNAPSHOT"
    +
    libraryDependencies += "com.github.siom79.japicmp" % "japicmp-base" % "0.22.0"

    Leiningen

    -
    [com.github.siom79.japicmp/japicmp-base "0.21.3-SNAPSHOT"]
    +
    [com.github.siom79.japicmp/japicmp-base "0.22.0"]
    diff --git a/dependency-management.html b/dependency-management.html index f98fb095..b307ca8e 100644 --- a/dependency-management.html +++ b/dependency-management.html @@ -1,13 +1,13 @@ - + japicmp-base – Project Dependency Management @@ -34,8 +34,8 @@
    diff --git a/distribution-management.html b/distribution-management.html index 7cecc551..eb933d96 100644 --- a/distribution-management.html +++ b/distribution-management.html @@ -1,13 +1,13 @@ - + japicmp-base – Project Distribution Management @@ -34,8 +34,8 @@
    @@ -67,7 +67,7 @@

    Overview

    Repository - ossrh

    https://oss.sonatype.org/service/local/staging/deploy/maven2/

    Snapshot Repository - sonatype-nexus-snapshots

    https://oss.sonatype.org/content/repositories/snapshots

    Site - github

    -

    scm:git:https://siom79:ghs_R0pIqY2vqZ7q9DYz76GbufKq9eTO0b0eEDTg@github.com/siom79/japicmp.git

    +

    scm:git:https://siom79:ghs_P2UyFjPsBOHbdwvIu7EWMbLsZ6iQH30FDg6S@github.com/siom79/japicmp.git

    diff --git a/index.html b/index.html index 9b301e80..495f614a 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,13 @@ - + japicmp-base – japicmp @@ -34,8 +34,8 @@
    @@ -64,7 +64,7 @@

    japicmp

    japicmp is a tool to compare two versions of a jar archive:

    -
    java -jar japicmp-0.21.2-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
    +
    java -jar japicmp-0.22.0-jar-with-dependencies.jar -n new-version.jar -o old-version.jar
     

    It can also be used as a library:

    @@ -77,7 +77,7 @@

    japicmp

    <dependency>
     	<groupId>com.github.siom79.japicmp</groupId>
     	<artifactId>japicmp</artifactId>
    -	<version>0.21.2</version>
    +	<version>0.22.0</version>
     </dependency>
     

    A maven plugin allows you to integrate the checks into your build:

    @@ -85,7 +85,7 @@

    japicmp

    <plugin>
     	<groupId>com.github.siom79.japicmp</groupId>
     	<artifactId>japicmp-maven-plugin</artifactId>
    -	<version>0.21.2</version>
    +	<version>0.22.0</version>
     	<configuration>
     		<oldVersion>
     			<dependency>
    diff --git a/japicmp-ant-task/checkstyle.html b/japicmp-ant-task/checkstyle.html
    index 7654b8c8..8ef86675 100644
    --- a/japicmp-ant-task/checkstyle.html
    +++ b/japicmp-ant-task/checkstyle.html
    @@ -1,13 +1,13 @@
     
     
     
       
         
         
    -    
    +    
         
         japicmp-ant-task – Checkstyle Results
         
    @@ -35,8 +35,8 @@
           
  • japicmp/
  • japicmp-ant-task/
  • Checkstyle Results
  • -
  • | Last Published: 2024-05-03
  • -
  • Version: 0.21.3-SNAPSHOT
  • +
  • | Last Published: 2024-07-21
  • +
  • Version: 0.22.0
  • @@ -69,7 +69,7 @@

    Summary

    1 0 0 -211
    +216

    Files

    @@ -81,7 +81,7 @@

    Files

    -
    japicmp/ant/JApiCmpTask.java 0 0211
    +216

    Rules

    @@ -92,12 +92,12 @@

    Rules

    - + - + @@ -107,17 +107,17 @@

    Rules

    - + - + - + @@ -208,16 +208,16 @@

    japicmp/ant/JApiCmpTask.java

    - - - - - - + + + + + + @@ -328,1084 +328,1114 @@

    japicmp/ant/JApiCmpTask.java

    + + + + + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - - - - - - + - + - - + + - - + + - - + + - + - - + + - + - - + + - - + + - + - - + + - - + + - + - - + + - - + + - + - - + + + + + + + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + -
    coding HiddenField2728
     Error
    design DesignForExtension3536
     Error
    javadoc
    JavadocVariable2829
     Error
    MissingJavadocMethod3435
     Error
    misc FinalParameters3536
     Error
    sizes 44
     Error
    sizesLineLengthLine is longer than 80 characters (found 96).45
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 45
     Error
    sizesLineLengthLine is longer than 80 characters (found 96).46
     Error
    javadoc 63
     Error
    javadocJavadocVariableMissing a Javadoc comment.64
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setOnlyBinaryIncompatible' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setOnlyBinaryIncompatible' static/final/abstract/empty, or adding allowed annotation for the method.65
    66
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.65
    66
     Error
    misc FinalParameters Parameter onlyBinaryIncompatible should be final.65
    66
     Error
    coding HiddenField 'onlyBinaryIncompatible' hides a field.65
    66
     Error
    sizes LineLength Line is longer than 80 characters (found 88).66
    67
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setOnlyModified' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setOnlyModified' static/final/abstract/empty, or adding allowed annotation for the method.69
    70
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.69
    70
     Error
    misc FinalParameters Parameter onlyModified should be final.69
    70
     Error
    coding HiddenField 'onlyModified' hides a field.69
    70
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setIncludeSynthetic' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setIncludeSynthetic' static/final/abstract/empty, or adding allowed annotation for the method.73
    74
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.73
    74
     Error
    misc FinalParameters Parameter includeSynthetic should be final.73
    74
     Error
    coding HiddenField 'includeSynthetic' hides a field.73
    74
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setNoAnnotations' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setNoAnnotations' static/final/abstract/empty, or adding allowed annotation for the method.77
    78
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.77
    78
     Error
    misc FinalParameters Parameter noAnnotations should be final.77
    78
     Error
    coding HiddenField 'noAnnotations' hides a field.77
    78
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setSemanticVersioning' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setSemanticVersioning' static/final/abstract/empty, or adding allowed annotation for the method.81
    82
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.81
    82
     Error
    misc FinalParameters Parameter semanticVersioning should be final.81
    82
     Error
    coding HiddenField 'semanticVersioning' hides a field.81
    82
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setSemVerProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setSemVerProperty' static/final/abstract/empty, or adding allowed annotation for the method.85
    86
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.85
    86
     Error
    misc FinalParameters Parameter semverProperty should be final.85
    86
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setReportOnlyFilename' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setReportOnlyFilename' static/final/abstract/empty, or adding allowed annotation for the method.90
    91
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.90
    91
     Error
    misc FinalParameters Parameter reportOnlyFilename should be final.90
    91
     Error
    coding HiddenField 'reportOnlyFilename' hides a field.90
    91
     Error
    designDesignForExtensionClass 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setReportOnlySummary' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setReportOnlySummary' static/final/abstract/empty, or adding allowed annotation for the method.95
     Error
    javadocMissingJavadocMethodMissing a Javadoc comment.95
     Error
    miscFinalParametersParameter reportOnlySummary should be final.95
     Error
    codingHiddenField'reportOnlySummary' hides a field.95
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setIgnoreMissingClasses' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setIgnoreMissingClasses' static/final/abstract/empty, or adding allowed annotation for the method.94
    99
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.94
    99
     Error
    misc FinalParameters Parameter ignoreMissingClasses should be final.94
    99
     Error
    coding HiddenField 'ignoreMissingClasses' hides a field.94
    99
     Error
    sizes LineLength Line is longer than 80 characters (found 84).95
    100
     Error
    sizes LineLength Line is longer than 80 characters (found 114).98
    103
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setIgnoreMissingClassesByRegularExpressions' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setIgnoreMissingClassesByRegularExpressions' static/final/abstract/empty, or adding allowed annotation for the method.98
    103
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.98
    103
     Error
    misc FinalParameters Parameter ignoreMissingClassesByRegularExpressions should be final.98
    103
     Error
    coding HiddenField 'ignoreMissingClassesByRegularExpressions' hides a field.98
    103
     Error
    sizes LineLength Line is longer than 80 characters (found 143).99
    104
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setIncludeExclusively' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setIncludeExclusively' static/final/abstract/empty, or adding allowed annotation for the method.102
    107
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.102
    107
     Error
    misc FinalParameters Parameter includeExclusively should be final.102
    107
     Error
    coding HiddenField 'includeExclusively' hides a field.102
    107
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setExcludeExclusively' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setExcludeExclusively' static/final/abstract/empty, or adding allowed annotation for the method.106
    111
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.106
    111
     Error
    misc FinalParameters Parameter excludeExclusively should be final.106
    111
     Error
    coding HiddenField 'excludeExclusively' hides a field.106
    111
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setAccessModifier' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setAccessModifier' static/final/abstract/empty, or adding allowed annotation for the method.110
    115
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.110
    115
     Error
    misc FinalParameters Parameter accessModifier should be final.110
    115
     Error
    coding HiddenField 'accessModifier' hides a field.110
    115
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setOldJar' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setOldJar' static/final/abstract/empty, or adding allowed annotation for the method.114
    119
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.114
    119
     Error
    misc FinalParameters Parameter oldJar should be final.114
    119
     Error
    coding HiddenField 'oldJar' hides a field.114
    119
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setNewJar' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setNewJar' static/final/abstract/empty, or adding allowed annotation for the method.118
    123
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.118
    123
     Error
    misc FinalParameters Parameter newJar should be final.118
    123
     Error
    coding HiddenField 'newJar' hides a field.118
    123
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setOldClassPath' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setOldClassPath' static/final/abstract/empty, or adding allowed annotation for the method.122
    127
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.122
    127
     Error
    misc FinalParameters Parameter oldClassPath should be final.122
    127
     Error
    coding HiddenField 'oldClassPath' hides a field.122
    127
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setNewClassPath' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setNewClassPath' static/final/abstract/empty, or adding allowed annotation for the method.126
    131
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.126
    131
     Error
    misc FinalParameters Parameter newClassPath should be final.126
    131
     Error
    coding HiddenField 'newClassPath' hides a field.126
    131
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setClassPath' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setClassPath' static/final/abstract/empty, or adding allowed annotation for the method.130
    135
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.130
    135
     Error
    misc FinalParameters Parameter classPath should be final.130
    135
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'getOldClassPath' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'getOldClassPath' static/final/abstract/empty, or adding allowed annotation for the method.135
    140
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.135
    140
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'getNewClassPath' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'getNewClassPath' static/final/abstract/empty, or adding allowed annotation for the method.142
    147
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.142
    147
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setOldClassPathRef' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setOldClassPathRef' static/final/abstract/empty, or adding allowed annotation for the method.149
    154
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.149
    154
     Error
    misc FinalParameters Parameter oldClassPathRef should be final.149
    154
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setNewClassPathRef' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setNewClassPathRef' static/final/abstract/empty, or adding allowed annotation for the method.153
    158
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.153
    158
     Error
    misc FinalParameters Parameter newClassPathRef should be final.153
    158
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setClassPathRef' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setClassPathRef' static/final/abstract/empty, or adding allowed annotation for the method.157
    162
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.157
    162
     Error
    misc FinalParameters Parameter classPathRef should be final.157
    162
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setIncludes' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setIncludes' static/final/abstract/empty, or adding allowed annotation for the method.162
    167
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.162
    167
     Error
    misc FinalParameters Parameter includes should be final.162
    167
     Error
    coding HiddenField 'includes' hides a field.162
    167
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setExcludes' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setExcludes' static/final/abstract/empty, or adding allowed annotation for the method.166
    171
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.166
    171
     Error
    misc FinalParameters Parameter excludes should be final.166
    171
     Error
    coding HiddenField 'excludes' hides a field.166
    171
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setXmlOutputFile' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setXmlOutputFile' static/final/abstract/empty, or adding allowed annotation for the method.170
    175
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.170
    175
     Error
    misc FinalParameters Parameter xmlOutputFile should be final.170
    175
     Error
    coding HiddenField 'xmlOutputFile' hides a field.170
    175
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setHtmlOutputFile' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setHtmlOutputFile' static/final/abstract/empty, or adding allowed annotation for the method.174
    179
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.174
    179
     Error
    misc FinalParameters Parameter htmlOutputFile should be final.174
    179
     Error
    coding HiddenField 'htmlOutputFile' hides a field.174
    179
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setHtmlStylesheet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setHtmlStylesheet' static/final/abstract/empty, or adding allowed annotation for the method.178
    183
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.178
    183
     Error
    misc FinalParameters Parameter htmlStylesheet should be final.178
    183
     Error
    coding HiddenField 'htmlStylesheet' hides a field.178
    183
     Error
    sizes LineLength Line is longer than 80 characters (found 95).182
    187
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setErrorOnSemanticIncompatibility' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setErrorOnSemanticIncompatibility' static/final/abstract/empty, or adding allowed annotation for the method.182
    187
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.182
    187
     Error
    misc FinalParameters Parameter errorOnSemanticIncompatibility should be final.182
    187
     Error
    coding HiddenField 'errorOnSemanticIncompatibility' hides a field.182
    187
     Error
    sizes LineLength Line is longer than 80 characters (found 85).183
    188
     Error
    sizes LineLength Line is longer than 80 characters (found 97).186
    191
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setErrorOnExclusionIncompatibility' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setErrorOnExclusionIncompatibility' static/final/abstract/empty, or adding allowed annotation for the method.186
    191
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.186
    191
     Error
    misc FinalParameters Parameter errorOnExclusionIncompatibility should be final.186
    191
     Error
    coding HiddenField 'errorOnExclusionIncompatibility' hides a field.186
    191
     Error
    sizes LineLength Line is longer than 80 characters (found 87).187
    192
     Error
    sizes LineLength Line is longer than 80 characters (found 91).190
    195
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setErrorOnSourceIncompatibility' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setErrorOnSourceIncompatibility' static/final/abstract/empty, or adding allowed annotation for the method.190
    195
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.190
    195
     Error
    misc FinalParameters Parameter errorOnSourceIncompatibility should be final.190
    195
     Error
    coding HiddenField 'errorOnSourceIncompatibility' hides a field.190
    195
     Error
    sizes LineLength Line is longer than 80 characters (found 81).191
    196
     Error
    sizes LineLength Line is longer than 80 characters (found 91).194
    199
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setErrorOnBinaryIncompatibility' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setErrorOnBinaryIncompatibility' static/final/abstract/empty, or adding allowed annotation for the method.194
    199
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.194
    199
     Error
    misc FinalParameters Parameter errorOnBinaryIncompatibility should be final.194
    199
     Error
    coding HiddenField 'errorOnBinaryIncompatibility' hides a field.194
    199
     Error
    sizes LineLength Line is longer than 80 characters (found 81).195
    200
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setErrorOnModifications' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setErrorOnModifications' static/final/abstract/empty, or adding allowed annotation for the method.198
    203
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.198
    203
     Error
    misc FinalParameters Parameter errorOnModifications should be final.198
    203
     Error
    coding HiddenField 'errorOnModifications' hides a field.198
    203
     Error
    sizes LineLength Line is longer than 80 characters (found 81).202
    207
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setIgnoreMissingOldVersion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setIgnoreMissingOldVersion' static/final/abstract/empty, or adding allowed annotation for the method.202
    207
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.202
    207
     Error
    misc FinalParameters Parameter ignoreMissingOldVersion should be final.202
    207
     Error
    coding HiddenField 'ignoreMissingOldVersion' hides a field.202
    207
     Error
    sizes LineLength Line is longer than 80 characters (found 81).206
    211
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'setIgnoreMissingNewVersion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'setIgnoreMissingNewVersion' static/final/abstract/empty, or adding allowed annotation for the method.206
    211
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.206
    211
     Error
    misc FinalParameters Parameter ignoreMissingNewVersion should be final.206
    211
     Error
    coding HiddenField 'ignoreMissingNewVersion' hides a field.206
    211
     Error
    design DesignForExtension Class 'JApiCmpTask' looks like designed for extension (can be subclassed), but the method 'execute' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpTask' final or making the method 'execute' static/final/abstract/empty, or adding allowed annotation for the method.210
     Error
    sizesLineLengthLine is longer than 80 characters (found 114).213
    215
     Error
    sizes LineLength Line is longer than 80 characters (found 114).216
    218
     Error
    sizes LineLengthLine is longer than 80 characters (found 126).219
    Line is longer than 80 characters (found 114).221
     Error
    sizes LineLengthLine is longer than 80 characters (found 127).220
    Line is longer than 80 characters (found 126).224
     Error
    sizes LineLengthLine is longer than 80 characters (found 81).229
    Line is longer than 80 characters (found 127).225
     Error
    sizes LineLength Line is longer than 80 characters (found 81).230
    234
     Error
    sizes LineLengthLine is longer than 80 characters (found 100).233
    Line is longer than 80 characters (found 81).235
     Error
    sizes LineLength Line is longer than 80 characters (found 100).234
    238
     Error
    sizes LineLengthLine is longer than 80 characters (found 93).235
    Line is longer than 80 characters (found 100).239
     Error
    sizes LineLengthLine is longer than 80 characters (found 131).238
    Line is longer than 80 characters (found 93).240
     Error
    sizes LineLength Line is longer than 80 characters (found 131).239
    243
     Error
    sizes LineLengthLine is longer than 80 characters (found 91).241
    Line is longer than 80 characters (found 131).244
     Error
    sizes LineLengthLine is longer than 80 characters (found 90).242
    Line is longer than 80 characters (found 91).246
     Error
    sizes LineLength Line is longer than 80 characters (found 90).245
    247
     Error
    sizes LineLengthLine is longer than 80 characters (found 92).246
    Line is longer than 80 characters (found 90).251
     Error
    sizes LineLengthLine is longer than 80 characters (found 86).247
    Line is longer than 80 characters (found 92).252
     Error
    sizes LineLength Line is longer than 80 characters (found 86).248
    253
     Error
    sizes LineLengthLine is longer than 80 characters (found 126).256
    Line is longer than 80 characters (found 86).254
     Error
    sizesLineLengthLine is longer than 80 characters (found 126).262
     Error
    misc FinalParameters Parameter options should be final.256
    262
     Error
    misc FinalParameters Parameter jApiClasses should be final.256
    262
     Error
    misc FinalParameters Parameter jarArchiveComparator should be final.256
    262
     Error
    sizes LineLength Line is longer than 80 characters (found 134).262
    268
     Error
    sizes LineLength Line is longer than 80 characters (found 98).266
    272
     Error
    sizes LineLength Line is longer than 80 characters (found 81).267
    273
     Error
    sizes LineLength Line is longer than 80 characters (found 82).274
    280
     Error
    sizes LineLength Line is longer than 80 characters (found 90).277
    283
     Error
    sizes LineLength Line is longer than 80 characters (found 106).283
    289
     Error
    sizes LineLength Line is longer than 80 characters (found 118).284
    290
     Error
    sizes LineLength Line is longer than 80 characters (found 110).292
    298
     Error
    sizes LineLength Line is longer than 80 characters (found 114).294
    300
     Error
    sizes LineLength Line is longer than 80 characters (found 130).295
    301
     Error
    sizes LineLength Line is longer than 80 characters (found 84).297
    303
     Error
    sizes LineLength Line is longer than 80 characters (found 108).299
    305
     Error
    sizes LineLength Line is longer than 80 characters (found 113).303
    309
     Error
    sizes LineLength Line is longer than 80 characters (found 115).304
    310
     Error
    sizes LineLength Line is longer than 80 characters (found 140).305
    311
     Error
    sizes LineLength Line is longer than 80 characters (found 129).308
    314
     Error
    sizes LineLength Line is longer than 80 characters (found 109).310
    +316
    diff --git a/japicmp-ant-task/dependencies.html b/japicmp-ant-task/dependencies.html index 5696c3a8..174c0884 100644 --- a/japicmp-ant-task/dependencies.html +++ b/japicmp-ant-task/dependencies.html @@ -1,13 +1,13 @@ - + japicmp-ant-task – Project Dependencies @@ -35,8 +35,8 @@
  • japicmp/
  • japicmp-ant-task/
  • Project Dependencies
  • -
  • | Last Published: 2024-05-03
  • -
  • Version: 0.21.3-SNAPSHOT
  • +
  • | Last Published: 2024-07-21
  • +
  • Version: 0.22.0
  • @@ -69,7 +69,7 @@

    compile

    com.github.siom79.japicmp japicmp -0.21.3-SNAPSHOT +0.22.0 jar Apache License, Version 2.0 @@ -274,7 +274,7 @@

    Project Dependency Graph

    Dependency Tree

      -
    • com.github.siom79.japicmp:japicmp-ant-task:jar:0.21.3-SNAPSHOT [Information]
    • com.github.siom79.japicmp:japicmp-ant-task:jar:0.22.0 [Information]
        -
      • com.github.siom79.japicmp:japicmp:jar:0.21.3-SNAPSHOT (compile) [Information]
      • com.github.siom79.japicmp:japicmp:jar:0.22.0 (compile) [Information]
    diff --git a/japicmp-ant-task/summary.html b/japicmp-ant-task/summary.html index 1ddea005..cc01f425 100644 --- a/japicmp-ant-task/summary.html +++ b/japicmp-ant-task/summary.html @@ -1,13 +1,13 @@ - + japicmp-ant-task – Project Summary @@ -35,8 +35,8 @@
  • japicmp/
  • japicmp-ant-task/
  • Project Summary
  • -
  • | Last Published: 2024-05-03
  • -
  • Version: 0.21.3-SNAPSHOT
  • +
  • | Last Published: 2024-07-21
  • +
  • Version: 0.22.0
  • diff --git a/japicmp-maven-plugin/checkstyle.html b/japicmp-maven-plugin/checkstyle.html index a01bfed6..656f9397 100644 --- a/japicmp-maven-plugin/checkstyle.html +++ b/japicmp-maven-plugin/checkstyle.html @@ -1,13 +1,13 @@ - + japicmp-maven-plugin – Checkstyle Results @@ -35,8 +35,8 @@
  • japicmp/
  • japicmp-maven-plugin/
  • Checkstyle Results
  • -
  • | Last Published: 2024-05-03
  • -
  • Version: 0.21.3-SNAPSHOT
  • +
  • | Last Published: 2024-07-21
  • +
  • Version: 0.22.0
  • @@ -69,7 +69,7 @@

    Summary

    11 0 0 -1121
    +1129

    Files

    @@ -86,12 +86,12 @@

    Files

    - + - + @@ -101,12 +101,12 @@

    Files

    - + - + @@ -137,12 +137,12 @@

    Rules

    - + - + @@ -157,24 +157,24 @@

    Rules

    - + - + - + - + @@ -263,359 +263,353 @@

    japicmp/maven/Dependency.java

    - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -623,3060 +617,3066 @@

    japicmp/maven/Dependency.java

    japicmp/maven/Dependency.java 0 060
    59
    japicmp/maven/JApiCmpMojo.java 0 0508
    509
    japicmp/maven/JApiCmpReport.java 0 japicmp/maven/MavenParameters.java 0 034
    35
    japicmp/maven/Parameter.java 0 0311
    318
    japicmp/maven/PluginParameters.java 0
    coding HiddenField8485
     Error
    design DesignForExtension131133
     Error
    imports
    JavadocVariable121122
     Error
    MissingJavadocMethod126128
     Error
    misc FinalParameters186187
     Error
    sizes LineLength
    • fileExtensions: "java"
    446447
     Error
    Line
     Error
    javadocJavadocPackageMissing package-info.java file.1
     Error
    whitespace FileTabCharacter File contains tab characters (this is the first instance). 4
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 4
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 5
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 6
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 7
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 8
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 9
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 10
     Error
    design DesignForExtension Class 'Dependency' looks like designed for extension (can be subclassed), but the method 'getGroupId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Dependency' final or making the method 'getGroupId' static/final/abstract/empty, or adding allowed annotation for the method. 12
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 12
     Error
    design DesignForExtension Class 'Dependency' looks like designed for extension (can be subclassed), but the method 'setGroupId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Dependency' final or making the method 'setGroupId' static/final/abstract/empty, or adding allowed annotation for the method. 16
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 16
     Error
    misc FinalParameters Parameter groupId should be final. 16
     Error
    coding HiddenField 'groupId' hides a field. 16
     Error
    design DesignForExtension Class 'Dependency' looks like designed for extension (can be subclassed), but the method 'getArtifactId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Dependency' final or making the method 'getArtifactId' static/final/abstract/empty, or adding allowed annotation for the method. 20
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 20
     Error
    design DesignForExtension Class 'Dependency' looks like designed for extension (can be subclassed), but the method 'setArtifactId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Dependency' final or making the method 'setArtifactId' static/final/abstract/empty, or adding allowed annotation for the method. 24
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 24
     Error
    misc FinalParameters Parameter artifactId should be final. 24
     Error
    coding HiddenField 'artifactId' hides a field. 24
     Error
    design DesignForExtension Class 'Dependency' looks like designed for extension (can be subclassed), but the method 'getVersion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Dependency' final or making the method 'getVersion' static/final/abstract/empty, or adding allowed annotation for the method. 28
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 28
     Error
    design DesignForExtension Class 'Dependency' looks like designed for extension (can be subclassed), but the method 'setVersion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Dependency' final or making the method 'setVersion' static/final/abstract/empty, or adding allowed annotation for the method. 32
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 32
     Error
    misc FinalParameters Parameter version should be final. 32
     Error
    coding HiddenField 'version' hides a field. 32
     Error
    design DesignForExtension Class 'Dependency' looks like designed for extension (can be subclassed), but the method 'getScope' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Dependency' final or making the method 'getScope' static/final/abstract/empty, or adding allowed annotation for the method. 36
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 36
     Error
    design DesignForExtension Class 'Dependency' looks like designed for extension (can be subclassed), but the method 'setScope' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Dependency' final or making the method 'setScope' static/final/abstract/empty, or adding allowed annotation for the method. 40
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 40
     Error
    misc FinalParameters Parameter scope should be final. 40
     Error
    coding HiddenField 'scope' hides a field. 40
     Error
    design DesignForExtension Class 'Dependency' looks like designed for extension (can be subclassed), but the method 'getSystemPath' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Dependency' final or making the method 'getSystemPath' static/final/abstract/empty, or adding allowed annotation for the method. 44
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 44
     Error
    design DesignForExtension Class 'Dependency' looks like designed for extension (can be subclassed), but the method 'setSystemPath' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Dependency' final or making the method 'setSystemPath' static/final/abstract/empty, or adding allowed annotation for the method. 48
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 48
     Error
    misc FinalParameters Parameter systemPath should be final. 48
     Error
    coding HiddenField 'systemPath' hides a field. 48
     Error
    design DesignForExtension Class 'Dependency' looks like designed for extension (can be subclassed), but the method 'getClassifier' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Dependency' final or making the method 'getClassifier' static/final/abstract/empty, or adding allowed annotation for the method. 52
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 52
     Error
    design DesignForExtension Class 'Dependency' looks like designed for extension (can be subclassed), but the method 'setClassifier' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Dependency' final or making the method 'setClassifier' static/final/abstract/empty, or adding allowed annotation for the method. 56
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 56
     Error
    misc FinalParameters Parameter classifier should be final. 56
     Error
    coding HiddenField 'classifier' hides a field. 56
     Error
    design DesignForExtension Class 'Dependency' looks like designed for extension (can be subclassed), but the method 'getType' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Dependency' final or making the method 'getType' static/final/abstract/empty, or adding allowed annotation for the method. 60
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 60
     Error
    design DesignForExtension Class 'Dependency' looks like designed for extension (can be subclassed), but the method 'setType' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Dependency' final or making the method 'setType' static/final/abstract/empty, or adding allowed annotation for the method. 64
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 64
     Error
    misc FinalParameters Parameter type should be final. 64
     Error
    coding HiddenField 'type' hides a field. 64
     Error
    design DesignForExtension Class 'Dependency' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Dependency' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 68
     Error
    whitespace OperatorWrap '+' should be on a new line. 70
     Error
    whitespace OperatorWrap '+' should be on a new line. 71
     Error
    whitespace OperatorWrap '+' should be on a new line. 72
     Error
    whitespace OperatorWrap '+' should be on a new line. 73
     Error
    whitespace OperatorWrap '+' should be on a new line. 74
     Error
    whitespace OperatorWrap '+' should be on a new line. 75
     Error
    whitespace OperatorWrap '+' should be on a new line. 76
     Error
    whitespace OperatorWrap 77

    japicmp/maven/JApiCmpMojo.java

    - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + -
    Severity Category Rule Message Line
     Error
    imports AvoidStarImport Using the '.*' form of import should be avoided - org.eclipse.aether.resolution.*. 41
     Error
    imports AvoidStarImport Using the '.*' form of import should be avoided - java.util.*. 52
     Error
    sizes LineLength Line is longer than 80 characters (found 132). 58
     Error
    whitespace FileTabCharacter File contains tab characters (this is the first instance). 60
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 60
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 62
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 64
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 66
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 68
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 70
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 72
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 74
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 76
     Error
    sizes LineLength Line is longer than 80 characters (found 106). 78
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 78
     Error
    sizes LineLength Line is longer than 80 characters (found 109). 80
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 80
     Error
    sizes LineLength Line is longer than 80 characters (found 110). 82
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 82
     Error
    sizes LineLength Line is longer than 80 characters (found 121). 84
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 84
     Error
    sizes LineLength Line is longer than 80 characters (found 139). 86
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 86
     Error
    sizes LineLength Line is longer than 80 characters (found 139). 88
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 88
     Error
    sizes LineLength Line is longer than 80 characters (found 131). 90
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 90
     Error
    sizes LineLength Line is longer than 80 characters (found 150). 92
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 92
     Error
    sizes LineLength Line is longer than 80 characters (found 110). 94
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 94
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 96
     Error
    sizes LineLength Line is longer than 80 characters (found 117). 98
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 98
     Error
    sizes LineLength Line is longer than 80 characters (found 127). 100
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 100
     Error
    sizes LineLength Line is longer than 80 characters (found 111). 102
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 102
     Error
    sizes LineLength Line is longer than 80 characters (found 84). 104
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 104
     Error
    sizes LineLength Line is longer than 80 characters (found 107). 106
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 106
     Error
    sizes LineLength Line is longer than 80 characters (found 112). 108
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 108
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 110
     Error
    sizes LineLength Line is longer than 80 characters (found 83). 112
     Error
    design DesignForExtension Class 'JApiCmpMojo' looks like designed for extension (can be subclassed), but the method 'execute' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpMojo' final or making the method 'execute' static/final/abstract/empty, or adding allowed annotation for the method. 112
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 112
     Error
    sizes LineLength Line is longer than 80 characters (found 96). 113
     Error
    sizes LineLength Line is longer than 80 characters (found 134). 114
     Error
    sizes LineLength Line is longer than 80 characters (found 182). 116
     Error
    sizes LineLength Line is longer than 80 characters (found 146). 117
     Error
    sizes LineLength Line is longer than 80 characters (found 172). 122
     Error
    design DesignForExtension Class 'JApiCmpMojo' looks like designed for extension (can be subclassed), but the method 'executeWithParameters' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpMojo' final or making the method 'executeWithParameters' static/final/abstract/empty, or adding allowed annotation for the method. 122
     Error
    misc FinalParameters Parameter pluginParameters should be final. 122
     Error
    misc FinalParameters Parameter mavenParameters should be final. 122
     Error
    sizes LineLength Line is longer than 80 characters (found 102). 124
     Error
    sizes LineLength Line is longer than 80 characters (found 148). 128
     Error
    coding HiddenField 'options' hides a field. 134
     Error
    sizes LineLength Line is longer than 80 characters (found 104). 135
     Error
    sizes LineLength Line is longer than 80 characters (found 85). 136
     Error
    sizes LineLength Line is longer than 80 characters (found 87). 137
     Error
    sizes LineLength Line is longer than 80 characters (found 104). 138
     Error
    sizes LineLength Line is longer than 80 characters (found 108). 140
     Error
    sizes LineLength Line is longer than 80 characters (found 127). 143
     Error
    sizes LineLength Line is longer than 80 characters (found 113). 145
     Error
    sizes LineLength Line is longer than 80 characters (found 132). 146
     Error
    sizes LineLength Line is longer than 80 characters (found 86). 147
     Error
    sizes LineLength Line is longer than 80 characters (found 82). 148
     Error
    sizes LineLength Line is longer than 80 characters (found 84). 149
     Error
    sizes LineLength Line is longer than 80 characters (found 148). 150
     Error
    sizes LineLength Line is longer than 80 characters (found 177). 152
     Error
    sizes LineLength Line is longer than 80 characters (found 118). 154
     Error
    sizes LineLength Line is longer than 80 characters (found 112). 156
     Error
    sizes LineLength Line is longer than 80 characters (found 180). 162
     Error
    sizes LineLength Line is longer than 80 characters (found 115). 164
     Error
    sizes LineLength Line is longer than 80 characters (found 97). 165
     Error
    sizes LineLength Line is longer than 80 characters (found 113). 166
     Error
    sizes LineLength Line is longer than 80 characters (found 86). 167
     Error
    sizes LineLength Line is longer than 80 characters (found 128). 170
     Error
    sizes LineLength Line is longer than 80 characters (found 133). 173
     Error
    sizes LineLength Line is longer than 80 characters (found 166). 177
     Error
    misc FinalParameters Parameter comparatorOptions should be final. 177
     Error
    misc FinalParameters Parameter pluginParameters should be final. 177
     Error
    sizes LineLength Line is longer than 80 characters (found 158). 178
     Error
    sizes LineLength Line is longer than 80 characters (found 197). 179
     Error
    sizes LineLength Line is longer than 80 characters (found 131). 180
     Error
    sizes LineLength Line is longer than 80 characters (found 99). 182
     Error
    sizes LineLength Line is longer than 80 characters (found 113). 184
     Error
    sizes LineLength Line is longer than 80 characters (found 98). 185
     Error
    sizes LineLength Line is longer than 80 characters (found 213). 191
     Error
    sizes LineLength Line is longer than 80 characters (found 123). 194
     Error
    sizes LineLength Line is longer than 80 characters (found 101). 195
     Error
    sizes LineLength Line is longer than 80 characters (found 106). 196
     Error
    sizes LineLength Line is longer than 80 characters (found 98). 197
     Error
    sizes LineLength Line is longer than 80 characters (found 82). 198
     Error
    sizes LineLength Line is longer than 80 characters (found 213). 203
     Error
    sizes LineLength Line is longer than 80 characters (found 252). 206
     Error
    sizes LineLength Line is longer than 80 characters (found 104). 211
     Error
    misc FinalParameters Parameter pluginParameters should be final. 211
     Error
    misc FinalParameters Parameter mavenParameters should be final. 211
     Error
    sizes LineLength Line is longer than 80 characters (found 124). 212
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 217
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 217
     Error
    sizes LineLength Line is longer than 80 characters (found 105). 220
     Error
    misc FinalParameters Parameter mavenProject should be final. 220
     Error
    misc FinalParameters Parameter version should be final. 220
     Error
    sizes LineLength Line is longer than 80 characters (found 89). 221
     Error
    sizes LineLength Line is longer than 80 characters (found 149). 222
     Error
    sizes LineLength Line is longer than 80 characters (found 145). 225
     Error
    misc FinalParameters Parameter groupId should be final. 225
     Error
    misc FinalParameters Parameter artifactId should be final. 225
     Error
    misc FinalParameters Parameter classifier should be final. 225
     Error
    misc FinalParameters Parameter type should be final. 225
     Error
    misc FinalParameters Parameter version should be final. 225
     Error
    sizes LineLength Line is longer than 80 characters (found 114). 230
     Error
    sizes LineLength Line is longer than 80 characters (found 126). 235
     Error
    sizes LineLength Line is longer than 80 characters (found 185). 236
     Error
    coding HiddenField 'mavenProject' hides a field. 237
     Error
    sizes LineLength Line is longer than 80 characters (found 144). 238
     Error
    sizes LineLength Line is longer than 80 characters (found 144). 239
     Error
    sizes LineLength Line is longer than 80 characters (found 95). 241
     Error
    sizes LineLength Line is longer than 80 characters (found 108). 242
     Error
    sizes LineLength Line is longer than 80 characters (found 109). 243
     Error
    sizes LineLength Line is longer than 80 characters (found 148). 247
     Error
    sizes LineLength Line is longer than 80 characters (found 143). 248
     Error
    sizes LineLength Line is longer than 80 characters (found 163). 249
     Error
    sizes LineLength Line is longer than 80 characters (found 127). 250
     Error
    sizes LineLength Line is longer than 80 characters (found 102). 253
     Error
    sizes LineLength Line is longer than 80 characters (found 97). 254
     Error
    whitespace OperatorWrap '+' should be on a new line. 254
     Error
    sizes LineLength Line is longer than 80 characters (found 128). 255
     Error
    sizes LineLength Line is longer than 80 characters (found 161). 258
     Error
    sizes LineLength Line is longer than 80 characters (found 88). 259
     Error
    sizes LineLength Line is longer than 80 characters (found 97). 262
     Error
    sizes LineLength Line is longer than 80 characters (found 103). 263
     Error
    sizes LineLength Line is longer than 80 characters (found 106). 268
     Error
    misc FinalParameters Parameter artifactVersion should be final. 268
     Error
    misc FinalParameters Parameter artifactResult should be final. 268
     Error
    sizes LineLength Line is longer than 80 characters (found 182). 269
     Error
    misc FinalParameters Parameter pluginParameters should be final. 269
     Error
    misc FinalParameters Parameter configurationVersion should be final. 269
     Error
    sizes LineLength Line is longer than 80 characters (found 106). 270
     Error
    sizes LineLength Line is longer than 80 characters (found 84). 271
     Error
    sizes LineLength Line is longer than 80 characters (found 82). 273
     Error
    sizes LineLength Line is longer than 80 characters (found 92). 277
     Error
    sizes LineLength Line is longer than 80 characters (found 108). 278
     Error
    sizes LineLength Line is longer than 80 characters (found 113). 280
     Error
    sizes LineLength Line is longer than 80 characters (found 166). 285
     Error
    misc FinalParameters Parameter availableVersions should be final. 285
     Error
    misc FinalParameters Parameter pluginParameters should be final. 285
     Error
    sizes LineLength Line is longer than 80 characters (found 138). 286
     Error
    sizes LineLength Line is longer than 80 characters (found 108). 287
     Error
    sizes LineLength Line is longer than 80 characters (found 177). 292
     Error
    sizes LineLength Line is longer than 80 characters (found 152). 294
     Error
    whitespace EmptyForIteratorPad ';' is followed by whitespace. 294
     Error
    sizes LineLength Line is longer than 80 characters (found 100). 295
     Error
    sizes LineLength Line is longer than 80 characters (found 86). 296
     Error
    sizes LineLength Line is longer than 80 characters (found 191). 300
     Error
    sizes LineLength Line is longer than 80 characters (found 114). 305
     Error
    sizes LineLength Line is longer than 80 characters (found 124). 309
     Error
    misc FinalParameters Parameter versions should be final. 309
     Error
    misc FinalParameters Parameter pluginParameters should be final. 309
     Error
    sizes LineLength Line is longer than 80 characters (found 129). 310
     Error
    sizes LineLength Line is longer than 80 characters (found 124). 311
     Error
    sizes LineLength Line is longer than 80 characters (found 222). 315
     Error
    misc FinalParameters Parameter pluginParameters should be final. 315
     Error
    misc FinalParameters Parameter mavenParameters should be final. 315
     Error
    misc FinalParameters Parameter oldArchives should be final. 315
     Error
    misc FinalParameters Parameter newArchives should be final. 315
     Error
    sizes LineLength Line is longer than 80 characters (found 188). 317
     Error
    sizes LineLength Line is longer than 80 characters (found 114). 320
     Error
    sizes LineLength Line is longer than 80 characters (found 188). 322
     Error
    sizes LineLength Line is longer than 80 characters (found 118). 326
     Error
    sizes LineLength Line is longer than 80 characters (found 145). 328
     Error
    sizes LineLength Line is longer than 80 characters (found 108). 329
     Error
    sizes LineLength Line is longer than 80 characters (found 163). 330
     Error
    sizes LineLength Line is longer than 80 characters (found 118). 334
     Error
    sizes LineLength Line is longer than 80 characters (found 110). 336
     Error
    sizes LineLength Line is longer than 80 characters (found 139). 341
     Error
    sizes LineLength Line is longer than 80 characters (found 188). 345
     Error
    sizes LineLength Line is longer than 80 characters (found 114). 348
     Error
    sizes LineLength Line is longer than 80 characters (found 188). 350
     Error
    sizes LineLength Line is longer than 80 characters (found 118). 354
     Error
    sizes LineLength Line is longer than 80 characters (found 86). 355
     Error
    coding HiddenField 'mavenProject' hides a field. 355
     Error
    sizes LineLength Line is longer than 80 characters (found 89). 356
     Error
    sizes LineLength Line is longer than 80 characters (found 129). 357
     Error
    sizes LineLength Line is longer than 80 characters (found 152). 358
     Error
    sizes LineLength Line is longer than 80 characters (found 91). 362
     Error
    sizes LineLength Line is longer than 80 characters (found 172). 363
     Error
    sizes LineLength Line is longer than 80 characters (found 118). 364
     Error
    sizes LineLength Line is longer than 80 characters (found 209). 366
     Error
    sizes LineLength Line is longer than 80 characters (found 152). 369
     Error
    sizes LineLength Line is longer than 80 characters (found 167). 375
     Error
    sizes LineLength Line is longer than 80 characters (found 96). 376
     Error
    sizes LineLength Line is longer than 80 characters (found 167). 383
     Error
    sizes LineLength Line is longer than 80 characters (found 96). 384
     Error
    sizes LineLength Line is longer than 80 characters (found 203). 392
     Error
    design DesignForExtension Class 'JApiCmpMojo' looks like designed for extension (can be subclassed), but the method 'breakBuildIfNecessary' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpMojo' final or making the method 'breakBuildIfNecessary' static/final/abstract/empty, or adding allowed annotation for the method. 392
     Error
    misc FinalParameters Parameter jApiClasses should be final. 392
     Error
    misc FinalParameters Parameter parameterParam should be final. 392
     Error
    misc FinalParameters Parameter options should be final. 392
     Error
    coding HiddenField 'options' hides a field. 392
     Error
    misc FinalParameters Parameter jarArchiveComparator should be final. 392
     Error
    sizes LineLength Line is longer than 80 characters (found 93). 396
     Error
    sizes LineLength Line is longer than 80 characters (found 91). 397
     Error
    sizes LineLength Line is longer than 80 characters (found 82). 399
     Error
    sizes LineLength Line is longer than 80 characters (found 82). 402
     Error
    sizes LineLength Line is longer than 80 characters (found 92). 411
     Error
    sizes LineLength Line is longer than 80 characters (found 92). 414
     Error
    sizes LineLength Line is longer than 80 characters (found 127). 418
     Error
    misc FinalParameters Parameter msg should be final. 420
     Error
    misc FinalParameters Parameter error should be final. 420
     Error
    sizes LineLength Line is longer than 80 characters (found 90). 427
     Error
    sizes LineLength Line is longer than 80 characters (found 117). 430
     Error
    sizes LineLength Line is longer than 80 characters (found 106). 435
     Error
    misc FinalParameters Parameter parameterParam should be final. 435
     Error
    sizes LineLength Line is longer than 80 characters (found 107). 438
     Error
    sizes LineLength Line is longer than 80 characters (found 93). 440
     Error
    sizes LineLength Line is longer than 80 characters (found 124). 443
     Error
    design DesignForExtension Class 'JApiCmpMojo' looks like designed for extension (can be subclassed), but the method 'getOptions' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JApiCmpMojo' final or making the method 'getOptions' static/final/abstract/empty, or adding allowed annotation for the method. 443
     Error
    misc FinalParameters Parameter pluginParameters should be final. 443
     Error
    misc FinalParameters Parameter mavenParameters should be final. 443
     Error
    sizes LineLength Line is longer than 80 characters (found 149). 448
     Error
    sizes LineLength Line is longer than 80 characters (found 86). 451
     Error
    sizes LineLength Line is longer than 80 characters (found 128). 454
     Error
    sizes LineLength Line is longer than 80 characters (found 87). 455
     Error
    sizes LineLength Line is longer than 80 characters (found 220). 457
     Error
    sizes LineLength Line is longer than 80 characters (found 126). 460
     Error
    sizes LineLength Line is longer than 80 characters (found 98). 461
     Error
    sizes LineLength Line is longer than 80 characters (found 147). 466
     Error
    sizes LineLength Line is longer than 80 characters (found 146). 472
     Error
    sizes LineLength Line is longer than 80 characters (found 95). 476
     Error
    sizes LineLength Line is longer than 80 characters (found 103). 477
     Error
    sizes LineLength Line is longer than 80 characters (found 141). 479
     Error
    sizes LineLength Line is longer than 80 characters (found 125). 481
     Error
    sizes LineLength Line is longer than 80 characters (found 129). 482
     Error
    sizes LineLength Line is longer than 80 characters (found 83). 485
     Error
    sizes LineLength Line is longer than 80 characters (found 92). 487
     Error
    sizes LineLength Line is longer than 80 characters (found 89). 489
     Error
    sizes LineLength Line is longer than 80 characters (found 98). 490
     Error
    sizesLineLengthLine is longer than 80 characters (found 96).491
     Error
    sizes LineLength Line is longer than 80 characters (found 86).495
    496
     Error
    misc FinalParameters Parameter parameterParam should be final.495
    496
     Error
    sizes LineLength Line is longer than 80 characters (found 95).503
    504
     Error
    misc FinalParameters Parameter parameterParam should be final.503
    504
     Error
    sizes LineLength Line is longer than 80 characters (found 97).506
    507
     Error
    sizes LineLength Line is longer than 80 characters (found 82).508
    509
     Error
    sizes LineLength Line is longer than 80 characters (found 90).511
    512
     Error
    misc FinalParameters Parameter parameter should be final.511
    512
     Error
    coding HiddenField 'parameter' hides a field.511
    512
     Error
    sizes LineLength Line is longer than 80 characters (found 92).514
    515
     Error
    sizes LineLength Line is longer than 80 characters (found 82).516
    517
     Error
    sizes LineLength Line is longer than 80 characters (found 82).519
    520
     Error
    misc FinalParameters Parameter parameter should be final.519
    520
     Error
    coding HiddenField 'parameter' hides a field.519
    520
     Error
    sizes LineLength Line is longer than 80 characters (found 84).522
    523
     Error
    sizes LineLength Line is longer than 80 characters (found 106).527
    528
     Error
    misc FinalParameters Parameter pluginParameters should be final.527
    528
     Error
    sizes LineLength Line is longer than 80 characters (found 109).530
    531
     Error
    sizes LineLength Line is longer than 80 characters (found 142).532
    533
     Error
    sizes LineLength Line is longer than 80 characters (found 82).533
    534
     Error
    sizes LineLength Line is longer than 80 characters (found 116).534
    535
     Error
    sizes LineLength Line is longer than 80 characters (found 157).538
    539
     Error
    sizes LineLength Line is longer than 80 characters (found 118).540
    541
     Error
    sizes LineLength Line is longer than 80 characters (found 122).543
    544
     Error
    sizes LineLength Line is longer than 80 characters (found 93).546
    547
     Error
    sizes LineLength Line is longer than 80 characters (found 104).550
    551
     Error
    sizes LineLength Line is longer than 80 characters (found 147).554
    555
     Error
    sizes LineLength Line is longer than 80 characters (found 110).556
    557
     Error
    sizes LineLength Line is longer than 80 characters (found 133).559
    560
     Error
    sizes LineLength Line is longer than 80 characters (found 124).563
    564
     Error
    misc FinalParameters Parameter mavenParameters should be final.563
    564
     Error
    misc FinalParameters Parameter pluginParameters should be final.563
    564
     Error
    misc FinalParameters Parameter options should be final.563
    564
     Error
    coding HiddenField 'options' hides a field.563
    564
     Error
    sizes LineLength Line is longer than 80 characters (found 203).564
    565
     Error
    misc FinalParameters Parameter jApiClasses should be final.564
    565
     Error
    misc FinalParameters Parameter jApiCmpBuildDir should be final.564
    565
     Error
    misc FinalParameters Parameter semanticVersioningInformation should be final.564
    565
     Error
    sizes LineLength Line is longer than 80 characters (found 97).567
    568
     Error
    sizes LineLength Line is longer than 80 characters (found 118).570
    571
     Error
    sizes LineLength Line is longer than 80 characters (found 107).572
    573
     Error
    sizes LineLength Line is longer than 80 characters (found 144).573
    574
     Error
    sizes LineLength Line is longer than 80 characters (found 144).578
    579
     Error
    misc FinalParameters Parameter jApiClasses should be final.578
    579
     Error
    misc FinalParameters Parameter jApiCmpBuildDir should be final.578
    579
     Error
    misc FinalParameters Parameter options should be final.578
    579
     Error
    coding HiddenField 'options' hides a field.578
    579
     Error
    misc FinalParameters Parameter mavenParameters should be final.578
    579
     Error
    sizes LineLength Line is longer than 80 characters (found 173).579
    580
     Error
    misc FinalParameters Parameter pluginParameters should be final.579
    580
     Error
    misc FinalParameters Parameter semanticVersioningInformation should be final.579
    580
     Error
    sizes LineLength Line is longer than 80 characters (found 127).581
    582
     Error
    sizes LineLength Line is longer than 80 characters (found 102).582
    583
     Error
    sizes LineLength Line is longer than 80 characters (found 106).584
    585
     Error
    sizes LineLength Line is longer than 80 characters (found 99).586
    587
     Error
    sizes LineLength Line is longer than 80 characters (found 135).587
    588
     Error
    sizes LineLength Line is longer than 80 characters (found 122).589
    590
     Error
    sizes LineLength Line is longer than 80 characters (found 146).593
    594
     Error
    misc FinalParameters Parameter jApiClasses should be final.593
    594
     Error
    misc FinalParameters Parameter jApiCmpBuildDir should be final.593
    594
     Error
    misc FinalParameters Parameter options should be final.593
    594
     Error
    coding HiddenField 'options' hides a field.593
    594
     Error
    misc FinalParameters Parameter mavenParameters should be final.593
    594
     Error
    sizes LineLength Line is longer than 80 characters (found 175).594
    595
     Error
    misc FinalParameters Parameter pluginParameters should be final.594
    595
     Error
    misc FinalParameters Parameter semanticVersioningInformation should be final.594
    595
     Error
    sizes LineLength Line is longer than 80 characters (found 129).596
    597
     Error
    sizes LineLength Line is longer than 80 characters (found 105).597
    598
     Error
    sizes LineLength Line is longer than 80 characters (found 107).598
    599
     Error
    sizes LineLength Line is longer than 80 characters (found 91).600
    601
     Error
    sizes LineLength Line is longer than 80 characters (found 120).601
    602
     Error
    sizes LineLength Line is longer than 80 characters (found 132).603
    604
     Error
    misc FinalParameters Parameter pluginParameters should be final.607
    608
     Error
    sizes LineLength Line is longer than 80 characters (found 94).610
    611
     Error
    misc FinalParameters Parameter pluginParameters should be final.615
    616
     Error
    sizes LineLength Line is longer than 80 characters (found 93).618
    619
     Error
    misc FinalParameters Parameter mavenParameters should be final.623
    624
     Error
    sizes LineLength Line is longer than 80 characters (found 89).625
    626
     Error
    sizes LineLength Line is longer than 80 characters (found 88).631
    632
     Error
    sizes LineLength Line is longer than 80 characters (found 180).638
    639
     Error
    misc FinalParameters Parameter comparatorOptions should be final.638
    639
     Error
    misc FinalParameters Parameter pluginParameters should be final.638
    639
     Error
    misc FinalParameters Parameter mavenParameters should be final.638
    639
     Error
    sizes LineLength Line is longer than 80 characters (found 151).641
    642
     Error
    sizes LineLength Line is longer than 80 characters (found 204).642
    643
     Error
    whitespace OperatorWrap '+' should be on a new line.642
    643
     Error
    sizes LineLength Line is longer than 80 characters (found 199).643
    644
     Error
    whitespace OperatorWrap '+' should be on a new line.643
    644
     Error
    sizes LineLength Line is longer than 80 characters (found 99).644
    645
     Error
    sizes LineLength Line is longer than 80 characters (found 149).647
    648
     Error
    sizes LineLength Line is longer than 80 characters (found 111).649
    650
     Error
    sizes LineLength Line is longer than 80 characters (found 206).650
    651
     Error
    sizes LineLength Line is longer than 80 characters (found 103).651
    652
     Error
    sizes LineLength Line is longer than 80 characters (found 144).652
    653
     Error
    sizes LineLength Line is longer than 80 characters (found 147).654
    655
     Error
    sizes LineLength Line is longer than 80 characters (found 151).658
    659
     Error
    sizes LineLength Line is longer than 80 characters (found 216).660
    661
     Error
    sizes LineLength Line is longer than 80 characters (found 101).662
    663
     Error
    sizes LineLength Line is longer than 80 characters (found 126).663
    664
     Error
    sizes LineLength Line is longer than 80 characters (found 226).664
    665
     Error
    sizes LineLength Line is longer than 80 characters (found 104).665
    666
     Error
    sizes LineLength Line is longer than 80 characters (found 141).666
    667
     Error
    sizes LineLength Line is longer than 80 characters (found 101).670
    671
     Error
    sizes LineLength Line is longer than 80 characters (found 126).671
    672
     Error
    sizes LineLength Line is longer than 80 characters (found 226).672
    673
     Error
    sizes LineLength Line is longer than 80 characters (found 104).673
    674
     Error
    sizes LineLength Line is longer than 80 characters (found 141).674
    675
     Error
    sizes LineLength Line is longer than 80 characters (found 142).678
    679
     Error
    sizes LineLength Line is longer than 80 characters (found 222).681
    682
     Error
    sizes LineLength Line is longer than 80 characters (found 139).683
    684
     Error
    sizes LineLength Line is longer than 80 characters (found 128).687
    688
     Error
    sizes LineLength Line is longer than 80 characters (found 240).690
    691
     Error
    misc FinalParameters Parameter comparatorOptions should be final.690
    691
     Error
    misc FinalParameters Parameter mavenParameters should be final.690
    691
     Error
    misc FinalParameters Parameter pluginParameters should be final.690
    691
     Error
    misc FinalParameters Parameter configurationVersion should be final.690
    691
     Error
    coding HiddenField 'mavenProject' hides a field.691
    692
     Error
    sizes LineLength Line is longer than 80 characters (found 109).692
    693
     Error
    sizes LineLength Line is longer than 80 characters (found 85).697
    698
     Error
    sizes LineLength Line is longer than 80 characters (found 103).700
    701
     Error
    sizes LineLength Line is longer than 80 characters (found 86).704
    705
     Error
    sizes LineLength Line is longer than 80 characters (found 81).707
    708
     Error
    sizes LineLength Line is longer than 80 characters (found 84).710
    711
     Error
    coding HiddenField 'mavenProject' hides a field.710
    711
     Error
    sizes LineLength Line is longer than 80 characters (found 171).711
    712
     Error
    sizes LineLength Line is longer than 80 characters (found 89).712
    713
     Error
    sizes LineLength Line is longer than 80 characters (found 122).713
    714
     Error
    sizes LineLength Line is longer than 80 characters (found 84).714
    715
     Error
    sizes LineLength Line is longer than 80 characters (found 107).716
    717
     Error
    sizes LineLength Line is longer than 80 characters (found 115).717
    718
     Error
    sizes LineLength Line is longer than 80 characters (found 116).718
    719
     Error
    sizes LineLength Line is longer than 80 characters (found 84).719
    720
     Error
    sizes LineLength Line is longer than 80 characters (found 114).727
    728
     Error
    sizes LineLength Line is longer than 80 characters (found 95).728
    729
     Error
    sizes LineLength Line is longer than 80 characters (found 105).729
    730
     Error
    sizes LineLength Line is longer than 80 characters (found 104).731
    732
     Error
    sizes LineLength Line is longer than 80 characters (found 108).736
    737
     Error
    sizes LineLength Line is longer than 80 characters (found 272).739
    740
     Error
    misc FinalParameters Parameter dependencyDescriptor should be final.739
    740
     Error
    misc FinalParameters Parameter parameterName should be final.739
    740
     Error
    misc FinalParameters Parameter mavenParameters should be final.739
    740
     Error
    misc FinalParameters Parameter pluginParameters should be final.739
    740
     Error
    misc FinalParameters Parameter configurationVersion should be final.739
    740
     Error
    sizes LineLength Line is longer than 80 characters (found 82).742
    743
     Error
    sizes LineLength Line is longer than 80 characters (found 157).743
    744
     Error
    sizes LineLength Line is longer than 80 characters (found 103).745
    746
     Error
    sizes LineLength Line is longer than 80 characters (found 147).746
    747
     Error
    sizes LineLength Line is longer than 80 characters (found 142).748
    749
     Error
    sizes LineLength Line is longer than 80 characters (found 246).753
    754
     Error
    misc FinalParameters Parameter version should be final.753
    754
     Error
    misc FinalParameters Parameter parameterName should be final.753
    754
     Error
    misc FinalParameters Parameter mavenParameters should be final.753
    754
     Error
    misc FinalParameters Parameter pluginParameters should be final.753
    754
     Error
    misc FinalParameters Parameter configurationVersion should be final.753
    754
     Error
    sizes LineLength Line is longer than 80 characters (found 154).757
    758
     Error
    sizes LineLength Line is longer than 80 characters (found 88).759
    760
     Error
    sizes LineLength Line is longer than 80 characters (found 144).760
    761
     Error
    sizes LineLength Line is longer than 80 characters (found 112).762
    763
     Error
    sizes LineLength Line is longer than 80 characters (found 116).765
    766
     Error
    sizes LineLength Line is longer than 80 characters (found 234).768
    769
     Error
    misc FinalParameters Parameter parameterName should be final.768
    769
     Error
    misc FinalParameters Parameter configurationFile should be final.768
    769
     Error
    misc FinalParameters Parameter configurationVersion should be final.768
    769
     Error
    misc FinalParameters Parameter pluginParameters should be final.768
    769
     Error
    sizes LineLength Line is longer than 80 characters (found 159).771
    772
     Error
    sizes LineLength Line is longer than 80 characters (found 93).775
    776
     Error
    sizes LineLength Line is longer than 80 characters (found 137).776
    777
     Error
    sizes LineLength Line is longer than 80 characters (found 121).778
    779
     Error
    sizes LineLength Line is longer than 80 characters (found 93).782
    783
     Error
    sizes LineLength Line is longer than 80 characters (found 156).783
    784
     Error
    sizes LineLength Line is longer than 80 characters (found 146).785
    786
     Error
    sizes LineLength Line is longer than 80 characters (found 95).788
    789
     Error
    sizes LineLength Line is longer than 80 characters (found 138).791
    792
     Error
    misc FinalParameters Parameter parameterName should be final.791
    792
     Error
    misc FinalParameters Parameter dependency should be final.791
    792
     Error
    misc FinalParameters Parameter mavenParameters should be final.791
    792
     Error
    sizes LineLength Line is longer than 80 characters (found 242).792
    793
     Error
    misc FinalParameters Parameter transitively should be final.792
    793
     Error
    misc FinalParameters Parameter pluginParameters should be final.792
    793
     Error
    misc FinalParameters Parameter configurationVersion should be final.792
    793
     Error
    sizes LineLength Line is longer than 80 characters (found 101).795
    796
     Error
    coding HiddenField 'mavenProject' hides a field.797
    798
     Error
    sizes LineLength Line is longer than 80 characters (found 135).799
    800
     Error
    sizes LineLength Line is longer than 80 characters (found 148).801
    802
     Error
    sizes LineLength Line is longer than 80 characters (found 125).805
    806
     Error
    sizes LineLength Line is longer than 80 characters (found 143).807
    808
     Error
    sizes LineLength Line is longer than 80 characters (found 109).813
    814
     Error
    sizes LineLength Line is longer than 80 characters (found 94).815
    816
     Error
    sizes LineLength Line is longer than 80 characters (found 129).819
    820
     Error
    sizes LineLength Line is longer than 80 characters (found 100).820
    821
     Error
    sizes LineLength Line is longer than 80 characters (found 81).831
    832
     Error
    sizes LineLength Line is longer than 80 characters (found 138).833
    834
     Error
    sizes LineLength Line is longer than 80 characters (found 124).835
    836
     Error
    sizes LineLength Line is longer than 80 characters (found 129).837
    838
     Error
    sizes LineLength Line is longer than 80 characters (found 100).844
    845
     Error
    sizes LineLength Line is longer than 80 characters (found 149).845
    846
     Error
    sizes LineLength Line is longer than 80 characters (found 128).847
    848
     Error
    sizes LineLength Line is longer than 80 characters (found 100).852
    853
     Error
    sizes LineLength Line is longer than 80 characters (found 150).853
    854
     Error
    sizes LineLength Line is longer than 80 characters (found 129).855
    856
     Error
    sizes LineLength Line is longer than 80 characters (found 87).861
    862
     Error
    misc FinalParameters Parameter file should be final.867
    868
     Error
    sizes LineLength Line is longer than 80 characters (found 112).869
    870
     Error
    sizes LineLength Line is longer than 80 characters (found 105).870
    871
     Error
    sizes LineLength Line is longer than 80 characters (found 125).877
    878
     Error
    misc FinalParameters Parameter pluginParameters should be final.877
    878
     Error
    misc FinalParameters Parameter configurationVersion should be final.877
    878
     Error
    sizes LineLength Line is longer than 80 characters (found 90).879
    880
     Error
    sizes LineLength Line is longer than 80 characters (found 91).880
    881
     Error
    sizes LineLength Line is longer than 80 characters (found 89).883
    884
     Error
    misc FinalParameters Parameter pluginParameters should be final.883
    884
     Error
    sizes LineLength Line is longer than 80 characters (found 119).887
    888
     Error
    sizes LineLength Line is longer than 80 characters (found 109).888
    889
     Error
    sizes LineLength Line is longer than 80 characters (found 127).895
    896
     Error
    misc FinalParameters Parameter pluginParameters should be final.895
    896
     Error
    misc FinalParameters Parameter configurationVersion should be final.895
    896
     Error
    sizes LineLength Line is longer than 80 characters (found 119).896
    897
     Error
    sizes LineLength Line is longer than 80 characters (found 127).899
    900
     Error
    misc FinalParameters Parameter pluginParameters should be final.899
    900
     Error
    misc FinalParameters Parameter configurationVersion should be final.899
    900
     Error
    sizes LineLength Line is longer than 80 characters (found 119).900
    901
     Error
    sizes LineLength Line is longer than 80 characters (found 84).903
    904
     Error
    misc FinalParameters Parameter pluginParameters should be final.903
    904
     Error
    sizes LineLength Line is longer than 80 characters (found 116).906
    907
     Error
    sizes LineLength Line is longer than 80 characters (found 84).911
    912
     Error
    misc FinalParameters Parameter pluginParameters should be final.911
    912
     Error
    sizes LineLength Line is longer than 80 characters (found 116).914
    915
     Error
    sizes LineLength Line is longer than 80 characters (found 107).919
    920
     Error
    misc FinalParameters Parameter output should be final.919
    920
     Error
    misc FinalParameters Parameter outputfile should be final.919
    920
     Error
    sizes LineLength Line is longer than 80 characters (found 138).920
    921
     Error
    sizes LineLength Line is longer than 80 characters (found 94).922
    923
     Error
    sizes LineLength Line is longer than 80 characters (found 122).924
    925
     Error
    sizes LineLength Line is longer than 80 characters (found 231).928
    929
     Error
    misc FinalParameters Parameter dependency should be final.928
    929
     Error
    misc FinalParameters Parameter mavenParameters should be final.928
    929
     Error
    misc FinalParameters Parameter transitively should be final.928
    929
     Error
    misc FinalParameters Parameter pluginParameters should be final.928
    929
     Error
    misc FinalParameters Parameter configurationVersion should be final.928
    929
     Error
    sizes LineLength Line is longer than 80 characters (found 146).929
    930
     Error
    sizes LineLength Line is longer than 80 characters (found 186).930
    931
     Error
    sizes LineLength Line is longer than 80 characters (found 106).931
    932
     Error
    sizes LineLength Line is longer than 80 characters (found 205).934
    935
     Error
    misc FinalParameters Parameter artifact should be final.934
    935
     Error
    misc FinalParameters Parameter mavenParameters should be final.934
    935
     Error
    misc FinalParameters Parameter pluginParameters should be final.934
    935
     Error
    misc FinalParameters Parameter configurationVersion should be final.934
    935
     Error
    sizes LineLength Line is longer than 80 characters (found 126).935
    936
     Error
    sizes LineLength Line is longer than 80 characters (found 128).936
    937
     Error
    sizes LineLength Line is longer than 80 characters (found 134).942
    943
     Error
    sizes LineLength Line is longer than 80 characters (found 126).944
    945
     Error
    sizes LineLength Line is longer than 80 characters (found 102).945
    946
     Error
    sizes LineLength Line is longer than 80 characters (found 98).947
    948
     Error
    sizes LineLength Line is longer than 80 characters (found 108).951
    952
     Error
    sizes LineLength Line is longer than 80 characters (found 116).952
    953
     Error
    sizes LineLength Line is longer than 80 characters (found 134).954
    955
     Error
    sizes LineLength Line is longer than 80 characters (found 112).958
    959
     Error
    sizes LineLength Line is longer than 80 characters (found 92).962
    963
     Error
    sizes LineLength Line is longer than 80 characters (found 82).965
    966
     Error
    sizes LineLength Line is longer than 80 characters (found 116).971
    972
     Error
    misc FinalParameters Parameter pluginParameters should be final.971
    972
     Error
    misc FinalParameters Parameter mavenParameters should be final.971
    972
     Error
    sizes LineLength Line is longer than 80 characters (found 109).973
    974
     Error
    sizes LineLength Line is longer than 80 characters (found 87).976
    977
     Error
    misc FinalParameters Parameter value should be final.976
    977
     Error
    misc FinalParameters Parameter msg should be final.976
    +977

    japicmp/maven/JApiCmpReport.java

    @@ -4037,203 +4037,209 @@

    japicmp/maven/MavenParameters.javaLine

    + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -4241,210 +4247,204 @@

    japicmp/maven/MavenParameters.java57

     Error
    javadocJavadocPackageMissing package-info.java file.1
     Error
    whitespace FileTabCharacter File contains tab characters (this is the first instance). 13
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 13
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 14
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 15
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 16
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 17
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 18
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 19
     Error
    sizes LineLength Line is longer than 80 characters (found 83). 21
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 21
     Error
    coding HiddenField 'artifactRepositories' hides a field. 21
     Error
    sizes LineLength Line is longer than 80 characters (found 163). 22
     Error
    coding HiddenField 'mavenProject' hides a field. 22
     Error
    coding HiddenField 'mojoExecution' hides a field. 22
     Error
    coding HiddenField 'versionRangeWithProjectVersion' hides a field. 22
     Error
    sizes LineLength Line is longer than 80 characters (found 172). 23
     Error
    coding HiddenField 'repoSystem' hides a field. 23
     Error
    coding HiddenField 'repoSession' hides a field. 23
     Error
    coding HiddenField 'remoteRepos' hides a field. 23
     Error
    sizes LineLength Line is longer than 80 characters (found 85). 27
     Error
    design DesignForExtension Class 'MavenParameters' looks like designed for extension (can be subclassed), but the method 'getArtifactRepositories' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MavenParameters' final or making the method 'getArtifactRepositories' static/final/abstract/empty, or adding allowed annotation for the method. 33
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 33
     Error
    design DesignForExtension Class 'MavenParameters' looks like designed for extension (can be subclassed), but the method 'getMavenProject' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MavenParameters' final or making the method 'getMavenProject' static/final/abstract/empty, or adding allowed annotation for the method. 37
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 37
     Error
    design DesignForExtension Class 'MavenParameters' looks like designed for extension (can be subclassed), but the method 'getMojoExecution' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MavenParameters' final or making the method 'getMojoExecution' static/final/abstract/empty, or adding allowed annotation for the method. 41
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 41
     Error
    design DesignForExtension Class 'MavenParameters' looks like designed for extension (can be subclassed), but the method 'getVersionRangeWithProjectVersion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MavenParameters' final or making the method 'getVersionRangeWithProjectVersion' static/final/abstract/empty, or adding allowed annotation for the method. 45
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 45
     Error
    design DesignForExtension Class 'MavenParameters' looks like designed for extension (can be subclassed), but the method 'getRepoSystem' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MavenParameters' final or making the method 'getRepoSystem' static/final/abstract/empty, or adding allowed annotation for the method. 49
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 49
     Error
    design DesignForExtension Class 'MavenParameters' looks like designed for extension (can be subclassed), but the method 'getRepoSession' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MavenParameters' final or making the method 'getRepoSession' static/final/abstract/empty, or adding allowed annotation for the method. 53
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment. 53
     Error
    design DesignForExtension Class 'MavenParameters' looks like designed for extension (can be subclassed), but the method 'getRemoteRepos' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MavenParameters' final or making the method 'getRemoteRepos' static/final/abstract/empty, or adding allowed annotation for the method. 57
     Error
    javadoc MissingJavadocMethod

    japicmp/maven/Parameter.java

    - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - @@ -4477,1642 +4477,1690 @@

    japicmp/maven/Parameter.java

    + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + -
    Severity Category Rule Message Line
     Error
    whitespace FileTabCharacter File contains tab characters (this is the first instance). 6
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 6
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 7
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 8
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 9
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 10
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 11
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 12
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 13
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 14
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 15
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 16
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 17
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 19
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 21
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 23
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 25
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 27
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 29
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 31
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 33
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 35
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 37
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 39
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 41
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 43
     Error
    sizes LineLength Line is longer than 80 characters (found 97). 45
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 45
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 47
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 48
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 50
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 52
     Error
    sizesLineLengthLine is longer than 80 characters (found 97).54
     Error
    javadoc 58
     Error
    sizesLineLengthLine is longer than 80 characters (found 97).60
     Error
    javadoc JavadocVariable Missing a Javadoc comment. 60
     Error
    javadocJavadocVariableMissing a Javadoc comment.62
     Error
    sizes LineLength Line is longer than 80 characters (found 97).61
    63
     Error
    javadoc JavadocVariable Missing a Javadoc comment.62
    64
     Error
    javadoc JavadocVariable Missing a Javadoc comment.64
    66
     Error
    javadoc JavadocVariable Missing a Javadoc comment.68
    70
     Error
    javadoc JavadocVariable Missing a Javadoc comment.70
    72
     Error
    javadoc JavadocVariable Missing a Javadoc comment.72
    74
     Error
    javadoc JavadocVariable Missing a Javadoc comment.74
    76
     Error
    design DesignForExtension Class 'OverrideCompatibilityChangeParameter' looks like designed for extension (can be subclassed), but the method 'getCompatibilityChange' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OverrideCompatibilityChangeParameter' final or making the method 'getCompatibilityChange' static/final/abstract/empty, or adding allowed annotation for the method.77
    79
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.77
    79
     Error
    design DesignForExtension Class 'OverrideCompatibilityChangeParameter' looks like designed for extension (can be subclassed), but the method 'setCompatibilityChange' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OverrideCompatibilityChangeParameter' final or making the method 'setCompatibilityChange' static/final/abstract/empty, or adding allowed annotation for the method.81
    83
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.81
    83
     Error
    misc FinalParameters Parameter compatibilityChange should be final.81
    83
     Error
    coding HiddenField 'compatibilityChange' hides a field.81
    83
     Error
    design DesignForExtension Class 'OverrideCompatibilityChangeParameter' looks like designed for extension (can be subclassed), but the method 'isBinaryCompatible' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OverrideCompatibilityChangeParameter' final or making the method 'isBinaryCompatible' static/final/abstract/empty, or adding allowed annotation for the method.85
    87
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.85
    87
     Error
    design DesignForExtension Class 'OverrideCompatibilityChangeParameter' looks like designed for extension (can be subclassed), but the method 'setBinaryCompatible' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OverrideCompatibilityChangeParameter' final or making the method 'setBinaryCompatible' static/final/abstract/empty, or adding allowed annotation for the method.89
    91
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.89
    91
     Error
    misc FinalParameters Parameter binaryCompatible should be final.89
    91
     Error
    coding HiddenField 'binaryCompatible' hides a field.89
    91
     Error
    design DesignForExtension Class 'OverrideCompatibilityChangeParameter' looks like designed for extension (can be subclassed), but the method 'isSourceCompatible' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OverrideCompatibilityChangeParameter' final or making the method 'isSourceCompatible' static/final/abstract/empty, or adding allowed annotation for the method.93
    95
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.93
    95
     Error
    design DesignForExtension Class 'OverrideCompatibilityChangeParameter' looks like designed for extension (can be subclassed), but the method 'setSourceCompatible' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OverrideCompatibilityChangeParameter' final or making the method 'setSourceCompatible' static/final/abstract/empty, or adding allowed annotation for the method.97
    99
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.97
    99
     Error
    misc FinalParameters Parameter sourceCompatible should be final.97
    99
     Error
    coding HiddenField 'sourceCompatible' hides a field.97
    99
     Error
    design DesignForExtension Class 'OverrideCompatibilityChangeParameter' looks like designed for extension (can be subclassed), but the method 'getSemanticVersionLevel' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OverrideCompatibilityChangeParameter' final or making the method 'getSemanticVersionLevel' static/final/abstract/empty, or adding allowed annotation for the method.101
    103
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.101
    103
     Error
    sizes LineLength Line is longer than 80 characters (found 82).105
    107
     Error
    design DesignForExtension Class 'OverrideCompatibilityChangeParameter' looks like designed for extension (can be subclassed), but the method 'setSemanticVersionLevel' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OverrideCompatibilityChangeParameter' final or making the method 'setSemanticVersionLevel' static/final/abstract/empty, or adding allowed annotation for the method.105
    107
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.105
    107
     Error
    misc FinalParameters Parameter semanticVersionLevel should be final.105
    107
     Error
    coding HiddenField 'semanticVersionLevel' hides a field.105
    107
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getNoAnnotations' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getNoAnnotations' static/final/abstract/empty, or adding allowed annotation for the method.110
    112
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.110
    112
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setNoAnnotations' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setNoAnnotations' static/final/abstract/empty, or adding allowed annotation for the method.114
    116
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.114
    116
     Error
    misc FinalParameters Parameter noAnnotations should be final.114
    116
     Error
    coding HiddenField 'noAnnotations' hides a field.114
    116
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getAccessModifier' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getAccessModifier' static/final/abstract/empty, or adding allowed annotation for the method.118
    120
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.118
    120
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setAccessModifier' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setAccessModifier' static/final/abstract/empty, or adding allowed annotation for the method.122
    124
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.122
    124
     Error
    misc FinalParameters Parameter accessModifier should be final.122
    124
     Error
    coding HiddenField 'accessModifier' hides a field.122
    124
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getOnlyModified' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getOnlyModified' static/final/abstract/empty, or adding allowed annotation for the method.126
    128
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.126
    128
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setOnlyModified' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setOnlyModified' static/final/abstract/empty, or adding allowed annotation for the method.130
    132
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.130
    132
     Error
    misc FinalParameters Parameter onlyModified should be final.130
    132
     Error
    coding HiddenField 'onlyModified' hides a field.130
    132
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getOnlyBinaryIncompatible' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getOnlyBinaryIncompatible' static/final/abstract/empty, or adding allowed annotation for the method.134
    136
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.134
    136
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setOnlyBinaryIncompatible' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setOnlyBinaryIncompatible' static/final/abstract/empty, or adding allowed annotation for the method.138
    140
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.138
    140
     Error
    misc FinalParameters Parameter onlyBinaryIncompatible should be final.138
    140
     Error
    coding HiddenField 'onlyBinaryIncompatible' hides a field.138
    140
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getBreakBuildOnModifications' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getBreakBuildOnModifications' static/final/abstract/empty, or adding allowed annotation for the method.142
    144
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.142
    144
     Error
    sizes LineLength Line is longer than 80 characters (found 85).146
    148
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setBreakBuildOnModifications' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setBreakBuildOnModifications' static/final/abstract/empty, or adding allowed annotation for the method.146
    148
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.146
    148
     Error
    misc FinalParameters Parameter breakBuildOnModifications should be final.146
    148
     Error
    coding HiddenField 'breakBuildOnModifications' hides a field.146
    148
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getBreakBuildOnBinaryIncompatibleModifications' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getBreakBuildOnBinaryIncompatibleModifications' static/final/abstract/empty, or adding allowed annotation for the method.150
    152
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.150
    152
     Error
    sizes LineLength Line is longer than 80 characters (found 121).154
    156
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setBreakBuildOnBinaryIncompatibleModifications' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setBreakBuildOnBinaryIncompatibleModifications' static/final/abstract/empty, or adding allowed annotation for the method.154
    156
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.154
    156
     Error
    misc FinalParameters Parameter breakBuildOnBinaryIncompatibleModifications should be final.154
    156
     Error
    coding HiddenField 'breakBuildOnBinaryIncompatibleModifications' hides a field.154
    156
     Error
    sizes LineLength Line is longer than 80 characters (found 111).155
    157
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getIncludeSynthetic' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getIncludeSynthetic' static/final/abstract/empty, or adding allowed annotation for the method.158
    160
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.158
    160
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setIncludeSynthetic' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setIncludeSynthetic' static/final/abstract/empty, or adding allowed annotation for the method.162
    164
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.162
    164
     Error
    misc FinalParameters Parameter includeSynthetic should be final.162
    164
     Error
    coding HiddenField 'includeSynthetic' hides a field.162
    164
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getIncludes' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getIncludes' static/final/abstract/empty, or adding allowed annotation for the method.166
    168
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.166
    168
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setIncludes' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setIncludes' static/final/abstract/empty, or adding allowed annotation for the method.170
    172
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.170
    172
     Error
    misc FinalParameters Parameter includes should be final.170
    172
     Error
    coding HiddenField 'includes' hides a field.170
    172
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'isIncludeSnapshots' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'isIncludeSnapshots' static/final/abstract/empty, or adding allowed annotation for the method.174
    176
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.174
    176
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setIncludeSnapshots' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setIncludeSnapshots' static/final/abstract/empty, or adding allowed annotation for the method.178
    180
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.178
    180
     Error
    misc FinalParameters Parameter includeSnapshots should be final.178
    180
     Error
    coding HiddenField 'includeSnapshots' hides a field.178
    180
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getExcludes' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getExcludes' static/final/abstract/empty, or adding allowed annotation for the method.182
    184
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.182
    184
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setExcludes' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setExcludes' static/final/abstract/empty, or adding allowed annotation for the method.186
    188
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.186
    188
     Error
    misc FinalParameters Parameter excludes should be final.186
    188
     Error
    coding HiddenField 'excludes' hides a field.186
    188
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getIgnoreMissingClasses' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getIgnoreMissingClasses' static/final/abstract/empty, or adding allowed annotation for the method.190
    192
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.190
    192
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setIgnoreMissingClasses' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setIgnoreMissingClasses' static/final/abstract/empty, or adding allowed annotation for the method.194
    196
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.194
    196
     Error
    misc FinalParameters Parameter ignoreMissingClasses should be final.194
    196
     Error
    coding HiddenField 'ignoreMissingClasses' hides a field.194
    196
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getSkipPomModules' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getSkipPomModules' static/final/abstract/empty, or adding allowed annotation for the method.198
    200
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.198
    200
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setSkipPomModules' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setSkipPomModules' static/final/abstract/empty, or adding allowed annotation for the method.202
    204
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.202
    204
     Error
    misc FinalParameters Parameter skipPomModules should be final.202
    204
     Error
    coding HiddenField 'skipPomModules' hides a field.202
    204
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getHtmlStylesheet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getHtmlStylesheet' static/final/abstract/empty, or adding allowed annotation for the method.206
    208
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.206
    208
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setHtmlStylesheet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setHtmlStylesheet' static/final/abstract/empty, or adding allowed annotation for the method.210
    212
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.210
    212
     Error
    misc FinalParameters Parameter htmlStylesheet should be final.210
    212
     Error
    coding HiddenField 'htmlStylesheet' hides a field.210
    212
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getHtmlTitle' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getHtmlTitle' static/final/abstract/empty, or adding allowed annotation for the method.214
    216
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.214
    216
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setHtmlTitle' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setHtmlTitle' static/final/abstract/empty, or adding allowed annotation for the method.218
    220
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.218
    220
     Error
    misc FinalParameters Parameter htmlTitle should be final.218
    220
     Error
    coding HiddenField 'htmlTitle' hides a field.218
    220
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getIgnoreNonResolvableArtifacts' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getIgnoreNonResolvableArtifacts' static/final/abstract/empty, or adding allowed annotation for the method.222
    224
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.222
    224
     Error
    sizes LineLength Line is longer than 80 characters (found 90).226
    228
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setIgnoreNonResolvableArtifacts' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setIgnoreNonResolvableArtifacts' static/final/abstract/empty, or adding allowed annotation for the method.226
    228
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.226
    228
     Error
    misc FinalParameters Parameter ignoreNonResolvableArtifacts should be final.226
    228
     Error
    coding HiddenField 'ignoreNonResolvableArtifacts' hides a field.226
    228
     Error
    sizes LineLength Line is longer than 80 characters (found 81).227
    229
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getPackagingSupporteds' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getPackagingSupporteds' static/final/abstract/empty, or adding allowed annotation for the method.230
    232
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.230
    232
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setPackagingSupporteds' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setPackagingSupporteds' static/final/abstract/empty, or adding allowed annotation for the method.234
    236
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.234
    236
     Error
    misc FinalParameters Parameter packagingSupporteds should be final.234
    236
     Error
    coding HiddenField 'packagingSupporteds' hides a field.234
    236
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getBreakBuildOnSourceIncompatibleModifications' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getBreakBuildOnSourceIncompatibleModifications' static/final/abstract/empty, or adding allowed annotation for the method.238
    240
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.238
    240
     Error
    sizes LineLength Line is longer than 80 characters (found 121).242
    244
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setBreakBuildOnSourceIncompatibleModifications' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setBreakBuildOnSourceIncompatibleModifications' static/final/abstract/empty, or adding allowed annotation for the method.242
    244
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.242
    244
     Error
    misc FinalParameters Parameter breakBuildOnSourceIncompatibleModifications should be final.242
    244
     Error
    coding HiddenField 'breakBuildOnSourceIncompatibleModifications' hides a field.242
    244
     Error
    sizes LineLength Line is longer than 80 characters (found 111).243
    245
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getBreakBuildBasedOnSemanticVersioning' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getBreakBuildBasedOnSemanticVersioning' static/final/abstract/empty, or adding allowed annotation for the method.246
    248
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.246
    248
     Error
    sizes LineLength Line is longer than 80 characters (found 105).250
    252
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setBreakBuildBasedOnSemanticVersioning' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setBreakBuildBasedOnSemanticVersioning' static/final/abstract/empty, or adding allowed annotation for the method.250
    252
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.250
    252
     Error
    misc FinalParameters Parameter breakBuildBasedOnSemanticVersioning should be final.250
    252
     Error
    coding HiddenField 'breakBuildBasedOnSemanticVersioning' hides a field.250
    252
     Error
    sizes LineLength Line is longer than 80 characters (found 95).251
    253
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getPostAnalysisScript' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getPostAnalysisScript' static/final/abstract/empty, or adding allowed annotation for the method.254
    256
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.254
    256
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setPostAnalysisScript' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setPostAnalysisScript' static/final/abstract/empty, or adding allowed annotation for the method.258
    260
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.258
    260
     Error
    misc FinalParameters Parameter postAnalysisScript should be final.258
    260
     Error
    coding HiddenField 'postAnalysisScript' hides a field.258
    260
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getSkipHtmlReport' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getSkipHtmlReport' static/final/abstract/empty, or adding allowed annotation for the method.262
    264
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.262
    264
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setSkipHtmlReport' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setSkipHtmlReport' static/final/abstract/empty, or adding allowed annotation for the method.266
    268
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.266
    268
     Error
    misc FinalParameters Parameter skipHtmlReport should be final.266
    268
     Error
    coding HiddenField 'skipHtmlReport' hides a field.266
    268
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getSkipXmlReport' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getSkipXmlReport' static/final/abstract/empty, or adding allowed annotation for the method.270
    272
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.270
    272
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setSkipXmlReport' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setSkipXmlReport' static/final/abstract/empty, or adding allowed annotation for the method.274
    276
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.274
    276
     Error
    misc FinalParameters Parameter skipXmlReport should be final.274
    276
     Error
    coding HiddenField 'skipXmlReport' hides a field.274
    276
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'isSkipDiffReport' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'isSkipDiffReport' static/final/abstract/empty, or adding allowed annotation for the method.278
    280
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.278
    280
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setSkipDiffReport' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setSkipDiffReport' static/final/abstract/empty, or adding allowed annotation for the method.282
    284
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.282
    284
     Error
    misc FinalParameters Parameter skipDiffReport should be final.282
    284
     Error
    coding HiddenField 'skipDiffReport' hides a field.282
    284
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getIgnoreMissingOldVersion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getIgnoreMissingOldVersion' static/final/abstract/empty, or adding allowed annotation for the method.286
    288
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.286
    288
     Error
    sizes LineLength Line is longer than 80 characters (found 81).290
    292
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setIgnoreMissingOldVersion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setIgnoreMissingOldVersion' static/final/abstract/empty, or adding allowed annotation for the method.290
    292
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.290
    292
     Error
    misc FinalParameters Parameter ignoreMissingOldVersion should be final.290
    292
     Error
    coding HiddenField 'ignoreMissingOldVersion' hides a field.290
    292
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getOldVersionPattern' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getOldVersionPattern' static/final/abstract/empty, or adding allowed annotation for the method.294
    296
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.294
    296
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setOldVersionPattern' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setOldVersionPattern' static/final/abstract/empty, or adding allowed annotation for the method.298
    300
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.298
    300
     Error
    misc FinalParameters Parameter oldVersionPattern should be final.298
    300
     Error
    coding HiddenField 'oldVersionPattern' hides a field.298
    300
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'isBreakBuildIfCausedByExclusion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'isBreakBuildIfCausedByExclusion' static/final/abstract/empty, or adding allowed annotation for the method.302
    304
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.302
    304
     Error
    sizes LineLength Line is longer than 80 characters (found 93).306
    308
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setBreakBuildIfCausedByExclusion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setBreakBuildIfCausedByExclusion' static/final/abstract/empty, or adding allowed annotation for the method.306
    308
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.306
    308
     Error
    misc FinalParameters Parameter breakBuildIfCausedByExclusion should be final.306
    308
     Error
    coding HiddenField 'breakBuildIfCausedByExclusion' hides a field.306
    308
     Error
    sizes LineLength Line is longer than 80 characters (found 83).307
    309
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getIgnoreMissingClassesByRegularExpressions' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getIgnoreMissingClassesByRegularExpressions' static/final/abstract/empty, or adding allowed annotation for the method.310
    312
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.310
    312
     Error
    sizes LineLength Line is longer than 80 characters (found 120).314
    316
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setIgnoreMissingClassesByRegularExpressions' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setIgnoreMissingClassesByRegularExpressions' static/final/abstract/empty, or adding allowed annotation for the method.314
    316
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.314
    316
     Error
    misc FinalParameters Parameter ignoreMissingClassesByRegularExpressions should be final.314
    316
     Error
    coding HiddenField 'ignoreMissingClassesByRegularExpressions' hides a field.314
    316
     Error
    sizes LineLength Line is longer than 80 characters (found 105).315
    317
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'isReportOnlyFilename' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'isReportOnlyFilename' static/final/abstract/empty, or adding allowed annotation for the method.318
    320
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.318
    320
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setReportOnlyFilename' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setReportOnlyFilename' static/final/abstract/empty, or adding allowed annotation for the method.322
    324
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.322
    324
     Error
    misc FinalParameters Parameter reportOnlyFileName should be final.322
    324
     Error
    designDesignForExtensionClass 'Parameter' looks like designed for extension (can be subclassed), but the method 'isReportOnlySummary' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'isReportOnlySummary' static/final/abstract/empty, or adding allowed annotation for the method.328
     Error
    javadocMissingJavadocMethodMissing a Javadoc comment.328
     Error
    designDesignForExtensionClass 'Parameter' looks like designed for extension (can be subclassed), but the method 'setReportOnlySummary' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setReportOnlySummary' static/final/abstract/empty, or adding allowed annotation for the method.332
     Error
    javadocMissingJavadocMethodMissing a Javadoc comment.332
     Error
    miscFinalParametersParameter reportOnlySummary should be final.332
     Error
    codingHiddenField'reportOnlySummary' hides a field.332
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getIgnoreMissingNewVersion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getIgnoreMissingNewVersion' static/final/abstract/empty, or adding allowed annotation for the method.326
    336
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.326
    336
     Error
    sizes LineLength Line is longer than 80 characters (found 81).330
    340
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setIgnoreMissingNewVersion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setIgnoreMissingNewVersion' static/final/abstract/empty, or adding allowed annotation for the method.330
    340
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.330
    340
     Error
    misc FinalParameters Parameter ignoreMissingNewVersion should be final.330
    340
     Error
    coding HiddenField 'ignoreMissingNewVersion' hides a field.330
    340
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getIncludeModules' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getIncludeModules' static/final/abstract/empty, or adding allowed annotation for the method.334
    344
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.334
    344
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setIncludeModules' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setIncludeModules' static/final/abstract/empty, or adding allowed annotation for the method.338
    348
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.338
    348
     Error
    misc FinalParameters Parameter includeModules should be final.338
    348
     Error
    coding HiddenField 'includeModules' hides a field.338
    348
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getExcludeModules' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getExcludeModules' static/final/abstract/empty, or adding allowed annotation for the method.342
    352
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.342
    352
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setExcludeModules' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setExcludeModules' static/final/abstract/empty, or adding allowed annotation for the method.346
    356
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.346
    356
     Error
    misc FinalParameters Parameter excludeModules should be final.346
    356
     Error
    coding HiddenField 'excludeModules' hides a field.346
    356
     Error
    sizes LineLength Line is longer than 80 characters (found 83).350
    360
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'isBreakBuildBasedOnSemanticVersioningForMajorVersionZero' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'isBreakBuildBasedOnSemanticVersioningForMajorVersionZero' static/final/abstract/empty, or adding allowed annotation for the method.350
    360
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.350
    360
     Error
    sizes LineLength Line is longer than 80 characters (found 143).354
    364
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setBreakBuildBasedOnSemanticVersioningForMajorVersionZero' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setBreakBuildBasedOnSemanticVersioningForMajorVersionZero' static/final/abstract/empty, or adding allowed annotation for the method.354
    364
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.354
    364
     Error
    misc FinalParameters Parameter breakBuildBasedOnSemanticVersioningForMajorVersionZero should be final.354
    364
     Error
    coding HiddenField 'breakBuildBasedOnSemanticVersioningForMajorVersionZero' hides a field.354
    364
     Error
    sizes LineLength Line is longer than 80 characters (found 133).355
    365
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'isIncludeExlusively' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'isIncludeExlusively' static/final/abstract/empty, or adding allowed annotation for the method.358
    368
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.358
    368
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setIncludeExclusively' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setIncludeExclusively' static/final/abstract/empty, or adding allowed annotation for the method.362
    372
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.362
    372
     Error
    misc FinalParameters Parameter includeExclusively should be final.362
    372
     Error
    coding HiddenField 'includeExclusively' hides a field.362
    372
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'isExcludeExclusively' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'isExcludeExclusively' static/final/abstract/empty, or adding allowed annotation for the method.366
    376
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.366
    376
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setExcludeExclusively' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setExcludeExclusively' static/final/abstract/empty, or adding allowed annotation for the method.370
    380
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.370
    380
     Error
    misc FinalParameters Parameter excludeExclusively should be final.370
    380
     Error
    coding HiddenField 'excludeExclusively' hides a field.370
    380
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'isIncludeExclusively' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'isIncludeExclusively' static/final/abstract/empty, or adding allowed annotation for the method.374
    384
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.374
    384
     Error
    sizes LineLength Line is longer than 80 characters (found 102).378
    388
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getOverrideCompatibilityChangeParameters' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getOverrideCompatibilityChangeParameters' static/final/abstract/empty, or adding allowed annotation for the method.378
    388
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.378
    388
     Error
    sizes LineLength Line is longer than 80 characters (found 144).382
    392
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setOverrideCompatibilityChangeParameters' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setOverrideCompatibilityChangeParameters' static/final/abstract/empty, or adding allowed annotation for the method.382
    392
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.382
    392
     Error
    misc FinalParameters Parameter overrideCompatibilityChangeParameters should be final.382
    392
     Error
    coding HiddenField 'overrideCompatibilityChangeParameters' hides a field.382
    392
     Error
    sizes LineLength Line is longer than 80 characters (found 99).383
    393
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'isIgnoreMissingOptionalDependency' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'isIgnoreMissingOptionalDependency' static/final/abstract/empty, or adding allowed annotation for the method.386
    396
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.386
    396
     Error
    sizes LineLength Line is longer than 80 characters (found 97).390
    400
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setIgnoreMissingOptionalDependency' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setIgnoreMissingOptionalDependency' static/final/abstract/empty, or adding allowed annotation for the method.390
    400
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.390
    400
     Error
    misc FinalParameters Parameter ignoreMissingOptionalDependency should be final.390
    400
     Error
    coding HiddenField 'ignoreMissingOptionalDependency' hides a field.390
    400
     Error
    sizes LineLength Line is longer than 80 characters (found 87).391
    401
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'getReportLinkName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'getReportLinkName' static/final/abstract/empty, or adding allowed annotation for the method.394
    404
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.394
    404
     Error
    design DesignForExtension Class 'Parameter' looks like designed for extension (can be subclassed), but the method 'setReportLinkName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parameter' final or making the method 'setReportLinkName' static/final/abstract/empty, or adding allowed annotation for the method.398
    408
     Error
    javadoc MissingJavadocMethod Missing a Javadoc comment.398
    408
     Error
    misc FinalParameters Parameter reportLinkName should be final.398
    408
     Error
    coding HiddenField 'reportLinkName' hides a field.398
    +408

    japicmp/maven/PluginParameters.java

    diff --git a/japicmp-maven-plugin/cmp-mojo.html b/japicmp-maven-plugin/cmp-mojo.html index ffd9e3f1..44512616 100644 --- a/japicmp-maven-plugin/cmp-mojo.html +++ b/japicmp-maven-plugin/cmp-mojo.html @@ -1,13 +1,13 @@ - + japicmp-maven-plugin – japicmp:cmp @@ -35,8 +35,8 @@
  • japicmp/
  • japicmp-maven-plugin/
  • japicmp:cmp
  • -
  • | Last Published: 2024-05-03
  • -
  • Version: 0.21.3-SNAPSHOT
  • +
  • | Last Published: 2024-07-21
  • +
  • Version: 0.22.0
  • @@ -62,7 +62,7 @@

    japicmp:cmp

    Full name:

    -

    com.github.siom79.japicmp:japicmp-maven-plugin:0.21.3-SNAPSHOT:cmp

    +

    com.github.siom79.japicmp:japicmp-maven-plugin:0.22.0:cmp

    Description:

    diff --git a/japicmp-maven-plugin/cmp-report-mojo.html b/japicmp-maven-plugin/cmp-report-mojo.html index 25380680..e5aa5f44 100644 --- a/japicmp-maven-plugin/cmp-report-mojo.html +++ b/japicmp-maven-plugin/cmp-report-mojo.html @@ -1,13 +1,13 @@ - + japicmp-maven-plugin – japicmp:cmp-report @@ -35,8 +35,8 @@
  • japicmp/
  • japicmp-maven-plugin/
  • japicmp:cmp-report
  • -
  • | Last Published: 2024-05-03
  • -
  • Version: 0.21.3-SNAPSHOT
  • +
  • | Last Published: 2024-07-21
  • +
  • Version: 0.22.0
  • @@ -64,7 +64,7 @@

    japicmp:cmp-report

    Full name:

    -

    com.github.siom79.japicmp:japicmp-maven-plugin:0.21.3-SNAPSHOT:cmp-report

    +

    com.github.siom79.japicmp:japicmp-maven-plugin:0.22.0:cmp-report

    Description:

    diff --git a/japicmp-maven-plugin/dependencies.html b/japicmp-maven-plugin/dependencies.html index 39c603ab..09eb7600 100644 --- a/japicmp-maven-plugin/dependencies.html +++ b/japicmp-maven-plugin/dependencies.html @@ -1,13 +1,13 @@ - + japicmp-maven-plugin – Project Dependencies @@ -35,8 +35,8 @@
  • japicmp/
  • japicmp-maven-plugin/
  • Project Dependencies
  • -
  • | Last Published: 2024-05-03
  • -
  • Version: 0.21.3-SNAPSHOT
  • +
  • | Last Published: 2024-07-21
  • +
  • Version: 0.22.0
  • @@ -69,7 +69,7 @@

    compile

    - + @@ -657,7 +657,7 @@

    Project Dependency Graph

    Dependency Tree

      -
    • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.21.3-SNAPSHOT [Information]
    • com.github.siom79.japicmp:japicmp-maven-plugin:maven-plugin:0.22.0 [Information]
    com.github.siom79.japicmp japicmp0.21.3-SNAPSHOT0.22.0 jar Apache License, Version 2.0
    @@ -1301,7 +1301,7 @@

    Dependency Tree

    Description: Types that extend and augment the Java Collections Framework.

    URL: http://commons.apache.org/collections/

    Project Licenses: Apache License, Version 2.0

    japicmp-maven-plugin
    -
  • com.github.siom79.japicmp:japicmp:jar:0.21.3-SNAPSHOT (compile) [Information]
  • com.github.siom79.japicmp:japicmp:jar:0.22.0 (compile) [Information]
    @@ -229,26 +229,26 @@ -Comparing source compatibility of /home/runner/work/japicmp/japicmp/japicmp/target/japicmp-0.21.3-SNAPSHOT.jar against /home/runner/.m2/repository/com/github/siom79/japicmp/japicmp/0.21.1/japicmp-0.21.1.jar +Comparing source compatibility of /home/runner/work/japicmp/japicmp/japicmp/target/japicmp-0.22.0.jar against /home/runner/.m2/repository/com/github/siom79/japicmp/japicmp/0.21.2/japicmp-0.21.2.jar
    @@ -296,9 +296,334 @@
    Old: - /home/runner/.m2/repository/com/github/siom79/japicmp/japicmp/0.21.1/japicmp-0.21.1.jar + /home/runner/.m2/repository/com/github/siom79/japicmp/japicmp/0.21.2/japicmp-0.21.2.jar
    New: - /home/runner/work/japicmp/japicmp/japicmp/target/japicmp-0.21.3-SNAPSHOT.jar + /home/runner/work/japicmp/japicmp/japicmp/target/japicmp-0.22.0.jar
    Created: - 2024-05-03T15:05:01.321+0000 + 2024-07-21T08:14:03.563+0000
    + +
    + Classes: + + + + + + + + + + + + + + + + + + +
    StatusFully Qualified Name
    + MODIFIED + + + japicmp.config.Options + +
    + MODIFIED + + + japicmp.model.JApiCompatibilityChangeType + +
    +
    Binary incompatible changes are marked with (!) while source incompatible changes are marked with (*).
    +
    +
    +
    + + + MODIFIED + + public + + class + japicmp.config.Options + + top +
    + + +
    + +
    +
    + +
    +
    + +
    + +
    + +
    +
    + +
    +
    + Methods: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusModifierGeneric TemplatesTypeMethodExceptionsCompatibility Changes:Line Number
    NEWpublic +n.a.booleanisReportOnlySummary()
    + Compatibility Changes: + + + + + + + + + + +
    Change
    METHOD_ADDED_TO_PUBLIC_CLASS
    +
    +
    + + + + + + + + + + + + +
    Old fileNew file
    + n.a. + + 311 +
    +
    NEWpublic +n.a.voidsetReportOnlySummary(boolean)
    + Compatibility Changes: + + + + + + + + + + +
    Change
    METHOD_ADDED_TO_PUBLIC_CLASS
    +
    +
    + + + + + + + + + + + + +
    Old fileNew file
    + n.a. + + 315 +
    +
    + +
    + +
    +
    +
    +
    +
    + + + MODIFIED +  (Serializable compatible)  + final +public + + enum + japicmp.model.JApiCompatibilityChangeType + + top +
    + + +
    + +
    +
    + Superclass: + + + + + + + + + + + + + + + + +
    StatusSuperclassCompatibility Changes
    UNCHANGEDjava.lang.Enumn.a.
    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    Serializabledefault serialVersionUIDserialVersionUID in class
    Oldtrue8860752054088570413n.a.
    Newtrue2850916385756460059n.a.
    +
    + +
    + +
    +
    + +
    +
    + Methods: + + + + + + + + + + + + + + + + + + + + + + + + + + +
    StatusModifierGeneric TemplatesTypeMethodExceptionsCompatibility Changes:Line Number
    NEWstatic +public +n.a.voidmain(java.lang.String[])
    + Compatibility Changes: + + + + + + + + + + +
    Change
    METHOD_ADDED_TO_PUBLIC_CLASS
    +
    +
    + + + + + + + + + + + + +
    Old fileNew file
    + n.a. + + 129 +
    +
    + +
    + +
    +
    diff --git a/japicmp/licenses.html b/japicmp/licenses.html index d31112ef..fb438e9a 100644 --- a/japicmp/licenses.html +++ b/japicmp/licenses.html @@ -1,13 +1,13 @@ - + japicmp – Project Licenses @@ -35,8 +35,8 @@
  • japicmp/
  • japicmp/
  • Project Licenses
  • -
  • | Last Published: 2024-05-03
  • -
  • Version: 0.21.3-SNAPSHOT
  • +
  • | Last Published: 2024-07-21
  • +
  • Version: 0.22.0
  • diff --git a/japicmp/plugin-management.html b/japicmp/plugin-management.html index 3c2f4558..2412dff5 100644 --- a/japicmp/plugin-management.html +++ b/japicmp/plugin-management.html @@ -1,13 +1,13 @@ - + japicmp – Project Plugin Management @@ -35,8 +35,8 @@
  • japicmp/
  • japicmp/
  • Project Plugin Management
  • -
  • | Last Published: 2024-05-03
  • -
  • Version: 0.21.3-SNAPSHOT
  • +
  • | Last Published: 2024-07-21
  • +
  • Version: 0.22.0
  • diff --git a/japicmp/plugins.html b/japicmp/plugins.html index f2e9ae31..421ecae9 100644 --- a/japicmp/plugins.html +++ b/japicmp/plugins.html @@ -1,13 +1,13 @@ - + japicmp – Project Plugins @@ -35,8 +35,8 @@
  • japicmp/
  • japicmp/
  • Project Plugins
  • -
  • | Last Published: 2024-05-03
  • -
  • Version: 0.21.3-SNAPSHOT
  • +
  • | Last Published: 2024-07-21
  • +
  • Version: 0.22.0
  • @@ -131,7 +131,7 @@

    Project Report Plugins

    com.github.siom79.japicmp japicmp-maven-plugin -0.21.3-SNAPSHOT +0.22.0 com.github.spotbugs spotbugs-maven-plugin diff --git a/japicmp/project-info.html b/japicmp/project-info.html index bbfccb5b..d73f62b0 100644 --- a/japicmp/project-info.html +++ b/japicmp/project-info.html @@ -1,13 +1,13 @@ - + japicmp – Project Information @@ -35,8 +35,8 @@
  • japicmp/
  • japicmp/
  • Project Information
  • -
  • | Last Published: 2024-05-03
  • -
  • Version: 0.21.3-SNAPSHOT
  • +
  • | Last Published: 2024-07-21
  • +
  • Version: 0.22.0
  • diff --git a/japicmp/project-reports.html b/japicmp/project-reports.html index 7ec2e504..02ec8a92 100644 --- a/japicmp/project-reports.html +++ b/japicmp/project-reports.html @@ -1,13 +1,13 @@ - + japicmp – Generated Reports @@ -35,8 +35,8 @@
  • japicmp/
  • japicmp/
  • Generated Reports
  • -
  • | Last Published: 2024-05-03
  • -
  • Version: 0.21.3-SNAPSHOT
  • +
  • | Last Published: 2024-07-21
  • +
  • Version: 0.22.0
  • @@ -71,7 +71,7 @@

    Overview

    Report on coding style conventions. japicmp -Comparing source compatibility of /home/runner/work/japicmp/japicmp/japicmp/target/japicmp-0.21.3-SNAPSHOT.jar against /home/runner/.m2/repository/com/github/siom79/japicmp/japicmp/0.21.1/japicmp-0.21.1.jar +Comparing source compatibility of /home/runner/work/japicmp/japicmp/japicmp/target/japicmp-0.22.0.jar against /home/runner/.m2/repository/com/github/siom79/japicmp/japicmp/0.21.2/japicmp-0.21.2.jar Javadoc Javadoc API documentation. diff --git a/japicmp/scm.html b/japicmp/scm.html index 55108cb2..f1242beb 100644 --- a/japicmp/scm.html +++ b/japicmp/scm.html @@ -1,13 +1,13 @@ - + japicmp – Source Code Management @@ -35,8 +35,8 @@
  • japicmp/
  • japicmp/
  • Source Code Management
  • -
  • | Last Published: 2024-05-03
  • -
  • Version: 0.21.3-SNAPSHOT
  • +
  • | Last Published: 2024-07-21
  • +
  • Version: 0.22.0
  • @@ -63,10 +63,10 @@

    Web Browser Access

    https://github.com/siom79/japicmp.git/japicmp

    Anonymous Access

    The source can be checked out anonymously from Git with this command (See https://git-scm.com/docs/git-clone):

    -
    $ git clone --branch japicmp-base-0.15.7 https://github.com/siom79/japicmp.git
    +
    $ git clone --branch japicmp-base-0.22.0 https://github.com/siom79/japicmp.git

    Developer Access

    Only project developers can access the Git tree via this method (See https://git-scm.com/docs/git-clone).

    -
    $ git clone --branch japicmp-base-0.15.7 https://github.com/siom79/japicmp.git
    +
    $ git clone --branch japicmp-base-0.22.0 https://github.com/siom79/japicmp.git

    Access from Behind a Firewall

    Refer to the documentation of the SCM used for more information about access behind a firewall.

    diff --git a/japicmp/spotbugs.html b/japicmp/spotbugs.html index b9916cff..0364a728 100644 --- a/japicmp/spotbugs.html +++ b/japicmp/spotbugs.html @@ -1,13 +1,13 @@ - + japicmp – SpotBugs Bug Detector Report @@ -35,8 +35,8 @@
  • japicmp/
  • japicmp/
  • SpotBugs Bug Detector Report
  • -
  • | Last Published: 2024-05-03
  • -
  • Version: 0.21.3-SNAPSHOT
  • +
  • | Last Published: 2024-07-21
  • +
  • Version: 0.22.0
  • @@ -386,31 +386,31 @@

    japicmp.config.Options

    japicmp.config.Options.getIgnoreMissingClasses() may expose internal representation by returning Options.ignoreMissingClasses MALICIOUS_CODE EI_EXPOSE_REP -302 +303 Medium japicmp.config.Options.getNewArchives() may expose internal representation by returning Options.newArchives MALICIOUS_CODE EI_EXPOSE_REP -135 +136 Medium japicmp.config.Options.getOldArchives() may expose internal representation by returning Options.oldArchives MALICIOUS_CODE EI_EXPOSE_REP -143 +144 Medium japicmp.config.Options.setNewArchives(List) may expose internal representation by storing an externally mutable object into Options.newArchives MALICIOUS_CODE EI_EXPOSE_REP2 -139 +140 Medium japicmp.config.Options.setOldArchives(List) may expose internal representation by storing an externally mutable object into Options.oldArchives MALICIOUS_CODE EI_EXPOSE_REP2 -147 +148 Medium

    japicmp.filter.Filters

    @@ -628,19 +628,19 @@

    japicmp.model.JApiCo

    - + - + - +
    japicmp.model.JApiCompatibilityChangeType.setBinaryCompatible(boolean) unconditionally sets the field binaryCompatibleOverridden BAD_PRACTICE ME_ENUM_FIELD_SETTER109111 Medium
    japicmp.model.JApiCompatibilityChangeType.setSemanticVersionLevel(JApiSemanticVersionLevel) unconditionally sets the field semanticVersionLevelOverridden BAD_PRACTICE ME_ENUM_FIELD_SETTER117119 Medium
    japicmp.model.JApiCompatibilityChangeType.setSourceCompatible(boolean) unconditionally sets the field sourceCompatibleOverridden BAD_PRACTICE ME_ENUM_FIELD_SETTER113115 Medium

    japicmp.model.JApiException

    @@ -914,7 +914,7 @@

    japicmp.output.html.Ht

    - +
    Call to method of static java.text.DateFormat in japicmp.output.html.HtmlOutputGenerator.metaInformation(StringBuilder) MT_CORRECTNESS STCAL_INVOKE_ON_STATIC_DATE_FORMAT_INSTANCE622625 Medium

    japicmp.output.incompatible.IncompatibleErrorOutput

    @@ -942,13 +942,13 @@

    japicmp.output.std

    - + - +
    instanceof will always return true for all non-null values in japicmp.output.stdout.StdoutOutputGenerator.processGenericTemplateChanges(StringBuilder, JApiHasGenericTemplates, int), since all japicmp.model.JApiGenericTemplate are instances of japicmp.model.JApiCompatibility STYLE BC_VACUOUS_INSTANCEOF348354 Medium
    Format string should use %n rather than \n in japicmp.output.stdout.StdoutOutputGenerator.appendAnnotation(StringBuilder, String, JApiAnnotation, int) BAD_PRACTICE VA_FORMAT_STRING_USES_NEWLINE251254 Medium

    japicmp.output.xml.XmlOutput

    diff --git a/japicmp/summary.html b/japicmp/summary.html index e2516d69..e77fc992 100644 --- a/japicmp/summary.html +++ b/japicmp/summary.html @@ -1,13 +1,13 @@ - + japicmp – Project Summary @@ -35,8 +35,8 @@
  • japicmp/
  • japicmp/
  • Project Summary
  • -
  • | Last Published: 2024-05-03
  • -
  • Version: 0.21.3-SNAPSHOT
  • +
  • | Last Published: 2024-07-21
  • +
  • Version: 0.22.0
  • @@ -87,7 +87,7 @@

    Build Information

    - + diff --git a/japicmp/team.html b/japicmp/team.html index 91b0fe32..5c634e8b 100644 --- a/japicmp/team.html +++ b/japicmp/team.html @@ -1,13 +1,13 @@ - + japicmp – Project Team @@ -35,8 +35,8 @@
  • japicmp/
  • japicmp/
  • Project Team
  • -
  • | Last Published: 2024-05-03
  • -
  • Version: 0.21.3-SNAPSHOT
  • +
  • | Last Published: 2024-07-21
  • +
  • Version: 0.22.0
  • diff --git a/japicmp/testapidocs/allclasses-index.html b/japicmp/testapidocs/allclasses-index.html index 2b74518c..c3d2d77e 100644 --- a/japicmp/testapidocs/allclasses-index.html +++ b/japicmp/testapidocs/allclasses-index.html @@ -1,11 +1,11 @@ - -All Classes and Interfaces (japicmp 0.21.3-SNAPSHOT Test API) + +All Classes and Interfaces (japicmp 0.22.0 Test API) - + @@ -57,8 +57,8 @@

    All Classes and Interfaces<

    -
    -
    +
    +
    Class
    Description
    diff --git a/japicmp/testapidocs/allpackages-index.html b/japicmp/testapidocs/allpackages-index.html index 1fbdaf8a..f542a773 100644 --- a/japicmp/testapidocs/allpackages-index.html +++ b/japicmp/testapidocs/allpackages-index.html @@ -1,11 +1,11 @@ - -All Packages (japicmp 0.21.3-SNAPSHOT Test API) + +All Packages (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/constant-values.html b/japicmp/testapidocs/constant-values.html index 6f640a1f..6e76ef6c 100644 --- a/japicmp/testapidocs/constant-values.html +++ b/japicmp/testapidocs/constant-values.html @@ -1,11 +1,11 @@ - -Constant Field Values (japicmp 0.21.3-SNAPSHOT Test API) + +Constant Field Values (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/help-doc.html b/japicmp/testapidocs/help-doc.html index a1bc122d..c37e4a7e 100644 --- a/japicmp/testapidocs/help-doc.html +++ b/japicmp/testapidocs/help-doc.html @@ -1,11 +1,11 @@ - -API Help (japicmp 0.21.3-SNAPSHOT Test API) + +API Help (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/index-all.html b/japicmp/testapidocs/index-all.html index 79fa33ed..b27ad7f2 100644 --- a/japicmp/testapidocs/index-all.html +++ b/japicmp/testapidocs/index-all.html @@ -1,11 +1,11 @@ - -Index (japicmp 0.21.3-SNAPSHOT Test API) + +Index (japicmp 0.22.0 Test API) - + @@ -1098,6 +1098,10 @@

    T

     
    testSingleDigitSemanticVersionFromString() - Method in class japicmp.util.VersionTest
     
    +
    testSummaryOnly() - Method in class japicmp.output.html.HtmlOutputGeneratorTest
    +
     
    +
    testSummaryOnly() - Method in class japicmp.output.stdout.StdoutOutputGeneratorTest
    +
     
    testSuperclassAdded() - Method in class japicmp.compat.CompatibilityChangesTest
     
    testSuperclassChanged() - Method in class japicmp.compat.CompatibilityChangesTest
    diff --git a/japicmp/testapidocs/index.html b/japicmp/testapidocs/index.html index 399cd74e..ffd02a7b 100644 --- a/japicmp/testapidocs/index.html +++ b/japicmp/testapidocs/index.html @@ -1,11 +1,11 @@ - -Overview (japicmp 0.21.3-SNAPSHOT Test API) + +Overview (japicmp 0.22.0 Test API) - + @@ -49,7 +49,7 @@
    -

    japicmp 0.21.3-SNAPSHOT Test API

    +

    japicmp 0.22.0 Test API

    Packages
    diff --git a/japicmp/testapidocs/japicmp/JApiCmpTest.html b/japicmp/testapidocs/japicmp/JApiCmpTest.html index 2ee68451..5fa98340 100644 --- a/japicmp/testapidocs/japicmp/JApiCmpTest.html +++ b/japicmp/testapidocs/japicmp/JApiCmpTest.html @@ -1,11 +1,11 @@ - -JApiCmpTest (japicmp 0.21.3-SNAPSHOT Test API) + +JApiCmpTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/class-use/JApiCmpTest.html b/japicmp/testapidocs/japicmp/class-use/JApiCmpTest.html index 4be604fc..b2ce9bdf 100644 --- a/japicmp/testapidocs/japicmp/class-use/JApiCmpTest.html +++ b/japicmp/testapidocs/japicmp/class-use/JApiCmpTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.JApiCmpTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.JApiCmpTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/AnnotationsTest.Include.html b/japicmp/testapidocs/japicmp/cmp/AnnotationsTest.Include.html index 917e9609..ac923b4a 100644 --- a/japicmp/testapidocs/japicmp/cmp/AnnotationsTest.Include.html +++ b/japicmp/testapidocs/japicmp/cmp/AnnotationsTest.Include.html @@ -1,11 +1,11 @@ - -AnnotationsTest.Include (japicmp 0.21.3-SNAPSHOT Test API) + +AnnotationsTest.Include (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/AnnotationsTest.html b/japicmp/testapidocs/japicmp/cmp/AnnotationsTest.html index 65d37778..17ec6f8a 100644 --- a/japicmp/testapidocs/japicmp/cmp/AnnotationsTest.html +++ b/japicmp/testapidocs/japicmp/cmp/AnnotationsTest.html @@ -1,11 +1,11 @@ - -AnnotationsTest (japicmp 0.21.3-SNAPSHOT Test API) + +AnnotationsTest (japicmp 0.22.0 Test API) - + @@ -116,8 +116,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/cmp/ClassesComparatorTest.html b/japicmp/testapidocs/japicmp/cmp/ClassesComparatorTest.html index 4fb6da1a..d0838ea5 100644 --- a/japicmp/testapidocs/japicmp/cmp/ClassesComparatorTest.html +++ b/japicmp/testapidocs/japicmp/cmp/ClassesComparatorTest.html @@ -1,11 +1,11 @@ - -ClassesComparatorTest (japicmp 0.21.3-SNAPSHOT Test API) + +ClassesComparatorTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/cmp/ClassesHelper.ClassesGenerator.html b/japicmp/testapidocs/japicmp/cmp/ClassesHelper.ClassesGenerator.html index 7150a080..628cc184 100644 --- a/japicmp/testapidocs/japicmp/cmp/ClassesHelper.ClassesGenerator.html +++ b/japicmp/testapidocs/japicmp/cmp/ClassesHelper.ClassesGenerator.html @@ -1,11 +1,11 @@ - -ClassesHelper.ClassesGenerator (japicmp 0.21.3-SNAPSHOT Test API) + +ClassesHelper.ClassesGenerator (japicmp 0.22.0 Test API) - + @@ -88,8 +88,8 @@

    Interface Cla

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/cmp/ClassesHelper.CompareClassesResult.html b/japicmp/testapidocs/japicmp/cmp/ClassesHelper.CompareClassesResult.html index a8c880e3..9ce147ff 100644 --- a/japicmp/testapidocs/japicmp/cmp/ClassesHelper.CompareClassesResult.html +++ b/japicmp/testapidocs/japicmp/cmp/ClassesHelper.CompareClassesResult.html @@ -1,11 +1,11 @@ - -ClassesHelper.CompareClassesResult (japicmp 0.21.3-SNAPSHOT Test API) + +ClassesHelper.CompareClassesResult (japicmp 0.22.0 Test API) - + @@ -106,8 +106,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/cmp/ClassesHelper.html b/japicmp/testapidocs/japicmp/cmp/ClassesHelper.html index 177419d2..b1ac0a5d 100644 --- a/japicmp/testapidocs/japicmp/cmp/ClassesHelper.html +++ b/japicmp/testapidocs/japicmp/cmp/ClassesHelper.html @@ -1,11 +1,11 @@ - -ClassesHelper (japicmp 0.21.3-SNAPSHOT Test API) + +ClassesHelper (japicmp 0.22.0 Test API) - + @@ -119,8 +119,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/cmp/ClassesTest.html b/japicmp/testapidocs/japicmp/cmp/ClassesTest.html index 47628de6..84c89c4b 100644 --- a/japicmp/testapidocs/japicmp/cmp/ClassesTest.html +++ b/japicmp/testapidocs/japicmp/cmp/ClassesTest.html @@ -1,11 +1,11 @@ - -ClassesTest (japicmp 0.21.3-SNAPSHOT Test API) + +ClassesTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/cmp/ExceptionsTest.html b/japicmp/testapidocs/japicmp/cmp/ExceptionsTest.html index 5619fa61..4d77e24e 100644 --- a/japicmp/testapidocs/japicmp/cmp/ExceptionsTest.html +++ b/japicmp/testapidocs/japicmp/cmp/ExceptionsTest.html @@ -1,11 +1,11 @@ - -ExceptionsTest (japicmp 0.21.3-SNAPSHOT Test API) + +ExceptionsTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/cmp/FilterTest.Exclude.html b/japicmp/testapidocs/japicmp/cmp/FilterTest.Exclude.html index c6c00178..6e344f1c 100644 --- a/japicmp/testapidocs/japicmp/cmp/FilterTest.Exclude.html +++ b/japicmp/testapidocs/japicmp/cmp/FilterTest.Exclude.html @@ -1,11 +1,11 @@ - -FilterTest.Exclude (japicmp 0.21.3-SNAPSHOT Test API) + +FilterTest.Exclude (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/FilterTest.Include.html b/japicmp/testapidocs/japicmp/cmp/FilterTest.Include.html index ac0341b5..47b781b5 100644 --- a/japicmp/testapidocs/japicmp/cmp/FilterTest.Include.html +++ b/japicmp/testapidocs/japicmp/cmp/FilterTest.Include.html @@ -1,11 +1,11 @@ - -FilterTest.Include (japicmp 0.21.3-SNAPSHOT Test API) + +FilterTest.Include (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/FilterTest.html b/japicmp/testapidocs/japicmp/cmp/FilterTest.html index 2ef0f991..32548f39 100644 --- a/japicmp/testapidocs/japicmp/cmp/FilterTest.html +++ b/japicmp/testapidocs/japicmp/cmp/FilterTest.html @@ -1,11 +1,11 @@ - -FilterTest (japicmp 0.21.3-SNAPSHOT Test API) + +FilterTest (japicmp 0.22.0 Test API) - + @@ -119,8 +119,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/cmp/GenericTemplateTest.html b/japicmp/testapidocs/japicmp/cmp/GenericTemplateTest.html index 0a464f2f..ef929112 100644 --- a/japicmp/testapidocs/japicmp/cmp/GenericTemplateTest.html +++ b/japicmp/testapidocs/japicmp/cmp/GenericTemplateTest.html @@ -1,11 +1,11 @@ - -GenericTemplateTest (japicmp 0.21.3-SNAPSHOT Test API) + +GenericTemplateTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/cmp/GenericsTest.html b/japicmp/testapidocs/japicmp/cmp/GenericsTest.html index 37208bdc..91636bf6 100644 --- a/japicmp/testapidocs/japicmp/cmp/GenericsTest.html +++ b/japicmp/testapidocs/japicmp/cmp/GenericsTest.html @@ -1,11 +1,11 @@ - -GenericsTest (japicmp 0.21.3-SNAPSHOT Test API) + +GenericsTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/cmp/IgnoreMissingClassesTest.html b/japicmp/testapidocs/japicmp/cmp/IgnoreMissingClassesTest.html index 8ba133e0..b79a04cf 100644 --- a/japicmp/testapidocs/japicmp/cmp/IgnoreMissingClassesTest.html +++ b/japicmp/testapidocs/japicmp/cmp/IgnoreMissingClassesTest.html @@ -1,11 +1,11 @@ - -IgnoreMissingClassesTest (japicmp 0.21.3-SNAPSHOT Test API) + +IgnoreMissingClassesTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/cmp/InterfacesTest.html b/japicmp/testapidocs/japicmp/cmp/InterfacesTest.html index 8d3309fc..f60575d7 100644 --- a/japicmp/testapidocs/japicmp/cmp/InterfacesTest.html +++ b/japicmp/testapidocs/japicmp/cmp/InterfacesTest.html @@ -1,11 +1,11 @@ - -InterfacesTest (japicmp 0.21.3-SNAPSHOT Test API) + +InterfacesTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/cmp/JarArchiveComparatorTest.html b/japicmp/testapidocs/japicmp/cmp/JarArchiveComparatorTest.html index b31ace60..eb80f626 100644 --- a/japicmp/testapidocs/japicmp/cmp/JarArchiveComparatorTest.html +++ b/japicmp/testapidocs/japicmp/cmp/JarArchiveComparatorTest.html @@ -1,11 +1,11 @@ - -JarArchiveComparatorTest (japicmp 0.21.3-SNAPSHOT Test API) + +JarArchiveComparatorTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/cmp/MethodsTest.html b/japicmp/testapidocs/japicmp/cmp/MethodsTest.html index e88a6574..1fde87e9 100644 --- a/japicmp/testapidocs/japicmp/cmp/MethodsTest.html +++ b/japicmp/testapidocs/japicmp/cmp/MethodsTest.html @@ -1,11 +1,11 @@ - -MethodsTest (japicmp 0.21.3-SNAPSHOT Test API) + +MethodsTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/cmp/ShowSyntheticTest.html b/japicmp/testapidocs/japicmp/cmp/ShowSyntheticTest.html index c329b16a..d278a86f 100644 --- a/japicmp/testapidocs/japicmp/cmp/ShowSyntheticTest.html +++ b/japicmp/testapidocs/japicmp/cmp/ShowSyntheticTest.html @@ -1,11 +1,11 @@ - -ShowSyntheticTest (japicmp 0.21.3-SNAPSHOT Test API) + +ShowSyntheticTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/cmp/SuperclassTest.html b/japicmp/testapidocs/japicmp/cmp/SuperclassTest.html index 1490e255..1acbd43c 100644 --- a/japicmp/testapidocs/japicmp/cmp/SuperclassTest.html +++ b/japicmp/testapidocs/japicmp/cmp/SuperclassTest.html @@ -1,11 +1,11 @@ - -SuperclassTest (japicmp 0.21.3-SNAPSHOT Test API) + +SuperclassTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/AnnotationsTest.Include.html b/japicmp/testapidocs/japicmp/cmp/class-use/AnnotationsTest.Include.html index d31d71fd..e224b52b 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/AnnotationsTest.Include.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/AnnotationsTest.Include.html @@ -1,11 +1,11 @@ - -Uses of Annotation Type japicmp.cmp.AnnotationsTest.Include (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Annotation Type japicmp.cmp.AnnotationsTest.Include (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/AnnotationsTest.html b/japicmp/testapidocs/japicmp/cmp/class-use/AnnotationsTest.html index c77edb44..66423fbf 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/AnnotationsTest.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/AnnotationsTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.cmp.AnnotationsTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.cmp.AnnotationsTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/ClassesComparatorTest.html b/japicmp/testapidocs/japicmp/cmp/class-use/ClassesComparatorTest.html index a53df3dc..9384938e 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/ClassesComparatorTest.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/ClassesComparatorTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.cmp.ClassesComparatorTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.cmp.ClassesComparatorTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/ClassesHelper.ClassesGenerator.html b/japicmp/testapidocs/japicmp/cmp/class-use/ClassesHelper.ClassesGenerator.html index f15dd996..1ab3635e 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/ClassesHelper.ClassesGenerator.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/ClassesHelper.ClassesGenerator.html @@ -1,11 +1,11 @@ - -Uses of Interface japicmp.cmp.ClassesHelper.ClassesGenerator (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Interface japicmp.cmp.ClassesHelper.ClassesGenerator (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/ClassesHelper.CompareClassesResult.html b/japicmp/testapidocs/japicmp/cmp/class-use/ClassesHelper.CompareClassesResult.html index 85d3bce5..9696959a 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/ClassesHelper.CompareClassesResult.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/ClassesHelper.CompareClassesResult.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.cmp.ClassesHelper.CompareClassesResult (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.cmp.ClassesHelper.CompareClassesResult (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/ClassesHelper.html b/japicmp/testapidocs/japicmp/cmp/class-use/ClassesHelper.html index c6c673d7..aec830e6 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/ClassesHelper.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/ClassesHelper.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.cmp.ClassesHelper (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.cmp.ClassesHelper (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/ClassesTest.html b/japicmp/testapidocs/japicmp/cmp/class-use/ClassesTest.html index 8d356660..fc3bd00c 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/ClassesTest.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/ClassesTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.cmp.ClassesTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.cmp.ClassesTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/ExceptionsTest.html b/japicmp/testapidocs/japicmp/cmp/class-use/ExceptionsTest.html index 7578d848..2871cfdb 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/ExceptionsTest.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/ExceptionsTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.cmp.ExceptionsTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.cmp.ExceptionsTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/FilterTest.Exclude.html b/japicmp/testapidocs/japicmp/cmp/class-use/FilterTest.Exclude.html index 225326d1..ca15bf00 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/FilterTest.Exclude.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/FilterTest.Exclude.html @@ -1,11 +1,11 @@ - -Uses of Annotation Type japicmp.cmp.FilterTest.Exclude (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Annotation Type japicmp.cmp.FilterTest.Exclude (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/FilterTest.Include.html b/japicmp/testapidocs/japicmp/cmp/class-use/FilterTest.Include.html index de38906c..0e8ff73b 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/FilterTest.Include.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/FilterTest.Include.html @@ -1,11 +1,11 @@ - -Uses of Annotation Type japicmp.cmp.FilterTest.Include (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Annotation Type japicmp.cmp.FilterTest.Include (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/FilterTest.html b/japicmp/testapidocs/japicmp/cmp/class-use/FilterTest.html index 66272095..f79b6552 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/FilterTest.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/FilterTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.cmp.FilterTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.cmp.FilterTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/GenericTemplateTest.html b/japicmp/testapidocs/japicmp/cmp/class-use/GenericTemplateTest.html index 0b4dc693..751c3ea4 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/GenericTemplateTest.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/GenericTemplateTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.cmp.GenericTemplateTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.cmp.GenericTemplateTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/GenericsTest.html b/japicmp/testapidocs/japicmp/cmp/class-use/GenericsTest.html index 553bc051..a0e885e2 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/GenericsTest.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/GenericsTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.cmp.GenericsTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.cmp.GenericsTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/IgnoreMissingClassesTest.html b/japicmp/testapidocs/japicmp/cmp/class-use/IgnoreMissingClassesTest.html index 298dccd2..c887592c 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/IgnoreMissingClassesTest.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/IgnoreMissingClassesTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.cmp.IgnoreMissingClassesTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.cmp.IgnoreMissingClassesTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/InterfacesTest.html b/japicmp/testapidocs/japicmp/cmp/class-use/InterfacesTest.html index e06bc3ae..28c28eed 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/InterfacesTest.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/InterfacesTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.cmp.InterfacesTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.cmp.InterfacesTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/JarArchiveComparatorTest.html b/japicmp/testapidocs/japicmp/cmp/class-use/JarArchiveComparatorTest.html index bec75ef9..074a0a58 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/JarArchiveComparatorTest.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/JarArchiveComparatorTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.cmp.JarArchiveComparatorTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.cmp.JarArchiveComparatorTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/MethodsTest.html b/japicmp/testapidocs/japicmp/cmp/class-use/MethodsTest.html index 9a7eb9c1..6078445b 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/MethodsTest.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/MethodsTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.cmp.MethodsTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.cmp.MethodsTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/ShowSyntheticTest.html b/japicmp/testapidocs/japicmp/cmp/class-use/ShowSyntheticTest.html index bda4c7e2..af06017a 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/ShowSyntheticTest.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/ShowSyntheticTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.cmp.ShowSyntheticTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.cmp.ShowSyntheticTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/class-use/SuperclassTest.html b/japicmp/testapidocs/japicmp/cmp/class-use/SuperclassTest.html index 12522f9c..999577a8 100644 --- a/japicmp/testapidocs/japicmp/cmp/class-use/SuperclassTest.html +++ b/japicmp/testapidocs/japicmp/cmp/class-use/SuperclassTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.cmp.SuperclassTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.cmp.SuperclassTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/package-summary.html b/japicmp/testapidocs/japicmp/cmp/package-summary.html index bd882c46..a0d4311f 100644 --- a/japicmp/testapidocs/japicmp/cmp/package-summary.html +++ b/japicmp/testapidocs/japicmp/cmp/package-summary.html @@ -1,11 +1,11 @@ - -japicmp.cmp (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.cmp (japicmp 0.22.0 Test API) - + @@ -91,8 +91,8 @@

    Package japicmp.cmp

  • -
    -
    +
    +
    Class
    Description
    diff --git a/japicmp/testapidocs/japicmp/cmp/package-tree.html b/japicmp/testapidocs/japicmp/cmp/package-tree.html index 0ef3ec22..ffc915dd 100644 --- a/japicmp/testapidocs/japicmp/cmp/package-tree.html +++ b/japicmp/testapidocs/japicmp/cmp/package-tree.html @@ -1,11 +1,11 @@ - -japicmp.cmp Class Hierarchy (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.cmp Class Hierarchy (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/cmp/package-use.html b/japicmp/testapidocs/japicmp/cmp/package-use.html index 8c7c4163..7b84ae2b 100644 --- a/japicmp/testapidocs/japicmp/cmp/package-use.html +++ b/japicmp/testapidocs/japicmp/cmp/package-use.html @@ -1,11 +1,11 @@ - -Uses of Package japicmp.cmp (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Package japicmp.cmp (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/compat/CompatibilityChangesTest.html b/japicmp/testapidocs/japicmp/compat/CompatibilityChangesTest.html index 5c5c87b4..86859850 100644 --- a/japicmp/testapidocs/japicmp/compat/CompatibilityChangesTest.html +++ b/japicmp/testapidocs/japicmp/compat/CompatibilityChangesTest.html @@ -1,11 +1,11 @@ - -CompatibilityChangesTest (japicmp 0.21.3-SNAPSHOT Test API) + +CompatibilityChangesTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/compat/SerializationChangesTest.html b/japicmp/testapidocs/japicmp/compat/SerializationChangesTest.html index 4e235bdf..9b0d545b 100644 --- a/japicmp/testapidocs/japicmp/compat/SerializationChangesTest.html +++ b/japicmp/testapidocs/japicmp/compat/SerializationChangesTest.html @@ -1,11 +1,11 @@ - -SerializationChangesTest (japicmp 0.21.3-SNAPSHOT Test API) + +SerializationChangesTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/compat/class-use/CompatibilityChangesTest.html b/japicmp/testapidocs/japicmp/compat/class-use/CompatibilityChangesTest.html index cc426d8b..d89b5ad8 100644 --- a/japicmp/testapidocs/japicmp/compat/class-use/CompatibilityChangesTest.html +++ b/japicmp/testapidocs/japicmp/compat/class-use/CompatibilityChangesTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.compat.CompatibilityChangesTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.compat.CompatibilityChangesTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/compat/class-use/SerializationChangesTest.html b/japicmp/testapidocs/japicmp/compat/class-use/SerializationChangesTest.html index f4a9307f..d3a37cdf 100644 --- a/japicmp/testapidocs/japicmp/compat/class-use/SerializationChangesTest.html +++ b/japicmp/testapidocs/japicmp/compat/class-use/SerializationChangesTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.compat.SerializationChangesTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.compat.SerializationChangesTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/compat/package-summary.html b/japicmp/testapidocs/japicmp/compat/package-summary.html index 6c4c2108..ac396325 100644 --- a/japicmp/testapidocs/japicmp/compat/package-summary.html +++ b/japicmp/testapidocs/japicmp/compat/package-summary.html @@ -1,11 +1,11 @@ - -japicmp.compat (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.compat (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/compat/package-tree.html b/japicmp/testapidocs/japicmp/compat/package-tree.html index 96b1b987..1598773f 100644 --- a/japicmp/testapidocs/japicmp/compat/package-tree.html +++ b/japicmp/testapidocs/japicmp/compat/package-tree.html @@ -1,11 +1,11 @@ - -japicmp.compat Class Hierarchy (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.compat Class Hierarchy (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/compat/package-use.html b/japicmp/testapidocs/japicmp/compat/package-use.html index 88cb69b7..db6ce6f0 100644 --- a/japicmp/testapidocs/japicmp/compat/package-use.html +++ b/japicmp/testapidocs/japicmp/compat/package-use.html @@ -1,11 +1,11 @@ - -Uses of Package japicmp.compat (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Package japicmp.compat (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/config/OptionsTest.html b/japicmp/testapidocs/japicmp/config/OptionsTest.html index 1b0028b0..bceb3825 100644 --- a/japicmp/testapidocs/japicmp/config/OptionsTest.html +++ b/japicmp/testapidocs/japicmp/config/OptionsTest.html @@ -1,11 +1,11 @@ - -OptionsTest (japicmp 0.21.3-SNAPSHOT Test API) + +OptionsTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/config/class-use/OptionsTest.html b/japicmp/testapidocs/japicmp/config/class-use/OptionsTest.html index b6052985..dc63c78f 100644 --- a/japicmp/testapidocs/japicmp/config/class-use/OptionsTest.html +++ b/japicmp/testapidocs/japicmp/config/class-use/OptionsTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.config.OptionsTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.config.OptionsTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/config/package-summary.html b/japicmp/testapidocs/japicmp/config/package-summary.html index b1140020..841e5f93 100644 --- a/japicmp/testapidocs/japicmp/config/package-summary.html +++ b/japicmp/testapidocs/japicmp/config/package-summary.html @@ -1,11 +1,11 @@ - -japicmp.config (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.config (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/config/package-tree.html b/japicmp/testapidocs/japicmp/config/package-tree.html index 65b11245..cb419aa5 100644 --- a/japicmp/testapidocs/japicmp/config/package-tree.html +++ b/japicmp/testapidocs/japicmp/config/package-tree.html @@ -1,11 +1,11 @@ - -japicmp.config Class Hierarchy (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.config Class Hierarchy (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/config/package-use.html b/japicmp/testapidocs/japicmp/config/package-use.html index 3650ba58..8bf64360 100644 --- a/japicmp/testapidocs/japicmp/config/package-use.html +++ b/japicmp/testapidocs/japicmp/config/package-use.html @@ -1,11 +1,11 @@ - -Uses of Package japicmp.config (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Package japicmp.config (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/filter/AnnotationClassFilterTest.html b/japicmp/testapidocs/japicmp/filter/AnnotationClassFilterTest.html index 7977146e..ebbefc3d 100644 --- a/japicmp/testapidocs/japicmp/filter/AnnotationClassFilterTest.html +++ b/japicmp/testapidocs/japicmp/filter/AnnotationClassFilterTest.html @@ -1,11 +1,11 @@ - -AnnotationClassFilterTest (japicmp 0.21.3-SNAPSHOT Test API) + +AnnotationClassFilterTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/filter/BehaviorFilterTest.html b/japicmp/testapidocs/japicmp/filter/BehaviorFilterTest.html index 787159ee..2e9bda46 100644 --- a/japicmp/testapidocs/japicmp/filter/BehaviorFilterTest.html +++ b/japicmp/testapidocs/japicmp/filter/BehaviorFilterTest.html @@ -1,11 +1,11 @@ - -BehaviorFilterTest (japicmp 0.21.3-SNAPSHOT Test API) + +BehaviorFilterTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/filter/ClassFilterTest.html b/japicmp/testapidocs/japicmp/filter/ClassFilterTest.html index 6797453f..4d901d74 100644 --- a/japicmp/testapidocs/japicmp/filter/ClassFilterTest.html +++ b/japicmp/testapidocs/japicmp/filter/ClassFilterTest.html @@ -1,11 +1,11 @@ - -ClassFilterTest (japicmp 0.21.3-SNAPSHOT Test API) + +ClassFilterTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/filter/FieldFilterTest.html b/japicmp/testapidocs/japicmp/filter/FieldFilterTest.html index 0b6b4fc5..93ea5fa6 100644 --- a/japicmp/testapidocs/japicmp/filter/FieldFilterTest.html +++ b/japicmp/testapidocs/japicmp/filter/FieldFilterTest.html @@ -1,11 +1,11 @@ - -FieldFilterTest (japicmp 0.21.3-SNAPSHOT Test API) + +FieldFilterTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/filter/PackageFilterTest.html b/japicmp/testapidocs/japicmp/filter/PackageFilterTest.html index 2d1ae88a..61c58c15 100644 --- a/japicmp/testapidocs/japicmp/filter/PackageFilterTest.html +++ b/japicmp/testapidocs/japicmp/filter/PackageFilterTest.html @@ -1,11 +1,11 @@ - -PackageFilterTest (japicmp 0.21.3-SNAPSHOT Test API) + +PackageFilterTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/filter/class-use/AnnotationClassFilterTest.html b/japicmp/testapidocs/japicmp/filter/class-use/AnnotationClassFilterTest.html index fe2f9748..5bb25383 100644 --- a/japicmp/testapidocs/japicmp/filter/class-use/AnnotationClassFilterTest.html +++ b/japicmp/testapidocs/japicmp/filter/class-use/AnnotationClassFilterTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.filter.AnnotationClassFilterTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.filter.AnnotationClassFilterTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/filter/class-use/BehaviorFilterTest.html b/japicmp/testapidocs/japicmp/filter/class-use/BehaviorFilterTest.html index 289180d8..b4b45c0b 100644 --- a/japicmp/testapidocs/japicmp/filter/class-use/BehaviorFilterTest.html +++ b/japicmp/testapidocs/japicmp/filter/class-use/BehaviorFilterTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.filter.BehaviorFilterTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.filter.BehaviorFilterTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/filter/class-use/ClassFilterTest.html b/japicmp/testapidocs/japicmp/filter/class-use/ClassFilterTest.html index 849dbde6..65ad8b16 100644 --- a/japicmp/testapidocs/japicmp/filter/class-use/ClassFilterTest.html +++ b/japicmp/testapidocs/japicmp/filter/class-use/ClassFilterTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.filter.ClassFilterTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.filter.ClassFilterTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/filter/class-use/FieldFilterTest.html b/japicmp/testapidocs/japicmp/filter/class-use/FieldFilterTest.html index 73535b81..e29b4bb8 100644 --- a/japicmp/testapidocs/japicmp/filter/class-use/FieldFilterTest.html +++ b/japicmp/testapidocs/japicmp/filter/class-use/FieldFilterTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.filter.FieldFilterTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.filter.FieldFilterTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/filter/class-use/PackageFilterTest.html b/japicmp/testapidocs/japicmp/filter/class-use/PackageFilterTest.html index 74c2ec68..8e605a74 100644 --- a/japicmp/testapidocs/japicmp/filter/class-use/PackageFilterTest.html +++ b/japicmp/testapidocs/japicmp/filter/class-use/PackageFilterTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.filter.PackageFilterTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.filter.PackageFilterTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/filter/package-summary.html b/japicmp/testapidocs/japicmp/filter/package-summary.html index ad8925c8..8e43d99b 100644 --- a/japicmp/testapidocs/japicmp/filter/package-summary.html +++ b/japicmp/testapidocs/japicmp/filter/package-summary.html @@ -1,11 +1,11 @@ - -japicmp.filter (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.filter (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/filter/package-tree.html b/japicmp/testapidocs/japicmp/filter/package-tree.html index b3d5b4a4..b7cb5b53 100644 --- a/japicmp/testapidocs/japicmp/filter/package-tree.html +++ b/japicmp/testapidocs/japicmp/filter/package-tree.html @@ -1,11 +1,11 @@ - -japicmp.filter Class Hierarchy (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.filter Class Hierarchy (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/filter/package-use.html b/japicmp/testapidocs/japicmp/filter/package-use.html index fbd919bf..8f3c0640 100644 --- a/japicmp/testapidocs/japicmp/filter/package-use.html +++ b/japicmp/testapidocs/japicmp/filter/package-use.html @@ -1,11 +1,11 @@ - -Uses of Package japicmp.filter (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Package japicmp.filter (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/html/HtmlOutputGeneratorTest.html b/japicmp/testapidocs/japicmp/output/html/HtmlOutputGeneratorTest.html index 7ed8ed6c..ba448e89 100644 --- a/japicmp/testapidocs/japicmp/output/html/HtmlOutputGeneratorTest.html +++ b/japicmp/testapidocs/japicmp/output/html/HtmlOutputGeneratorTest.html @@ -1,11 +1,11 @@ - -HtmlOutputGeneratorTest (japicmp 0.21.3-SNAPSHOT Test API) + +HtmlOutputGeneratorTest (japicmp 0.22.0 Test API) - + @@ -101,14 +101,17 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    void
     
    +
    void
    + +
     
    @@ -151,6 +154,17 @@

    testHtmlReport

  • +
  • +
    +

    testSummaryOnly

    +
    public void testSummaryOnly() + throws Exception
    +
    +
    Throws:
    +
    Exception
    +
    +
    +
  • diff --git a/japicmp/testapidocs/japicmp/output/html/class-use/HtmlOutputGeneratorTest.html b/japicmp/testapidocs/japicmp/output/html/class-use/HtmlOutputGeneratorTest.html index 741f725f..d8c70ccd 100644 --- a/japicmp/testapidocs/japicmp/output/html/class-use/HtmlOutputGeneratorTest.html +++ b/japicmp/testapidocs/japicmp/output/html/class-use/HtmlOutputGeneratorTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.output.html.HtmlOutputGeneratorTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.output.html.HtmlOutputGeneratorTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/html/package-summary.html b/japicmp/testapidocs/japicmp/output/html/package-summary.html index 29339a9d..39d261fb 100644 --- a/japicmp/testapidocs/japicmp/output/html/package-summary.html +++ b/japicmp/testapidocs/japicmp/output/html/package-summary.html @@ -1,11 +1,11 @@ - -japicmp.output.html (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.output.html (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/html/package-tree.html b/japicmp/testapidocs/japicmp/output/html/package-tree.html index 70eb55d8..82cef965 100644 --- a/japicmp/testapidocs/japicmp/output/html/package-tree.html +++ b/japicmp/testapidocs/japicmp/output/html/package-tree.html @@ -1,11 +1,11 @@ - -japicmp.output.html Class Hierarchy (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.output.html Class Hierarchy (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/html/package-use.html b/japicmp/testapidocs/japicmp/output/html/package-use.html index 6d76f657..5f0c48d5 100644 --- a/japicmp/testapidocs/japicmp/output/html/package-use.html +++ b/japicmp/testapidocs/japicmp/output/html/package-use.html @@ -1,11 +1,11 @@ - -Uses of Package japicmp.output.html (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Package japicmp.output.html (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/incompatible/IncompatibleErrorOutputTest.html b/japicmp/testapidocs/japicmp/output/incompatible/IncompatibleErrorOutputTest.html index 0589f972..b4a34f36 100644 --- a/japicmp/testapidocs/japicmp/output/incompatible/IncompatibleErrorOutputTest.html +++ b/japicmp/testapidocs/japicmp/output/incompatible/IncompatibleErrorOutputTest.html @@ -1,11 +1,11 @@ - -IncompatibleErrorOutputTest (japicmp 0.21.3-SNAPSHOT Test API) + +IncompatibleErrorOutputTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/output/incompatible/class-use/IncompatibleErrorOutputTest.html b/japicmp/testapidocs/japicmp/output/incompatible/class-use/IncompatibleErrorOutputTest.html index 78db674c..2896e009 100644 --- a/japicmp/testapidocs/japicmp/output/incompatible/class-use/IncompatibleErrorOutputTest.html +++ b/japicmp/testapidocs/japicmp/output/incompatible/class-use/IncompatibleErrorOutputTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.output.incompatible.IncompatibleErrorOutputTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.output.incompatible.IncompatibleErrorOutputTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/incompatible/package-summary.html b/japicmp/testapidocs/japicmp/output/incompatible/package-summary.html index 01378882..4cba1ab1 100644 --- a/japicmp/testapidocs/japicmp/output/incompatible/package-summary.html +++ b/japicmp/testapidocs/japicmp/output/incompatible/package-summary.html @@ -1,11 +1,11 @@ - -japicmp.output.incompatible (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.output.incompatible (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/incompatible/package-tree.html b/japicmp/testapidocs/japicmp/output/incompatible/package-tree.html index ca49b735..d0d13272 100644 --- a/japicmp/testapidocs/japicmp/output/incompatible/package-tree.html +++ b/japicmp/testapidocs/japicmp/output/incompatible/package-tree.html @@ -1,11 +1,11 @@ - -japicmp.output.incompatible Class Hierarchy (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.output.incompatible Class Hierarchy (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/incompatible/package-use.html b/japicmp/testapidocs/japicmp/output/incompatible/package-use.html index 25f11495..7594199d 100644 --- a/japicmp/testapidocs/japicmp/output/incompatible/package-use.html +++ b/japicmp/testapidocs/japicmp/output/incompatible/package-use.html @@ -1,11 +1,11 @@ - -Uses of Package japicmp.output.incompatible (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Package japicmp.output.incompatible (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/semver/SemverOutTest.html b/japicmp/testapidocs/japicmp/output/semver/SemverOutTest.html index ff4c3108..e892b096 100644 --- a/japicmp/testapidocs/japicmp/output/semver/SemverOutTest.html +++ b/japicmp/testapidocs/japicmp/output/semver/SemverOutTest.html @@ -1,11 +1,11 @@ - -SemverOutTest (japicmp 0.21.3-SNAPSHOT Test API) + +SemverOutTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/output/semver/class-use/SemverOutTest.html b/japicmp/testapidocs/japicmp/output/semver/class-use/SemverOutTest.html index dde4eba3..6151a260 100644 --- a/japicmp/testapidocs/japicmp/output/semver/class-use/SemverOutTest.html +++ b/japicmp/testapidocs/japicmp/output/semver/class-use/SemverOutTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.output.semver.SemverOutTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.output.semver.SemverOutTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/semver/package-summary.html b/japicmp/testapidocs/japicmp/output/semver/package-summary.html index e6c85174..d7eef7b0 100644 --- a/japicmp/testapidocs/japicmp/output/semver/package-summary.html +++ b/japicmp/testapidocs/japicmp/output/semver/package-summary.html @@ -1,11 +1,11 @@ - -japicmp.output.semver (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.output.semver (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/semver/package-tree.html b/japicmp/testapidocs/japicmp/output/semver/package-tree.html index d3731b91..f7debce1 100644 --- a/japicmp/testapidocs/japicmp/output/semver/package-tree.html +++ b/japicmp/testapidocs/japicmp/output/semver/package-tree.html @@ -1,11 +1,11 @@ - -japicmp.output.semver Class Hierarchy (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.output.semver Class Hierarchy (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/semver/package-use.html b/japicmp/testapidocs/japicmp/output/semver/package-use.html index 683603b3..4d240db7 100644 --- a/japicmp/testapidocs/japicmp/output/semver/package-use.html +++ b/japicmp/testapidocs/japicmp/output/semver/package-use.html @@ -1,11 +1,11 @@ - -Uses of Package japicmp.output.semver (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Package japicmp.output.semver (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/stdout/StdoutOutputGeneratorTest.html b/japicmp/testapidocs/japicmp/output/stdout/StdoutOutputGeneratorTest.html index 7e4baceb..f8fcc5e1 100644 --- a/japicmp/testapidocs/japicmp/output/stdout/StdoutOutputGeneratorTest.html +++ b/japicmp/testapidocs/japicmp/output/stdout/StdoutOutputGeneratorTest.html @@ -1,11 +1,11 @@ - -StdoutOutputGeneratorTest (japicmp 0.21.3-SNAPSHOT Test API) + +StdoutOutputGeneratorTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    @@ -122,8 +122,11 @@

    Method Summary

     
    void
    - +
     
    +
    void
    + +
     
    @@ -211,6 +214,17 @@

    testFieldWithGenericTypes

    +
  • +
    +

    testSummaryOnly

    +
    public void testSummaryOnly() + throws Exception
    +
    +
    Throws:
    +
    Exception
    +
    +
    +
  • diff --git a/japicmp/testapidocs/japicmp/output/stdout/class-use/StdoutOutputGeneratorTest.html b/japicmp/testapidocs/japicmp/output/stdout/class-use/StdoutOutputGeneratorTest.html index 21f54de0..f4e0d63f 100644 --- a/japicmp/testapidocs/japicmp/output/stdout/class-use/StdoutOutputGeneratorTest.html +++ b/japicmp/testapidocs/japicmp/output/stdout/class-use/StdoutOutputGeneratorTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.output.stdout.StdoutOutputGeneratorTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.output.stdout.StdoutOutputGeneratorTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/stdout/package-summary.html b/japicmp/testapidocs/japicmp/output/stdout/package-summary.html index c53fd092..f15c5b2b 100644 --- a/japicmp/testapidocs/japicmp/output/stdout/package-summary.html +++ b/japicmp/testapidocs/japicmp/output/stdout/package-summary.html @@ -1,11 +1,11 @@ - -japicmp.output.stdout (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.output.stdout (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/stdout/package-tree.html b/japicmp/testapidocs/japicmp/output/stdout/package-tree.html index 165ff5e9..c70d8674 100644 --- a/japicmp/testapidocs/japicmp/output/stdout/package-tree.html +++ b/japicmp/testapidocs/japicmp/output/stdout/package-tree.html @@ -1,11 +1,11 @@ - -japicmp.output.stdout Class Hierarchy (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.output.stdout Class Hierarchy (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/stdout/package-use.html b/japicmp/testapidocs/japicmp/output/stdout/package-use.html index 45ad41b4..6785863d 100644 --- a/japicmp/testapidocs/japicmp/output/stdout/package-use.html +++ b/japicmp/testapidocs/japicmp/output/stdout/package-use.html @@ -1,11 +1,11 @@ - -Uses of Package japicmp.output.stdout (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Package japicmp.output.stdout (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/xml/XmlOutputGeneratorTest.html b/japicmp/testapidocs/japicmp/output/xml/XmlOutputGeneratorTest.html index 961222ab..8639d59c 100644 --- a/japicmp/testapidocs/japicmp/output/xml/XmlOutputGeneratorTest.html +++ b/japicmp/testapidocs/japicmp/output/xml/XmlOutputGeneratorTest.html @@ -1,11 +1,11 @@ - -XmlOutputGeneratorTest (japicmp 0.21.3-SNAPSHOT Test API) + +XmlOutputGeneratorTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/output/xml/class-use/XmlOutputGeneratorTest.html b/japicmp/testapidocs/japicmp/output/xml/class-use/XmlOutputGeneratorTest.html index c7a0b4c5..beb4515e 100644 --- a/japicmp/testapidocs/japicmp/output/xml/class-use/XmlOutputGeneratorTest.html +++ b/japicmp/testapidocs/japicmp/output/xml/class-use/XmlOutputGeneratorTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.output.xml.XmlOutputGeneratorTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.output.xml.XmlOutputGeneratorTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/xml/package-summary.html b/japicmp/testapidocs/japicmp/output/xml/package-summary.html index bb22d007..d2e76eaf 100644 --- a/japicmp/testapidocs/japicmp/output/xml/package-summary.html +++ b/japicmp/testapidocs/japicmp/output/xml/package-summary.html @@ -1,11 +1,11 @@ - -japicmp.output.xml (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.output.xml (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/xml/package-tree.html b/japicmp/testapidocs/japicmp/output/xml/package-tree.html index 08a4c584..74dbf22c 100644 --- a/japicmp/testapidocs/japicmp/output/xml/package-tree.html +++ b/japicmp/testapidocs/japicmp/output/xml/package-tree.html @@ -1,11 +1,11 @@ - -japicmp.output.xml Class Hierarchy (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.output.xml Class Hierarchy (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/output/xml/package-use.html b/japicmp/testapidocs/japicmp/output/xml/package-use.html index 666d56ed..9496fcb9 100644 --- a/japicmp/testapidocs/japicmp/output/xml/package-use.html +++ b/japicmp/testapidocs/japicmp/output/xml/package-use.html @@ -1,11 +1,11 @@ - -Uses of Package japicmp.output.xml (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Package japicmp.output.xml (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/package-summary.html b/japicmp/testapidocs/japicmp/package-summary.html index 7eea5c88..a91dcb08 100644 --- a/japicmp/testapidocs/japicmp/package-summary.html +++ b/japicmp/testapidocs/japicmp/package-summary.html @@ -1,11 +1,11 @@ - -japicmp (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/package-tree.html b/japicmp/testapidocs/japicmp/package-tree.html index e3dce056..f9bd0ef9 100644 --- a/japicmp/testapidocs/japicmp/package-tree.html +++ b/japicmp/testapidocs/japicmp/package-tree.html @@ -1,11 +1,11 @@ - -japicmp Class Hierarchy (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp Class Hierarchy (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/package-use.html b/japicmp/testapidocs/japicmp/package-use.html index 3c5fe495..dacfe42f 100644 --- a/japicmp/testapidocs/japicmp/package-use.html +++ b/japicmp/testapidocs/japicmp/package-use.html @@ -1,11 +1,11 @@ - -Uses of Package japicmp (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Package japicmp (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/ClassesHelper.ClassesGenerator.html b/japicmp/testapidocs/japicmp/util/ClassesHelper.ClassesGenerator.html index c86a99a9..bc6de213 100644 --- a/japicmp/testapidocs/japicmp/util/ClassesHelper.ClassesGenerator.html +++ b/japicmp/testapidocs/japicmp/util/ClassesHelper.ClassesGenerator.html @@ -1,11 +1,11 @@ - -ClassesHelper.ClassesGenerator (japicmp 0.21.3-SNAPSHOT Test API) + +ClassesHelper.ClassesGenerator (japicmp 0.22.0 Test API) - + @@ -88,8 +88,8 @@

    Interface Cla

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/ClassesHelper.html b/japicmp/testapidocs/japicmp/util/ClassesHelper.html index a13f9ce9..8fa2a4c1 100644 --- a/japicmp/testapidocs/japicmp/util/ClassesHelper.html +++ b/japicmp/testapidocs/japicmp/util/ClassesHelper.html @@ -1,11 +1,11 @@ - -ClassesHelper (japicmp 0.21.3-SNAPSHOT Test API) + +ClassesHelper (japicmp 0.22.0 Test API) - + @@ -116,8 +116,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/CtAnnotationBuilder.html b/japicmp/testapidocs/japicmp/util/CtAnnotationBuilder.html index 8581d32f..8b7613ce 100644 --- a/japicmp/testapidocs/japicmp/util/CtAnnotationBuilder.html +++ b/japicmp/testapidocs/japicmp/util/CtAnnotationBuilder.html @@ -1,11 +1,11 @@ - -CtAnnotationBuilder (japicmp 0.21.3-SNAPSHOT Test API) + +CtAnnotationBuilder (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/CtBehaviorBuilder.html b/japicmp/testapidocs/japicmp/util/CtBehaviorBuilder.html index bbdcd42d..3ca98014 100644 --- a/japicmp/testapidocs/japicmp/util/CtBehaviorBuilder.html +++ b/japicmp/testapidocs/japicmp/util/CtBehaviorBuilder.html @@ -1,11 +1,11 @@ - -CtBehaviorBuilder (japicmp 0.21.3-SNAPSHOT Test API) + +CtBehaviorBuilder (japicmp 0.22.0 Test API) - + @@ -129,8 +129,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/CtClassBuilder.html b/japicmp/testapidocs/japicmp/util/CtClassBuilder.html index 9ea1a41d..3bc2f370 100644 --- a/japicmp/testapidocs/japicmp/util/CtClassBuilder.html +++ b/japicmp/testapidocs/japicmp/util/CtClassBuilder.html @@ -1,11 +1,11 @@ - -CtClassBuilder (japicmp 0.21.3-SNAPSHOT Test API) + +CtClassBuilder (japicmp 0.22.0 Test API) - + @@ -116,8 +116,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/CtConstructorBuilder.html b/japicmp/testapidocs/japicmp/util/CtConstructorBuilder.html index 7dc7b720..f42d8fac 100644 --- a/japicmp/testapidocs/japicmp/util/CtConstructorBuilder.html +++ b/japicmp/testapidocs/japicmp/util/CtConstructorBuilder.html @@ -1,11 +1,11 @@ - -CtConstructorBuilder (japicmp 0.21.3-SNAPSHOT Test API) + +CtConstructorBuilder (japicmp 0.22.0 Test API) - + @@ -112,8 +112,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/CtElement.html b/japicmp/testapidocs/japicmp/util/CtElement.html index 75698aba..2532c2d8 100644 --- a/japicmp/testapidocs/japicmp/util/CtElement.html +++ b/japicmp/testapidocs/japicmp/util/CtElement.html @@ -1,11 +1,11 @@ - -CtElement (japicmp 0.21.3-SNAPSHOT Test API) + +CtElement (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/CtFieldBuilder.html b/japicmp/testapidocs/japicmp/util/CtFieldBuilder.html index e7cdaea4..e4edfbc3 100644 --- a/japicmp/testapidocs/japicmp/util/CtFieldBuilder.html +++ b/japicmp/testapidocs/japicmp/util/CtFieldBuilder.html @@ -1,11 +1,11 @@ - -CtFieldBuilder (japicmp 0.21.3-SNAPSHOT Test API) + +CtFieldBuilder (japicmp 0.22.0 Test API) - + @@ -116,8 +116,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/CtInterfaceBuilder.html b/japicmp/testapidocs/japicmp/util/CtInterfaceBuilder.html index 34da82d5..987e94c4 100644 --- a/japicmp/testapidocs/japicmp/util/CtInterfaceBuilder.html +++ b/japicmp/testapidocs/japicmp/util/CtInterfaceBuilder.html @@ -1,11 +1,11 @@ - -CtInterfaceBuilder (japicmp 0.21.3-SNAPSHOT Test API) + +CtInterfaceBuilder (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/CtMethodBuilder.html b/japicmp/testapidocs/japicmp/util/CtMethodBuilder.html index 335818bd..61ad512f 100644 --- a/japicmp/testapidocs/japicmp/util/CtMethodBuilder.html +++ b/japicmp/testapidocs/japicmp/util/CtMethodBuilder.html @@ -1,11 +1,11 @@ - -CtMethodBuilder (japicmp 0.21.3-SNAPSHOT Test API) + +CtMethodBuilder (japicmp 0.22.0 Test API) - + @@ -112,8 +112,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/Helper.SimpleExceptionVerifier.html b/japicmp/testapidocs/japicmp/util/Helper.SimpleExceptionVerifier.html index 9d88a326..4c3ac1f8 100644 --- a/japicmp/testapidocs/japicmp/util/Helper.SimpleExceptionVerifier.html +++ b/japicmp/testapidocs/japicmp/util/Helper.SimpleExceptionVerifier.html @@ -1,11 +1,11 @@ - -Helper.SimpleExceptionVerifier (japicmp 0.21.3-SNAPSHOT Test API) + +Helper.SimpleExceptionVerifier (japicmp 0.22.0 Test API) - + @@ -88,8 +88,8 @@

    Interface Hel

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/Helper.html b/japicmp/testapidocs/japicmp/util/Helper.html index bd2b5fc3..7789b050 100644 --- a/japicmp/testapidocs/japicmp/util/Helper.html +++ b/japicmp/testapidocs/japicmp/util/Helper.html @@ -1,11 +1,11 @@ - -Helper (japicmp 0.21.3-SNAPSHOT Test API) + +Helper (japicmp 0.22.0 Test API) - + @@ -116,8 +116,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/JarUtil.html b/japicmp/testapidocs/japicmp/util/JarUtil.html index d01ac43a..80caed9f 100644 --- a/japicmp/testapidocs/japicmp/util/JarUtil.html +++ b/japicmp/testapidocs/japicmp/util/JarUtil.html @@ -1,11 +1,11 @@ - -JarUtil (japicmp 0.21.3-SNAPSHOT Test API) + +JarUtil (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/MethodDescriptorParserTest.html b/japicmp/testapidocs/japicmp/util/MethodDescriptorParserTest.html index b823f9a4..a78250de 100644 --- a/japicmp/testapidocs/japicmp/util/MethodDescriptorParserTest.html +++ b/japicmp/testapidocs/japicmp/util/MethodDescriptorParserTest.html @@ -1,11 +1,11 @@ - -MethodDescriptorParserTest (japicmp 0.21.3-SNAPSHOT Test API) + +MethodDescriptorParserTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/ModifierHelperTest.html b/japicmp/testapidocs/japicmp/util/ModifierHelperTest.html index cdd4d417..471d00f8 100644 --- a/japicmp/testapidocs/japicmp/util/ModifierHelperTest.html +++ b/japicmp/testapidocs/japicmp/util/ModifierHelperTest.html @@ -1,11 +1,11 @@ - -ModifierHelperTest (japicmp 0.21.3-SNAPSHOT Test API) + +ModifierHelperTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/SignatureParserTest.html b/japicmp/testapidocs/japicmp/util/SignatureParserTest.html index 889fb0bb..583f6c2e 100644 --- a/japicmp/testapidocs/japicmp/util/SignatureParserTest.html +++ b/japicmp/testapidocs/japicmp/util/SignatureParserTest.html @@ -1,11 +1,11 @@ - -SignatureParserTest (japicmp 0.21.3-SNAPSHOT Test API) + +SignatureParserTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/StringArrayEnumerationTest.html b/japicmp/testapidocs/japicmp/util/StringArrayEnumerationTest.html index 94fcac89..4bbc871f 100644 --- a/japicmp/testapidocs/japicmp/util/StringArrayEnumerationTest.html +++ b/japicmp/testapidocs/japicmp/util/StringArrayEnumerationTest.html @@ -1,11 +1,11 @@ - -StringArrayEnumerationTest (japicmp 0.21.3-SNAPSHOT Test API) + +StringArrayEnumerationTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/VersionTest.html b/japicmp/testapidocs/japicmp/util/VersionTest.html index 1924da72..25537311 100644 --- a/japicmp/testapidocs/japicmp/util/VersionTest.html +++ b/japicmp/testapidocs/japicmp/util/VersionTest.html @@ -1,11 +1,11 @@ - -VersionTest (japicmp 0.21.3-SNAPSHOT Test API) + +VersionTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/class-use/ClassesHelper.ClassesGenerator.html b/japicmp/testapidocs/japicmp/util/class-use/ClassesHelper.ClassesGenerator.html index a3e57622..629300c2 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/ClassesHelper.ClassesGenerator.html +++ b/japicmp/testapidocs/japicmp/util/class-use/ClassesHelper.ClassesGenerator.html @@ -1,11 +1,11 @@ - -Uses of Interface japicmp.util.ClassesHelper.ClassesGenerator (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Interface japicmp.util.ClassesHelper.ClassesGenerator (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/class-use/ClassesHelper.html b/japicmp/testapidocs/japicmp/util/class-use/ClassesHelper.html index 02843b67..c5758375 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/ClassesHelper.html +++ b/japicmp/testapidocs/japicmp/util/class-use/ClassesHelper.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.util.ClassesHelper (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.util.ClassesHelper (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/class-use/CtAnnotationBuilder.html b/japicmp/testapidocs/japicmp/util/class-use/CtAnnotationBuilder.html index 705da5ff..483aec01 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/CtAnnotationBuilder.html +++ b/japicmp/testapidocs/japicmp/util/class-use/CtAnnotationBuilder.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.util.CtAnnotationBuilder (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.util.CtAnnotationBuilder (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/class-use/CtBehaviorBuilder.html b/japicmp/testapidocs/japicmp/util/class-use/CtBehaviorBuilder.html index 8a0dabcc..c5296170 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/CtBehaviorBuilder.html +++ b/japicmp/testapidocs/japicmp/util/class-use/CtBehaviorBuilder.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.util.CtBehaviorBuilder (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.util.CtBehaviorBuilder (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/class-use/CtClassBuilder.html b/japicmp/testapidocs/japicmp/util/class-use/CtClassBuilder.html index 80a4e00d..f124f36a 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/CtClassBuilder.html +++ b/japicmp/testapidocs/japicmp/util/class-use/CtClassBuilder.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.util.CtClassBuilder (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.util.CtClassBuilder (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/class-use/CtConstructorBuilder.html b/japicmp/testapidocs/japicmp/util/class-use/CtConstructorBuilder.html index f13c664c..f7186ae6 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/CtConstructorBuilder.html +++ b/japicmp/testapidocs/japicmp/util/class-use/CtConstructorBuilder.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.util.CtConstructorBuilder (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.util.CtConstructorBuilder (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/class-use/CtElement.html b/japicmp/testapidocs/japicmp/util/class-use/CtElement.html index 181f8ed1..c90aa964 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/CtElement.html +++ b/japicmp/testapidocs/japicmp/util/class-use/CtElement.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.util.CtElement (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.util.CtElement (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/class-use/CtFieldBuilder.html b/japicmp/testapidocs/japicmp/util/class-use/CtFieldBuilder.html index 420770cb..9f299d07 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/CtFieldBuilder.html +++ b/japicmp/testapidocs/japicmp/util/class-use/CtFieldBuilder.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.util.CtFieldBuilder (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.util.CtFieldBuilder (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/class-use/CtInterfaceBuilder.html b/japicmp/testapidocs/japicmp/util/class-use/CtInterfaceBuilder.html index be680b9f..a1b67f9c 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/CtInterfaceBuilder.html +++ b/japicmp/testapidocs/japicmp/util/class-use/CtInterfaceBuilder.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.util.CtInterfaceBuilder (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.util.CtInterfaceBuilder (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/class-use/CtMethodBuilder.html b/japicmp/testapidocs/japicmp/util/class-use/CtMethodBuilder.html index e56859c5..f5e2eaa6 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/CtMethodBuilder.html +++ b/japicmp/testapidocs/japicmp/util/class-use/CtMethodBuilder.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.util.CtMethodBuilder (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.util.CtMethodBuilder (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/class-use/Helper.SimpleExceptionVerifier.html b/japicmp/testapidocs/japicmp/util/class-use/Helper.SimpleExceptionVerifier.html index 77ef26db..c80bef69 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/Helper.SimpleExceptionVerifier.html +++ b/japicmp/testapidocs/japicmp/util/class-use/Helper.SimpleExceptionVerifier.html @@ -1,11 +1,11 @@ - -Uses of Interface japicmp.util.Helper.SimpleExceptionVerifier (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Interface japicmp.util.Helper.SimpleExceptionVerifier (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/class-use/Helper.html b/japicmp/testapidocs/japicmp/util/class-use/Helper.html index 103c3c4e..9afb7278 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/Helper.html +++ b/japicmp/testapidocs/japicmp/util/class-use/Helper.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.util.Helper (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.util.Helper (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/class-use/JarUtil.html b/japicmp/testapidocs/japicmp/util/class-use/JarUtil.html index 660e0513..d47f0088 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/JarUtil.html +++ b/japicmp/testapidocs/japicmp/util/class-use/JarUtil.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.util.JarUtil (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.util.JarUtil (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/class-use/MethodDescriptorParserTest.html b/japicmp/testapidocs/japicmp/util/class-use/MethodDescriptorParserTest.html index e2e0316e..d2ad3af7 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/MethodDescriptorParserTest.html +++ b/japicmp/testapidocs/japicmp/util/class-use/MethodDescriptorParserTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.util.MethodDescriptorParserTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.util.MethodDescriptorParserTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/class-use/ModifierHelperTest.html b/japicmp/testapidocs/japicmp/util/class-use/ModifierHelperTest.html index cdbd436b..c2e15596 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/ModifierHelperTest.html +++ b/japicmp/testapidocs/japicmp/util/class-use/ModifierHelperTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.util.ModifierHelperTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.util.ModifierHelperTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/class-use/SignatureParserTest.html b/japicmp/testapidocs/japicmp/util/class-use/SignatureParserTest.html index d0ded4a0..b5241773 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/SignatureParserTest.html +++ b/japicmp/testapidocs/japicmp/util/class-use/SignatureParserTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.util.SignatureParserTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.util.SignatureParserTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/class-use/StringArrayEnumerationTest.html b/japicmp/testapidocs/japicmp/util/class-use/StringArrayEnumerationTest.html index 96dcad29..e8dd568c 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/StringArrayEnumerationTest.html +++ b/japicmp/testapidocs/japicmp/util/class-use/StringArrayEnumerationTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.util.StringArrayEnumerationTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.util.StringArrayEnumerationTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/class-use/VersionTest.html b/japicmp/testapidocs/japicmp/util/class-use/VersionTest.html index bb96a95d..481fade3 100644 --- a/japicmp/testapidocs/japicmp/util/class-use/VersionTest.html +++ b/japicmp/testapidocs/japicmp/util/class-use/VersionTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.util.VersionTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.util.VersionTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/package-summary.html b/japicmp/testapidocs/japicmp/util/package-summary.html index 20b4273b..81a00c7f 100644 --- a/japicmp/testapidocs/japicmp/util/package-summary.html +++ b/japicmp/testapidocs/japicmp/util/package-summary.html @@ -1,11 +1,11 @@ - -japicmp.util (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.util (japicmp 0.22.0 Test API) - + @@ -91,8 +91,8 @@

    Package japicmp.util

  • -
    -
    +
    +
    Class
    Description
    diff --git a/japicmp/testapidocs/japicmp/util/package-tree.html b/japicmp/testapidocs/japicmp/util/package-tree.html index 0c3a5ce2..cc5937f5 100644 --- a/japicmp/testapidocs/japicmp/util/package-tree.html +++ b/japicmp/testapidocs/japicmp/util/package-tree.html @@ -1,11 +1,11 @@ - -japicmp.util Class Hierarchy (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.util Class Hierarchy (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/util/package-use.html b/japicmp/testapidocs/japicmp/util/package-use.html index ded037c6..f6b1542c 100644 --- a/japicmp/testapidocs/japicmp/util/package-use.html +++ b/japicmp/testapidocs/japicmp/util/package-use.html @@ -1,11 +1,11 @@ - -Uses of Package japicmp.util (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Package japicmp.util (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/versioning/VersionChangeTest.html b/japicmp/testapidocs/japicmp/versioning/VersionChangeTest.html index 5df4b1c6..0568b03d 100644 --- a/japicmp/testapidocs/japicmp/versioning/VersionChangeTest.html +++ b/japicmp/testapidocs/japicmp/versioning/VersionChangeTest.html @@ -1,11 +1,11 @@ - -VersionChangeTest (japicmp 0.21.3-SNAPSHOT Test API) + +VersionChangeTest (japicmp 0.22.0 Test API) - + @@ -101,8 +101,8 @@

    Constructor Summary

    Method Summary

    -
    -
    +
    +
    Modifier and Type
    Method
    Description
    diff --git a/japicmp/testapidocs/japicmp/versioning/class-use/VersionChangeTest.html b/japicmp/testapidocs/japicmp/versioning/class-use/VersionChangeTest.html index 0d761427..19c30611 100644 --- a/japicmp/testapidocs/japicmp/versioning/class-use/VersionChangeTest.html +++ b/japicmp/testapidocs/japicmp/versioning/class-use/VersionChangeTest.html @@ -1,11 +1,11 @@ - -Uses of Class japicmp.versioning.VersionChangeTest (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Class japicmp.versioning.VersionChangeTest (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/versioning/package-summary.html b/japicmp/testapidocs/japicmp/versioning/package-summary.html index 45113afc..6fab69f8 100644 --- a/japicmp/testapidocs/japicmp/versioning/package-summary.html +++ b/japicmp/testapidocs/japicmp/versioning/package-summary.html @@ -1,11 +1,11 @@ - -japicmp.versioning (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.versioning (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/versioning/package-tree.html b/japicmp/testapidocs/japicmp/versioning/package-tree.html index 00d7c91d..886c19df 100644 --- a/japicmp/testapidocs/japicmp/versioning/package-tree.html +++ b/japicmp/testapidocs/japicmp/versioning/package-tree.html @@ -1,11 +1,11 @@ - -japicmp.versioning Class Hierarchy (japicmp 0.21.3-SNAPSHOT Test API) + +japicmp.versioning Class Hierarchy (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/japicmp/versioning/package-use.html b/japicmp/testapidocs/japicmp/versioning/package-use.html index ea610cb0..e9e77dea 100644 --- a/japicmp/testapidocs/japicmp/versioning/package-use.html +++ b/japicmp/testapidocs/japicmp/versioning/package-use.html @@ -1,11 +1,11 @@ - -Uses of Package japicmp.versioning (japicmp 0.21.3-SNAPSHOT Test API) + +Uses of Package japicmp.versioning (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/member-search-index.js b/japicmp/testapidocs/member-search-index.js index 892ade3b..c3c54a73 100644 --- a/japicmp/testapidocs/member-search-index.js +++ b/japicmp/testapidocs/member-search-index.js @@ -1 +1 @@ -memberSearchIndex = [{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"abstractMethod()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"abstractMethod()"},{"p":"japicmp.util","c":"CtClassBuilder","l":"abstractModifier()"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"addToClass(CtClass)","u":"addToClass(javassist.CtClass)"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"addToClass(CtClass)","u":"addToClass(javassist.CtClass)"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"addToClass(CtClass)","u":"addToClass(javassist.CtClass)"},{"p":"japicmp.util","c":"CtAnnotationBuilder","l":"addToClassPool(ClassPool)","u":"addToClassPool(javassist.ClassPool)"},{"p":"japicmp.util","c":"CtClassBuilder","l":"addToClassPool(ClassPool)","u":"addToClassPool(javassist.ClassPool)"},{"p":"japicmp.util","c":"CtInterfaceBuilder","l":"addToClassPool(ClassPool)","u":"addToClassPool(javassist.ClassPool)"},{"p":"japicmp.filter","c":"AnnotationClassFilterTest","l":"AnnotationClassFilterTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"AnnotationsTest","l":"AnnotationsTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"Helper","l":"assertThatExceptionIsThrown(Helper.SimpleExceptionVerifier, Class)","u":"assertThatExceptionIsThrown(japicmp.util.Helper.SimpleExceptionVerifier,java.lang.Class)"},{"p":"japicmp","c":"JApiCmpTest","l":"before()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"before()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"before()"},{"p":"japicmp.config","c":"OptionsTest","l":"beforeClass()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"BehaviorFilterTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"body(String)","u":"body(java.lang.String)"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"body(String)","u":"body(java.lang.String)"},{"p":"japicmp.cmp","c":"ClassesComparatorTest","l":"ClassesComparatorTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"ClassesHelper","l":"ClassesHelper()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"ClassesHelper","l":"ClassesHelper()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"ClassesTest","l":"ClassesTest()","u":"%3Cinit%3E()"},{"p":"japicmp.filter","c":"ClassFilterTest","l":"ClassFilterTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"ClassesHelper","l":"compareClasses(JarArchiveComparatorOptions, ClassesHelper.ClassesGenerator)","u":"compareClasses(japicmp.cmp.JarArchiveComparatorOptions,japicmp.cmp.ClassesHelper.ClassesGenerator)"},{"p":"japicmp.util","c":"ClassesHelper","l":"compareClasses(JarArchiveComparatorOptions, ClassesHelper.ClassesGenerator)","u":"compareClasses(japicmp.cmp.JarArchiveComparatorOptions,japicmp.util.ClassesHelper.ClassesGenerator)"},{"p":"japicmp.cmp","c":"ClassesHelper.CompareClassesResult","l":"CompareClassesResult(List, JarArchiveComparator)","u":"%3Cinit%3E(java.util.List,japicmp.cmp.JarArchiveComparator)"},{"p":"japicmp.cmp","c":"ClassesHelper","l":"compareClassesWithResult(JarArchiveComparatorOptions, ClassesHelper.ClassesGenerator)","u":"compareClassesWithResult(japicmp.cmp.JarArchiveComparatorOptions,japicmp.cmp.ClassesHelper.ClassesGenerator)"},{"p":"japicmp.util","c":"Helper","l":"compareTestV1WithTestV2(AccessModifier)","u":"compareTestV1WithTestV2(japicmp.model.AccessModifier)"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"CompatibilityChangesTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtAnnotationBuilder","l":"create()"},{"p":"japicmp.util","c":"CtClassBuilder","l":"create()"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"create()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"create()"},{"p":"japicmp.util","c":"CtInterfaceBuilder","l":"create()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"create()"},{"p":"japicmp.util","c":"JarUtil","l":"createJarFile(Path, CtClass...)","u":"createJarFile(java.nio.file.Path,javassist.CtClass...)"},{"p":"japicmp.cmp","c":"ClassesHelper.ClassesGenerator","l":"createNewClasses(ClassPool)","u":"createNewClasses(javassist.ClassPool)"},{"p":"japicmp.util","c":"ClassesHelper.ClassesGenerator","l":"createNewClasses(ClassPool)","u":"createNewClasses(javassist.ClassPool)"},{"p":"japicmp.cmp","c":"ClassesHelper.ClassesGenerator","l":"createOldClasses(ClassPool)","u":"createOldClasses(javassist.ClassPool)"},{"p":"japicmp.util","c":"ClassesHelper.ClassesGenerator","l":"createOldClasses(ClassPool)","u":"createOldClasses(javassist.ClassPool)"},{"p":"japicmp.util","c":"CtAnnotationBuilder","l":"CtAnnotationBuilder()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"CtBehaviorBuilder()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtClassBuilder","l":"CtClassBuilder()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"CtConstructorBuilder()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, boolean)","u":"%3Cinit%3E(java.lang.String,boolean)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, byte)","u":"%3Cinit%3E(java.lang.String,byte)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, char)","u":"%3Cinit%3E(java.lang.String,char)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, Class)","u":"%3Cinit%3E(java.lang.String,java.lang.Class)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, double)","u":"%3Cinit%3E(java.lang.String,double)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, float)","u":"%3Cinit%3E(java.lang.String,float)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, int)","u":"%3Cinit%3E(java.lang.String,int)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, long)","u":"%3Cinit%3E(java.lang.String,long)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, short)","u":"%3Cinit%3E(java.lang.String,short)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"CtFieldBuilder()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtInterfaceBuilder","l":"CtInterfaceBuilder()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"CtMethodBuilder()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtClassBuilder","l":"DEFAULT_CLASS_NAME"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"DEFAULT_FIELD_NAME"},{"p":"japicmp.util","c":"CtClassBuilder","l":"enumModifier()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"exceptions"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"exceptions(CtClass[])","u":"exceptions(javassist.CtClass[])"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"exceptions(CtClass[])","u":"exceptions(javassist.CtClass[])"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"exceptions(CtClass[])","u":"exceptions(javassist.CtClass[])"},{"p":"japicmp.cmp","c":"ExceptionsTest","l":"ExceptionsTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"Helper.SimpleExceptionVerifier","l":"execute()"},{"p":"japicmp.filter","c":"FieldFilterTest","l":"FieldFilterTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"FilterTest","l":"FilterTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"finalAccess()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"finalMethod()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"finalMethod()"},{"p":"japicmp.util","c":"CtClassBuilder","l":"finalModifier()"},{"p":"japicmp.util","c":"Helper","l":"generateHtmlOutput(List, String, String, boolean, AccessModifier)","u":"generateHtmlOutput(java.util.List,java.lang.String,java.lang.String,boolean,japicmp.model.AccessModifier)"},{"p":"japicmp.cmp","c":"GenericsTest","l":"GenericsTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"GenericTemplateTest","l":"GenericTemplateTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"Helper","l":"getArchive(String)","u":"getArchive(java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"getArchive(String, String)","u":"getArchive(java.lang.String,java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"getJApiAnnotation(List, String)","u":"getJApiAnnotation(java.util.List,java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"getJApiAnnotationElement(List, String)","u":"getJApiAnnotationElement(java.util.List,java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"getJApiClass(List, String)","u":"getJApiClass(java.util.List,java.lang.String)"},{"p":"japicmp.cmp","c":"ClassesHelper.CompareClassesResult","l":"getjApiClasses()"},{"p":"japicmp.util","c":"Helper","l":"getJApiConstructor(List, List)","u":"getJApiConstructor(java.util.List,java.util.List)"},{"p":"japicmp.util","c":"Helper","l":"getJApiField(List, String)","u":"getJApiField(java.util.List,java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"getJApiImplementedInterface(List, String)","u":"getJApiImplementedInterface(java.util.List,java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"getJApiMethod(List, String)","u":"getJApiMethod(java.util.List,java.lang.String)"},{"p":"japicmp.cmp","c":"ClassesHelper.CompareClassesResult","l":"getJarArchiveComparator()"},{"p":"japicmp.util","c":"Helper","l":"hasJApiFieldWithName(String)","u":"hasJApiFieldWithName(java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"hasJApiMethodWithName(String)","u":"hasJApiMethodWithName(java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"hasNoJApiFieldWithName(String)","u":"hasNoJApiFieldWithName(java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"hasNoJApiMethodWithName(String)","u":"hasNoJApiMethodWithName(java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"Helper()","u":"%3Cinit%3E()"},{"p":"japicmp.output.html","c":"HtmlOutputGeneratorTest","l":"HtmlOutputGeneratorTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"IgnoreMissingClassesTest","l":"IgnoreMissingClassesTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtClassBuilder","l":"implementsInterface(CtClass)","u":"implementsInterface(javassist.CtClass)"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"IncompatibleErrorOutputTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"InterfacesTest()","u":"%3Cinit%3E()"},{"p":"japicmp","c":"JApiCmpTest","l":"JApiCmpTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"JarArchiveComparatorTest","l":"JarArchiveComparatorTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"JarUtil","l":"JarUtil()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"MethodDescriptorParserTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"MethodsTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"modifier"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"modifier(int)"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"modifier(int)"},{"p":"japicmp.util","c":"ModifierHelperTest","l":"ModifierHelperTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtElement","l":"name"},{"p":"japicmp.util","c":"CtAnnotationBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"japicmp.util","c":"CtClassBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"japicmp.util","c":"CtInterfaceBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"japicmp.util","c":"CtClassBuilder","l":"notPublicModifier()"},{"p":"japicmp.config","c":"OptionsTest","l":"OptionsTest()","u":"%3Cinit%3E()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"PackageFilterTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"packageProtectedAccess()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"parameter(CtClass)","u":"parameter(javassist.CtClass)"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"parameter(CtClass)","u":"parameter(javassist.CtClass)"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"parameter(CtClass)","u":"parameter(javassist.CtClass)"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"parameters"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"parameters(CtClass[])","u":"parameters(javassist.CtClass[])"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"parameters(CtClass[])","u":"parameters(javassist.CtClass[])"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"parameters(CtClass[])","u":"parameters(javassist.CtClass[])"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"privateAccess()"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"privateAccess()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"privateAccess()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"privateAccess()"},{"p":"japicmp.util","c":"ModifierHelperTest","l":"privateToPrivate()"},{"p":"japicmp.util","c":"ModifierHelperTest","l":"privateToProtected()"},{"p":"japicmp.util","c":"ModifierHelperTest","l":"privateToPublic()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"protectedAccess()"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"protectedAccess()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"protectedAccess()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"protectedAccess()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"publicAccess()"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"publicAccess()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"publicAccess()"},{"p":"japicmp.util","c":"ModifierHelperTest","l":"publicToPrivate()"},{"p":"japicmp.util","c":"ModifierHelperTest","l":"publicToProtected()"},{"p":"japicmp.util","c":"ModifierHelperTest","l":"publicToPublic()"},{"p":"japicmp.util","c":"Helper","l":"replaceLastDotWith$(String)","u":"replaceLastDotWith$(java.lang.String)"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"returnType(CtClass)","u":"returnType(javassist.CtClass)"},{"p":"japicmp.output.semver","c":"SemverOutTest","l":"SemverOutTest()","u":"%3Cinit%3E()"},{"p":"japicmp.compat","c":"SerializationChangesTest","l":"SerializationChangesTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"ShowSyntheticTest","l":"ShowSyntheticTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"signature"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"signature(String)","u":"signature(java.lang.String)"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"signature(String)","u":"signature(java.lang.String)"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"signature(String)","u":"signature(java.lang.String)"},{"p":"japicmp.util","c":"SignatureParserTest","l":"SignatureParserTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"staticAccess()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"staticAccess()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"staticAccess()"},{"p":"japicmp.output.stdout","c":"StdoutOutputGeneratorTest","l":"StdoutOutputGeneratorTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"StringArrayEnumerationTest","l":"StringArrayEnumerationTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"SuperclassTest","l":"SuperclassTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtClassBuilder","l":"syntheticModifier()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"syntheticModifier()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"syntheticModifier()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAbstractClassNowExtendsAnotherAbstractClass()"},{"p":"japicmp.cmp","c":"ClassesTest","l":"testAbstractMethodAdded()"},{"p":"japicmp.cmp","c":"ClassesTest","l":"testAbstractMethodAddedThatOverridesExistingAbstractMethod()"},{"p":"japicmp.cmp","c":"ClassesTest","l":"testAbstractMethodAddedThatOverridesNewAbstractMethod()"},{"p":"japicmp.cmp","c":"ClassesTest","l":"testAbstractMethodAddedViaNewSuperclass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAbstractMethodMovedToInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAddAbstractMethodToInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAddDefaultMethodToInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationAddedToClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationAddedToField()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationAddedToMethod()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testAnnotationClassExcluded()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testAnnotationClassIncluded()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testAnnotationClassIncludedChangesDetected()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testAnnotationFieldExcluded()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testAnnotationFieldIncluded()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testAnnotationMethodExcluded()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testAnnotationMethodIncluded()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationOnClassModified()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationOnFieldModified()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationOnMethodModified()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationRemovedFromClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationRemovedFromField()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationRemovedFromMethod()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotcationDeprecatedAddedToClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotcationDeprecatedAddedToMethod()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotcationDeprecatedRemovedFromClass()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testArrayPrimParamReturnsVoid()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testArrayPrimParamReturnsVoid()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testArrayRefParamReturnsVoid()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testArrayRefParamReturnsVoid()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testArrayTwoPrimParamsReturnsVoid()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testArrayTwoPrimParamsReturnsVoid()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfGenericReturnTypeModifiedFalse()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfGenericReturnTypeModifiedTrue()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfNecessaryFieldTypeChangedCausedByExclusionFalse()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfNecessaryFieldTypeChangedCausedByExclusionTrue()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfNecessaryInterfaceRemovedCausedByExclusionFalse()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfNecessaryInterfaceRemovedCausedByExclusionTrue()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfNecessaryMethodReturnTypeChangedCausedByExclusionFalse()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfNecessaryMethodReturnTypeChangedCausedByExclusionTrue()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfNecessarySuperclassChangedCausedByExclusionFalse()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfNecessarySuperclassTypeChangedCausedByExclusionTrue()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassBecomesInterfacesAndInterfaceClass()"},{"p":"japicmp.compat","c":"SerializationChangesTest","l":"testClassCompatible()"},{"p":"japicmp.compat","c":"SerializationChangesTest","l":"testClassCompatibleWithSerialVersionUid()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassExtendsUnaryOperator()"},{"p":"japicmp.cmp","c":"SuperclassTest","l":"testClassHasNoSuperclass()"},{"p":"japicmp.cmp","c":"SuperclassTest","l":"testClassHierarchyHasOneLessLevel()"},{"p":"japicmp.cmp","c":"SuperclassTest","l":"testClassHierarchyHasOneMoreLevel()"},{"p":"japicmp.cmp","c":"SuperclassTest","l":"testClassHierarchyHasOneMoreLevelWithExistingClasses()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testClassImplementsInterface()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testClassIncludedButMethodExcluded()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassLessAccessiblePublicToPrivate()"},{"p":"japicmp.cmp","c":"IgnoreMissingClassesTest","l":"testClassMissingWithIgnoreAllMissingClasses()"},{"p":"japicmp.cmp","c":"IgnoreMissingClassesTest","l":"testClassMissingWithIgnoreByRegexThatDoesNotMatch()"},{"p":"japicmp.cmp","c":"IgnoreMissingClassesTest","l":"testClassMissingWithIgnoreClassByRegex()"},{"p":"japicmp.cmp","c":"IgnoreMissingClassesTest","l":"testClassMissingWithoutIgnore()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testClassNoLongerImplementsInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassNoLongerPublic()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassNowAbstract()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassNowCheckedException()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassNowFinal()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassOneMethodAccessModifierChanged()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassOneMethodAdded()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassOneMethodRemoved()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassOneMethodReturnTypeChanged()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassOneMethodUnchanged()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassRemoved()"},{"p":"japicmp.compat","c":"SerializationChangesTest","l":"testClassSerialVersionUidChanged()"},{"p":"japicmp.compat","c":"SerializationChangesTest","l":"testClassSerialVersionUidRemovedAndNotMatchesNewDefault()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassTypeChanged()"},{"p":"japicmp.cmp","c":"GenericTemplateTest","l":"testClassWithOneGenericTemplateParametersAndTwoInterfacesModified()"},{"p":"japicmp.cmp","c":"GenericTemplateTest","l":"testClassWithOneGenericTemplateParametersGenericsModified()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testClassWithParameter()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testClassWithThreeParametersAndDoubleColon()"},{"p":"japicmp.cmp","c":"GenericTemplateTest","l":"testClassWithTwoGenericTemplateParametersModified()"},{"p":"japicmp.cmp","c":"GenericTemplateTest","l":"testClassWithTwoGenericTemplateParametersNew()"},{"p":"japicmp.cmp","c":"GenericTemplateTest","l":"testClassWithTwoGenericTemplateParametersRemoved()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassWithTwoMethodsOneAddedWithAdditionalParameter()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassWithTwoMethodsWithSameSignatureButDifferentReturnTypeOneModifiedMethod()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassWithTwoMethodsWithSameSignatureButDifferentReturnTypeOneNewMethod()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassWithTwoMethodsWithSameSignatureButDifferentReturnTypeOneRemovedMethod()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassWithTwoMethodsWithSameSignatureButDifferentReturnTypeTwoNewMethods()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassWithTwoMethodsWithSameSignatureButDifferentReturnTypeTwoRemovedMethods()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassWithTwoMethodsWithSameSignatureButDifferentReturnTypeUnchanged()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testClassWithTwoParameters()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testCoberturaMethodWithWildcards()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testConstructorLessAccessible()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testConstructorNoLongerThrowsNewCheckedException()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testConstructorNoParamLongUnsuccessful()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testConstructorNoParamsSuccessful()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testConstructorOneParamLongSuccessful()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testConstructorOneParamLongUnsuccessful()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testConstructorRemoved()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testConstructorThrowsNewCheckedException()"},{"p":"japicmp.cmp","c":"GenericsTest","l":"testConstructorWithGenericArgChanged()"},{"p":"japicmp.util","c":"VersionTest","l":"testEmbeddedSemanticVersionFromString()"},{"p":"japicmp.util","c":"StringArrayEnumerationTest","l":"testEmptyArray()"},{"p":"japicmp.compat","c":"SerializationChangesTest","l":"testEnumElementAdded()"},{"p":"japicmp.compat","c":"SerializationChangesTest","l":"testEnumElementRemoved()"},{"p":"japicmp.compat","c":"SerializationChangesTest","l":"testEnumUnchanged()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testExcludeInnerPackageWhenOuterPackageIsIncluded()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldLessAccessible()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldLessAccessibleThanInSuperclass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldMovedToSuperClassOfSuperClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldNoLongerStatic()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldNoLongerTransient()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldNoLongerVolatile()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldNowFinal()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldNowStatic()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldNowTransient()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldNowVolatile()"},{"p":"japicmp.filter","c":"FieldFilterTest","l":"testFieldOfInnerClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldRemoved()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldRemovedInSuperclass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldRemovedInSuperclassButOverriddenInSubclass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldStaticOverridesStatic()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldTypeChanged()"},{"p":"japicmp.output.stdout","c":"StdoutOutputGeneratorTest","l":"testFieldWithGenericTypes()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testFourClassesFromTwoPackagesExcludeOnePerPackage()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testGenericObjectWithArrays()"},{"p":"japicmp","c":"JApiCmpTest","l":"testHelp()"},{"p":"japicmp","c":"JApiCmpTest","l":"testHelpLongOption()"},{"p":"japicmp.output.html","c":"HtmlOutputGeneratorTest","l":"testHtmlReport()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testIgnoreMissingNewVersion()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testIgnoreMissingOldVersion()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testIncludeOuterPackageWhenInnerPackageIsExcludedExclusive()"},{"p":"japicmp.filter","c":"ClassFilterTest","l":"testInnerClass()"},{"p":"japicmp.filter","c":"ClassFilterTest","l":"testInnerClassAsFilter()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testInterfaceAbstractMethodChangesToDefaultMethod()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testInterfaceAddDefaultMethod()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testInterfaceAdded()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testInterfaceDefaultMethodOverriddenInSubInterface()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testInterfaceHierarchyHasOneLessLevel()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testInterfaceHierarchyHasOneMoreLevel()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testInterfaceImplementedBySuperclass()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testInterfaceMarkerAdded()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testInterfaceMovedToAbstractClass()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testInterfaceMovedToSubclass()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testInterfaceMovedToSuperclass()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testMatchAgainstDefaultPackage()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testMatchAgainstDefaultPackageExclusive()"},{"p":"japicmp.filter","c":"AnnotationClassFilterTest","l":"testMatchesAnnotation()"},{"p":"japicmp.filter","c":"AnnotationClassFilterTest","l":"testMatchesNotAnnotation()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMemberVariableMovedToSuperclass()"},{"p":"japicmp.cmp","c":"ClassesComparatorTest","l":"testMethodAdded()"},{"p":"japicmp.cmp","c":"ExceptionsTest","l":"testMethodAddedThrowsExceptions()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodAddedToInterface()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testMethodAddedToInterfaceAndInSuperInterface()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testMethodAddedToInterfaceDefinedInSuperInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodAddedToNewInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodAddedToPublicClass()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testMethodExcluded()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testMethodIncluded()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodLessAccessiblePublicToPrivate()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodLessAccessibleThanInSuperclass()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testMethodMissingParenthesis()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodMovedFromOneAbstractClassToAnother()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodMovedFromOneInterfaceToAnother()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodMovedToNewSuperClassInTheMiddle()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodMovedToSuperClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodMovedToSuperClassOfSuperClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodNoLongerStatic()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodNoLongerThrowsNewCheckedException()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodNoLongerVarargs()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testMethodNoParamsSuccessful()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodNotStaticChangesToStaticInInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodNowAbstract()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodNowFinal()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodNowStatic()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodNowVarargs()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testMethodOfInnerClass()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testMethodOneParamsStringSuccessful()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testMethodPulledUp()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodRemainsEffectivelyFinal()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodRemoved()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodRemovedInSuperclass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodRemovedInSuperclassButOverriddenInSubclass()"},{"p":"japicmp.cmp","c":"ExceptionsTest","l":"testMethodRemovedThrowsExceptions()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodReturnTypeChanges()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodReturnTypeChangesAndVisibilityIncreasesPrivateToProtected()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodReturnTypeChangesAndVisibilityIncreasesProtectedToPublic()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodStaticAddedToInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodStaticChangesToNotStaticInInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodStaticOverridesNonStatic()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodThrowsNewCheckedException()"},{"p":"japicmp.cmp","c":"ExceptionsTest","l":"testMethodThrowsNewExceptions()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodThrowsNewRuntimeException()"},{"p":"japicmp.cmp","c":"ExceptionsTest","l":"testMethodThrowsRemovedExceptions()"},{"p":"japicmp.cmp","c":"ExceptionsTest","l":"testMethodThrowsUnchangedExceptions()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testMethodTwoParamsIntLongSuccessful()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodWithByteArrayAndArrayOfByteArrays()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testMethodWithDollarSignInName()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithDoubleArray()"},{"p":"japicmp.cmp","c":"GenericsTest","l":"testMethodWithGenericArgChanged()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithGenericExtends()"},{"p":"japicmp.cmp","c":"GenericsTest","l":"testMethodWithGenericReturnTypeChanged()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodWithGenericsChanged()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithGenericsOfClass()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithGenericSuper()"},{"p":"japicmp.cmp","c":"GenericsTest","l":"testMethodWithGenericTemplateClassChanged()"},{"p":"japicmp.cmp","c":"GenericsTest","l":"testMethodWithGenericTemplateMethodChanged()"},{"p":"japicmp.cmp","c":"GenericsTest","l":"testMethodWithGenericTemplateUnChanged()"},{"p":"japicmp.output.stdout","c":"StdoutOutputGeneratorTest","l":"testMethodWithGenericTypes()"},{"p":"japicmp.output.stdout","c":"StdoutOutputGeneratorTest","l":"testMethodWithGenericTypesRemoved()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithGenericUnbounded()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithMethodParameters()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithMethodTemplate()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithMethodTemplates()"},{"p":"japicmp.cmp","c":"GenericTemplateTest","l":"testMethodWithOneGenericTemplateParametersAndTwoInterfacesModified()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithTemplateAndOneInterface()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testMissingNewVersion()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testMissingOldVersion()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMoveMethodToSuperclassAndMakeFinal()"},{"p":"japicmp.util","c":"VersionTest","l":"testMultidigitSemanticVersionFromString()"},{"p":"japicmp.cmp","c":"SuperclassTest","l":"testNewClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testNewClassExtendsExistingAbstractClass()"},{"p":"japicmp.cmp","c":"GenericTemplateTest","l":"testNewClassNotDetectedAsIncompatibility()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testNewInterfaceWithClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testNewInterfaceWithInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testNewMethodInSuperInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testNewMethodThrowsCheckedException()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testNewMethodWithGenerics()"},{"p":"japicmp.cmp","c":"AnnotationsTest","l":"testNoAnnotationsClass()"},{"p":"japicmp.cmp","c":"AnnotationsTest","l":"testNoAnnotationsField()"},{"p":"japicmp.cmp","c":"AnnotationsTest","l":"testNoAnnotationsMethod()"},{"p":"japicmp.output.stdout","c":"StdoutOutputGeneratorTest","l":"testNoChanges()"},{"p":"japicmp.output.semver","c":"SemverOutTest","l":"testNoChangesAtAll()"},{"p":"japicmp.output.stdout","c":"StdoutOutputGeneratorTest","l":"testNoClassFileFormatVersionIfInterfaceRemoved()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testNoParameter()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testNoParamsReturnsI()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testNoParamsReturnsI()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testNoParamsReturnsReference()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testNoParamsReturnsReference()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testNoParamsReturnsVoid()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testNoParamsReturnsVoid()"},{"p":"japicmp.cmp","c":"IgnoreMissingClassesTest","l":"testNotFoundExceptionContainsClassName()"},{"p":"japicmp.cmp","c":"ShowSyntheticTest","l":"testNotShowSynthetic()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testOneClassExcluded()"},{"p":"japicmp.filter","c":"ClassFilterTest","l":"testOneClassMatches()"},{"p":"japicmp.filter","c":"ClassFilterTest","l":"testOneClassMatchesNot()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testOneClassNoExclude()"},{"p":"japicmp.util","c":"StringArrayEnumerationTest","l":"testOneElementArray()"},{"p":"japicmp.filter","c":"FieldFilterTest","l":"testOneFieldMatches()"},{"p":"japicmp.filter","c":"FieldFilterTest","l":"testOneFieldMatchesNot()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testOneMapWithGenerics()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testOneMapWithGenericsWithInnerGenerics()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testOneMapWithGenericsWithInnerGenericsAndObjectWithGenerics()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testOneReferenceOnePrimParamsReturnsVoid()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testOneReferenceOnePrimParamsReturnsVoid()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testOneReferenceParamsReturnsOneReference()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testOneReferenceParamsReturnsOneReference()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testOneReferenceParamsReturnsVoid()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testOneReferenceParamsReturnsVoid()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testOneVersionMajorChange()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testOneVersionMinorChange()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testOneVersionNoChange()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testOneVersionPatchChange()"},{"p":"japicmp.cmp","c":"JarArchiveComparatorTest","l":"testOverrideCompatibilityChangeClassRemoved()"},{"p":"japicmp.cmp","c":"JarArchiveComparatorTest","l":"testOverrideCompatibilityChangeMethodRemoved()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testPackageExcludedMethodIncluded()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testPackageIncludedMethodExcluded()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testPackagePrivateClassChangesToPublicClassWithMethodReturnTypeChangeIssue365()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testProtectedConstructorLessAccessibleWithFinalClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testPublicConstructorLessAccessibleWithFinalClass()"},{"p":"japicmp.cmp","c":"SuperclassTest","l":"testRemovedClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testRemovedMethodWithGenerics()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testRemoveMethodInSubClassAndSuperClass()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testSemVerMajjorChangeMissingOldVersion()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testSemVerMajorChange()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testSemVerMajorChangeMissingNewVersion()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testSemVerMinorChange()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testSemVerMinorChangeMissingNewVersion()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testSemVerMinorChangeMissingOldVersion()"},{"p":"japicmp.cmp","c":"ShowSyntheticTest","l":"testShowSynthetic()"},{"p":"japicmp.util","c":"VersionTest","l":"testSingleDigitSemanticVersionFromString()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testSuperclassAdded()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testSuperclassChanged()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testSuperclassRemoved()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testSuperclassUnchangedObject()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testTwoClassesExcludeClassThatDoesNotExist()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testTwoClassesExcludePackageAndClass()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testTwoClassesIncludePackageButExcludeClass()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testTwoClassesOneExclude()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testTwoClassesTwoExcludeWithWildcard()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testTwoClassesTwoExcludeWithWildcardOneLetter()"},{"p":"japicmp.util","c":"StringArrayEnumerationTest","l":"testTwoElementsArray()"},{"p":"japicmp.filter","c":"FieldFilterTest","l":"testTwoHashSigns()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testTwoReferenceParamsReturnsReference()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testTwoReferenceParamsReturnsReference()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testTwoVersionsMajorChange()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testTwoVersionsMajorChangeNotAllVersionsTheSame()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testTwoVersionsMajorChangeNotAllVersionsTheSameAndDifferentNumberofArchives()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testTwoVersionsMinorChange()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testTwoVersionsNoChange()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testTwoVersionsPatchChange()"},{"p":"japicmp.config","c":"OptionsTest","l":"testVerify()"},{"p":"japicmp.config","c":"OptionsTest","l":"testVerifyCssFileWithoutHtmlOutput()"},{"p":"japicmp.config","c":"OptionsTest","l":"testVerifyNotExistingHtmlStylesheet()"},{"p":"japicmp.output.stdout","c":"StdoutOutputGeneratorTest","l":"testWarningWhenIgnoreMissingClasses()"},{"p":"japicmp","c":"JApiCmpTest","l":"testWithNewArchiveOptionButWithInvalidArgument()"},{"p":"japicmp","c":"JApiCmpTest","l":"testWithNewArchiveOptionButWithoutArgument()"},{"p":"japicmp","c":"JApiCmpTest","l":"testWithOldArchiveOptionAndNewArchiveOption()"},{"p":"japicmp","c":"JApiCmpTest","l":"testWithOldArchiveOptionButWithInvalidArgument()"},{"p":"japicmp","c":"JApiCmpTest","l":"testWithOldArchiveOptionButWithoutArgument()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithOnlyWildcard()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithOnlyWildcardExclusive()"},{"p":"japicmp","c":"JApiCmpTest","l":"testWithoutArguments()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithoutWildcard()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithoutWildcardExclusive()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithWildcardAfterDot()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithWildcardAfterDotExclusive()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithWildcardAndFollowingPackagename()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithWildcardAndFollowingPackagenameExclusive()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithWildcardWithoutDot()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithWildcardWithoutDotExclusive()"},{"p":"japicmp.output.xml","c":"XmlOutputGeneratorTest","l":"testXmlReport()"},{"p":"japicmp.util","c":"Helper","l":"toJApiCmpArchive(File)","u":"toJApiCmpArchive(java.io.File)"},{"p":"japicmp.util","c":"Helper","l":"toJApiCmpArchive(File, String)","u":"toJApiCmpArchive(java.io.File,java.lang.String)"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"transientAccess()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"type(CtClass)","u":"type(javassist.CtClass)"},{"p":"japicmp.util","c":"CtElement","l":"value"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"VersionChangeTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"VersionTest","l":"VersionTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"volatileAccess()"},{"p":"japicmp.util","c":"CtClassBuilder","l":"withAnnotation(String, CtElement...)","u":"withAnnotation(java.lang.String,japicmp.util.CtElement...)"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"withAnnotation(String, CtElement...)","u":"withAnnotation(java.lang.String,japicmp.util.CtElement...)"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"withAnnotation(String, CtElement...)","u":"withAnnotation(java.lang.String,japicmp.util.CtElement...)"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"withConstantValue(Object)","u":"withConstantValue(java.lang.Object)"},{"p":"japicmp.util","c":"CtClassBuilder","l":"withSuperclass(CtClass)","u":"withSuperclass(javassist.CtClass)"},{"p":"japicmp.util","c":"CtInterfaceBuilder","l":"withSuperInterface(CtClass)","u":"withSuperInterface(javassist.CtClass)"},{"p":"japicmp.output.xml","c":"XmlOutputGeneratorTest","l":"XmlOutputGeneratorTest()","u":"%3Cinit%3E()"}];updateSearchResults(); \ No newline at end of file +memberSearchIndex = [{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"abstractMethod()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"abstractMethod()"},{"p":"japicmp.util","c":"CtClassBuilder","l":"abstractModifier()"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"addToClass(CtClass)","u":"addToClass(javassist.CtClass)"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"addToClass(CtClass)","u":"addToClass(javassist.CtClass)"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"addToClass(CtClass)","u":"addToClass(javassist.CtClass)"},{"p":"japicmp.util","c":"CtAnnotationBuilder","l":"addToClassPool(ClassPool)","u":"addToClassPool(javassist.ClassPool)"},{"p":"japicmp.util","c":"CtClassBuilder","l":"addToClassPool(ClassPool)","u":"addToClassPool(javassist.ClassPool)"},{"p":"japicmp.util","c":"CtInterfaceBuilder","l":"addToClassPool(ClassPool)","u":"addToClassPool(javassist.ClassPool)"},{"p":"japicmp.filter","c":"AnnotationClassFilterTest","l":"AnnotationClassFilterTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"AnnotationsTest","l":"AnnotationsTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"Helper","l":"assertThatExceptionIsThrown(Helper.SimpleExceptionVerifier, Class)","u":"assertThatExceptionIsThrown(japicmp.util.Helper.SimpleExceptionVerifier,java.lang.Class)"},{"p":"japicmp","c":"JApiCmpTest","l":"before()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"before()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"before()"},{"p":"japicmp.config","c":"OptionsTest","l":"beforeClass()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"BehaviorFilterTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"body(String)","u":"body(java.lang.String)"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"body(String)","u":"body(java.lang.String)"},{"p":"japicmp.cmp","c":"ClassesComparatorTest","l":"ClassesComparatorTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"ClassesHelper","l":"ClassesHelper()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"ClassesHelper","l":"ClassesHelper()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"ClassesTest","l":"ClassesTest()","u":"%3Cinit%3E()"},{"p":"japicmp.filter","c":"ClassFilterTest","l":"ClassFilterTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"ClassesHelper","l":"compareClasses(JarArchiveComparatorOptions, ClassesHelper.ClassesGenerator)","u":"compareClasses(japicmp.cmp.JarArchiveComparatorOptions,japicmp.cmp.ClassesHelper.ClassesGenerator)"},{"p":"japicmp.util","c":"ClassesHelper","l":"compareClasses(JarArchiveComparatorOptions, ClassesHelper.ClassesGenerator)","u":"compareClasses(japicmp.cmp.JarArchiveComparatorOptions,japicmp.util.ClassesHelper.ClassesGenerator)"},{"p":"japicmp.cmp","c":"ClassesHelper.CompareClassesResult","l":"CompareClassesResult(List, JarArchiveComparator)","u":"%3Cinit%3E(java.util.List,japicmp.cmp.JarArchiveComparator)"},{"p":"japicmp.cmp","c":"ClassesHelper","l":"compareClassesWithResult(JarArchiveComparatorOptions, ClassesHelper.ClassesGenerator)","u":"compareClassesWithResult(japicmp.cmp.JarArchiveComparatorOptions,japicmp.cmp.ClassesHelper.ClassesGenerator)"},{"p":"japicmp.util","c":"Helper","l":"compareTestV1WithTestV2(AccessModifier)","u":"compareTestV1WithTestV2(japicmp.model.AccessModifier)"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"CompatibilityChangesTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtAnnotationBuilder","l":"create()"},{"p":"japicmp.util","c":"CtClassBuilder","l":"create()"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"create()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"create()"},{"p":"japicmp.util","c":"CtInterfaceBuilder","l":"create()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"create()"},{"p":"japicmp.util","c":"JarUtil","l":"createJarFile(Path, CtClass...)","u":"createJarFile(java.nio.file.Path,javassist.CtClass...)"},{"p":"japicmp.cmp","c":"ClassesHelper.ClassesGenerator","l":"createNewClasses(ClassPool)","u":"createNewClasses(javassist.ClassPool)"},{"p":"japicmp.util","c":"ClassesHelper.ClassesGenerator","l":"createNewClasses(ClassPool)","u":"createNewClasses(javassist.ClassPool)"},{"p":"japicmp.cmp","c":"ClassesHelper.ClassesGenerator","l":"createOldClasses(ClassPool)","u":"createOldClasses(javassist.ClassPool)"},{"p":"japicmp.util","c":"ClassesHelper.ClassesGenerator","l":"createOldClasses(ClassPool)","u":"createOldClasses(javassist.ClassPool)"},{"p":"japicmp.util","c":"CtAnnotationBuilder","l":"CtAnnotationBuilder()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"CtBehaviorBuilder()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtClassBuilder","l":"CtClassBuilder()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"CtConstructorBuilder()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, boolean)","u":"%3Cinit%3E(java.lang.String,boolean)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, byte)","u":"%3Cinit%3E(java.lang.String,byte)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, char)","u":"%3Cinit%3E(java.lang.String,char)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, Class)","u":"%3Cinit%3E(java.lang.String,java.lang.Class)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, double)","u":"%3Cinit%3E(java.lang.String,double)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, float)","u":"%3Cinit%3E(java.lang.String,float)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, int)","u":"%3Cinit%3E(java.lang.String,int)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, long)","u":"%3Cinit%3E(java.lang.String,long)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, short)","u":"%3Cinit%3E(java.lang.String,short)"},{"p":"japicmp.util","c":"CtElement","l":"CtElement(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"CtFieldBuilder()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtInterfaceBuilder","l":"CtInterfaceBuilder()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"CtMethodBuilder()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtClassBuilder","l":"DEFAULT_CLASS_NAME"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"DEFAULT_FIELD_NAME"},{"p":"japicmp.util","c":"CtClassBuilder","l":"enumModifier()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"exceptions"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"exceptions(CtClass[])","u":"exceptions(javassist.CtClass[])"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"exceptions(CtClass[])","u":"exceptions(javassist.CtClass[])"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"exceptions(CtClass[])","u":"exceptions(javassist.CtClass[])"},{"p":"japicmp.cmp","c":"ExceptionsTest","l":"ExceptionsTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"Helper.SimpleExceptionVerifier","l":"execute()"},{"p":"japicmp.filter","c":"FieldFilterTest","l":"FieldFilterTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"FilterTest","l":"FilterTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"finalAccess()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"finalMethod()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"finalMethod()"},{"p":"japicmp.util","c":"CtClassBuilder","l":"finalModifier()"},{"p":"japicmp.util","c":"Helper","l":"generateHtmlOutput(List, String, String, boolean, AccessModifier)","u":"generateHtmlOutput(java.util.List,java.lang.String,java.lang.String,boolean,japicmp.model.AccessModifier)"},{"p":"japicmp.cmp","c":"GenericsTest","l":"GenericsTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"GenericTemplateTest","l":"GenericTemplateTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"Helper","l":"getArchive(String)","u":"getArchive(java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"getArchive(String, String)","u":"getArchive(java.lang.String,java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"getJApiAnnotation(List, String)","u":"getJApiAnnotation(java.util.List,java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"getJApiAnnotationElement(List, String)","u":"getJApiAnnotationElement(java.util.List,java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"getJApiClass(List, String)","u":"getJApiClass(java.util.List,java.lang.String)"},{"p":"japicmp.cmp","c":"ClassesHelper.CompareClassesResult","l":"getjApiClasses()"},{"p":"japicmp.util","c":"Helper","l":"getJApiConstructor(List, List)","u":"getJApiConstructor(java.util.List,java.util.List)"},{"p":"japicmp.util","c":"Helper","l":"getJApiField(List, String)","u":"getJApiField(java.util.List,java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"getJApiImplementedInterface(List, String)","u":"getJApiImplementedInterface(java.util.List,java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"getJApiMethod(List, String)","u":"getJApiMethod(java.util.List,java.lang.String)"},{"p":"japicmp.cmp","c":"ClassesHelper.CompareClassesResult","l":"getJarArchiveComparator()"},{"p":"japicmp.util","c":"Helper","l":"hasJApiFieldWithName(String)","u":"hasJApiFieldWithName(java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"hasJApiMethodWithName(String)","u":"hasJApiMethodWithName(java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"hasNoJApiFieldWithName(String)","u":"hasNoJApiFieldWithName(java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"hasNoJApiMethodWithName(String)","u":"hasNoJApiMethodWithName(java.lang.String)"},{"p":"japicmp.util","c":"Helper","l":"Helper()","u":"%3Cinit%3E()"},{"p":"japicmp.output.html","c":"HtmlOutputGeneratorTest","l":"HtmlOutputGeneratorTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"IgnoreMissingClassesTest","l":"IgnoreMissingClassesTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtClassBuilder","l":"implementsInterface(CtClass)","u":"implementsInterface(javassist.CtClass)"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"IncompatibleErrorOutputTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"InterfacesTest()","u":"%3Cinit%3E()"},{"p":"japicmp","c":"JApiCmpTest","l":"JApiCmpTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"JarArchiveComparatorTest","l":"JarArchiveComparatorTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"JarUtil","l":"JarUtil()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"MethodDescriptorParserTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"MethodsTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"modifier"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"modifier(int)"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"modifier(int)"},{"p":"japicmp.util","c":"ModifierHelperTest","l":"ModifierHelperTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtElement","l":"name"},{"p":"japicmp.util","c":"CtAnnotationBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"japicmp.util","c":"CtClassBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"japicmp.util","c":"CtInterfaceBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"japicmp.util","c":"CtClassBuilder","l":"notPublicModifier()"},{"p":"japicmp.config","c":"OptionsTest","l":"OptionsTest()","u":"%3Cinit%3E()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"PackageFilterTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"packageProtectedAccess()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"parameter(CtClass)","u":"parameter(javassist.CtClass)"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"parameter(CtClass)","u":"parameter(javassist.CtClass)"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"parameter(CtClass)","u":"parameter(javassist.CtClass)"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"parameters"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"parameters(CtClass[])","u":"parameters(javassist.CtClass[])"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"parameters(CtClass[])","u":"parameters(javassist.CtClass[])"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"parameters(CtClass[])","u":"parameters(javassist.CtClass[])"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"privateAccess()"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"privateAccess()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"privateAccess()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"privateAccess()"},{"p":"japicmp.util","c":"ModifierHelperTest","l":"privateToPrivate()"},{"p":"japicmp.util","c":"ModifierHelperTest","l":"privateToProtected()"},{"p":"japicmp.util","c":"ModifierHelperTest","l":"privateToPublic()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"protectedAccess()"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"protectedAccess()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"protectedAccess()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"protectedAccess()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"publicAccess()"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"publicAccess()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"publicAccess()"},{"p":"japicmp.util","c":"ModifierHelperTest","l":"publicToPrivate()"},{"p":"japicmp.util","c":"ModifierHelperTest","l":"publicToProtected()"},{"p":"japicmp.util","c":"ModifierHelperTest","l":"publicToPublic()"},{"p":"japicmp.util","c":"Helper","l":"replaceLastDotWith$(String)","u":"replaceLastDotWith$(java.lang.String)"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"returnType(CtClass)","u":"returnType(javassist.CtClass)"},{"p":"japicmp.output.semver","c":"SemverOutTest","l":"SemverOutTest()","u":"%3Cinit%3E()"},{"p":"japicmp.compat","c":"SerializationChangesTest","l":"SerializationChangesTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"ShowSyntheticTest","l":"ShowSyntheticTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"signature"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"signature(String)","u":"signature(java.lang.String)"},{"p":"japicmp.util","c":"CtConstructorBuilder","l":"signature(String)","u":"signature(java.lang.String)"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"signature(String)","u":"signature(java.lang.String)"},{"p":"japicmp.util","c":"SignatureParserTest","l":"SignatureParserTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtBehaviorBuilder","l":"staticAccess()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"staticAccess()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"staticAccess()"},{"p":"japicmp.output.stdout","c":"StdoutOutputGeneratorTest","l":"StdoutOutputGeneratorTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"StringArrayEnumerationTest","l":"StringArrayEnumerationTest()","u":"%3Cinit%3E()"},{"p":"japicmp.cmp","c":"SuperclassTest","l":"SuperclassTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtClassBuilder","l":"syntheticModifier()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"syntheticModifier()"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"syntheticModifier()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAbstractClassNowExtendsAnotherAbstractClass()"},{"p":"japicmp.cmp","c":"ClassesTest","l":"testAbstractMethodAdded()"},{"p":"japicmp.cmp","c":"ClassesTest","l":"testAbstractMethodAddedThatOverridesExistingAbstractMethod()"},{"p":"japicmp.cmp","c":"ClassesTest","l":"testAbstractMethodAddedThatOverridesNewAbstractMethod()"},{"p":"japicmp.cmp","c":"ClassesTest","l":"testAbstractMethodAddedViaNewSuperclass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAbstractMethodMovedToInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAddAbstractMethodToInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAddDefaultMethodToInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationAddedToClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationAddedToField()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationAddedToMethod()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testAnnotationClassExcluded()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testAnnotationClassIncluded()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testAnnotationClassIncludedChangesDetected()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testAnnotationFieldExcluded()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testAnnotationFieldIncluded()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testAnnotationMethodExcluded()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testAnnotationMethodIncluded()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationOnClassModified()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationOnFieldModified()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationOnMethodModified()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationRemovedFromClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationRemovedFromField()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotationRemovedFromMethod()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotcationDeprecatedAddedToClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotcationDeprecatedAddedToMethod()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testAnnotcationDeprecatedRemovedFromClass()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testArrayPrimParamReturnsVoid()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testArrayPrimParamReturnsVoid()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testArrayRefParamReturnsVoid()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testArrayRefParamReturnsVoid()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testArrayTwoPrimParamsReturnsVoid()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testArrayTwoPrimParamsReturnsVoid()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfGenericReturnTypeModifiedFalse()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfGenericReturnTypeModifiedTrue()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfNecessaryFieldTypeChangedCausedByExclusionFalse()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfNecessaryFieldTypeChangedCausedByExclusionTrue()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfNecessaryInterfaceRemovedCausedByExclusionFalse()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfNecessaryInterfaceRemovedCausedByExclusionTrue()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfNecessaryMethodReturnTypeChangedCausedByExclusionFalse()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfNecessaryMethodReturnTypeChangedCausedByExclusionTrue()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfNecessarySuperclassChangedCausedByExclusionFalse()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testBreakBuildIfNecessarySuperclassTypeChangedCausedByExclusionTrue()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassBecomesInterfacesAndInterfaceClass()"},{"p":"japicmp.compat","c":"SerializationChangesTest","l":"testClassCompatible()"},{"p":"japicmp.compat","c":"SerializationChangesTest","l":"testClassCompatibleWithSerialVersionUid()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassExtendsUnaryOperator()"},{"p":"japicmp.cmp","c":"SuperclassTest","l":"testClassHasNoSuperclass()"},{"p":"japicmp.cmp","c":"SuperclassTest","l":"testClassHierarchyHasOneLessLevel()"},{"p":"japicmp.cmp","c":"SuperclassTest","l":"testClassHierarchyHasOneMoreLevel()"},{"p":"japicmp.cmp","c":"SuperclassTest","l":"testClassHierarchyHasOneMoreLevelWithExistingClasses()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testClassImplementsInterface()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testClassIncludedButMethodExcluded()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassLessAccessiblePublicToPrivate()"},{"p":"japicmp.cmp","c":"IgnoreMissingClassesTest","l":"testClassMissingWithIgnoreAllMissingClasses()"},{"p":"japicmp.cmp","c":"IgnoreMissingClassesTest","l":"testClassMissingWithIgnoreByRegexThatDoesNotMatch()"},{"p":"japicmp.cmp","c":"IgnoreMissingClassesTest","l":"testClassMissingWithIgnoreClassByRegex()"},{"p":"japicmp.cmp","c":"IgnoreMissingClassesTest","l":"testClassMissingWithoutIgnore()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testClassNoLongerImplementsInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassNoLongerPublic()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassNowAbstract()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassNowCheckedException()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassNowFinal()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassOneMethodAccessModifierChanged()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassOneMethodAdded()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassOneMethodRemoved()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassOneMethodReturnTypeChanged()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassOneMethodUnchanged()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassRemoved()"},{"p":"japicmp.compat","c":"SerializationChangesTest","l":"testClassSerialVersionUidChanged()"},{"p":"japicmp.compat","c":"SerializationChangesTest","l":"testClassSerialVersionUidRemovedAndNotMatchesNewDefault()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testClassTypeChanged()"},{"p":"japicmp.cmp","c":"GenericTemplateTest","l":"testClassWithOneGenericTemplateParametersAndTwoInterfacesModified()"},{"p":"japicmp.cmp","c":"GenericTemplateTest","l":"testClassWithOneGenericTemplateParametersGenericsModified()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testClassWithParameter()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testClassWithThreeParametersAndDoubleColon()"},{"p":"japicmp.cmp","c":"GenericTemplateTest","l":"testClassWithTwoGenericTemplateParametersModified()"},{"p":"japicmp.cmp","c":"GenericTemplateTest","l":"testClassWithTwoGenericTemplateParametersNew()"},{"p":"japicmp.cmp","c":"GenericTemplateTest","l":"testClassWithTwoGenericTemplateParametersRemoved()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassWithTwoMethodsOneAddedWithAdditionalParameter()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassWithTwoMethodsWithSameSignatureButDifferentReturnTypeOneModifiedMethod()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassWithTwoMethodsWithSameSignatureButDifferentReturnTypeOneNewMethod()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassWithTwoMethodsWithSameSignatureButDifferentReturnTypeOneRemovedMethod()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassWithTwoMethodsWithSameSignatureButDifferentReturnTypeTwoNewMethods()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassWithTwoMethodsWithSameSignatureButDifferentReturnTypeTwoRemovedMethods()"},{"p":"japicmp.cmp","c":"MethodsTest","l":"testClassWithTwoMethodsWithSameSignatureButDifferentReturnTypeUnchanged()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testClassWithTwoParameters()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testCoberturaMethodWithWildcards()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testConstructorLessAccessible()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testConstructorNoLongerThrowsNewCheckedException()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testConstructorNoParamLongUnsuccessful()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testConstructorNoParamsSuccessful()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testConstructorOneParamLongSuccessful()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testConstructorOneParamLongUnsuccessful()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testConstructorRemoved()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testConstructorThrowsNewCheckedException()"},{"p":"japicmp.cmp","c":"GenericsTest","l":"testConstructorWithGenericArgChanged()"},{"p":"japicmp.util","c":"VersionTest","l":"testEmbeddedSemanticVersionFromString()"},{"p":"japicmp.util","c":"StringArrayEnumerationTest","l":"testEmptyArray()"},{"p":"japicmp.compat","c":"SerializationChangesTest","l":"testEnumElementAdded()"},{"p":"japicmp.compat","c":"SerializationChangesTest","l":"testEnumElementRemoved()"},{"p":"japicmp.compat","c":"SerializationChangesTest","l":"testEnumUnchanged()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testExcludeInnerPackageWhenOuterPackageIsIncluded()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldLessAccessible()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldLessAccessibleThanInSuperclass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldMovedToSuperClassOfSuperClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldNoLongerStatic()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldNoLongerTransient()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldNoLongerVolatile()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldNowFinal()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldNowStatic()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldNowTransient()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldNowVolatile()"},{"p":"japicmp.filter","c":"FieldFilterTest","l":"testFieldOfInnerClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldRemoved()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldRemovedInSuperclass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldRemovedInSuperclassButOverriddenInSubclass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldStaticOverridesStatic()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testFieldTypeChanged()"},{"p":"japicmp.output.stdout","c":"StdoutOutputGeneratorTest","l":"testFieldWithGenericTypes()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testFourClassesFromTwoPackagesExcludeOnePerPackage()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testGenericObjectWithArrays()"},{"p":"japicmp","c":"JApiCmpTest","l":"testHelp()"},{"p":"japicmp","c":"JApiCmpTest","l":"testHelpLongOption()"},{"p":"japicmp.output.html","c":"HtmlOutputGeneratorTest","l":"testHtmlReport()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testIgnoreMissingNewVersion()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testIgnoreMissingOldVersion()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testIncludeOuterPackageWhenInnerPackageIsExcludedExclusive()"},{"p":"japicmp.filter","c":"ClassFilterTest","l":"testInnerClass()"},{"p":"japicmp.filter","c":"ClassFilterTest","l":"testInnerClassAsFilter()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testInterfaceAbstractMethodChangesToDefaultMethod()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testInterfaceAddDefaultMethod()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testInterfaceAdded()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testInterfaceDefaultMethodOverriddenInSubInterface()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testInterfaceHierarchyHasOneLessLevel()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testInterfaceHierarchyHasOneMoreLevel()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testInterfaceImplementedBySuperclass()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testInterfaceMarkerAdded()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testInterfaceMovedToAbstractClass()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testInterfaceMovedToSubclass()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testInterfaceMovedToSuperclass()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testMatchAgainstDefaultPackage()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testMatchAgainstDefaultPackageExclusive()"},{"p":"japicmp.filter","c":"AnnotationClassFilterTest","l":"testMatchesAnnotation()"},{"p":"japicmp.filter","c":"AnnotationClassFilterTest","l":"testMatchesNotAnnotation()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMemberVariableMovedToSuperclass()"},{"p":"japicmp.cmp","c":"ClassesComparatorTest","l":"testMethodAdded()"},{"p":"japicmp.cmp","c":"ExceptionsTest","l":"testMethodAddedThrowsExceptions()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodAddedToInterface()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testMethodAddedToInterfaceAndInSuperInterface()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testMethodAddedToInterfaceDefinedInSuperInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodAddedToNewInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodAddedToPublicClass()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testMethodExcluded()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testMethodIncluded()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodLessAccessiblePublicToPrivate()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodLessAccessibleThanInSuperclass()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testMethodMissingParenthesis()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodMovedFromOneAbstractClassToAnother()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodMovedFromOneInterfaceToAnother()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodMovedToNewSuperClassInTheMiddle()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodMovedToSuperClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodMovedToSuperClassOfSuperClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodNoLongerStatic()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodNoLongerThrowsNewCheckedException()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodNoLongerVarargs()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testMethodNoParamsSuccessful()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodNotStaticChangesToStaticInInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodNowAbstract()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodNowFinal()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodNowStatic()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodNowVarargs()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testMethodOfInnerClass()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testMethodOneParamsStringSuccessful()"},{"p":"japicmp.cmp","c":"InterfacesTest","l":"testMethodPulledUp()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodRemainsEffectivelyFinal()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodRemoved()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodRemovedInSuperclass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodRemovedInSuperclassButOverriddenInSubclass()"},{"p":"japicmp.cmp","c":"ExceptionsTest","l":"testMethodRemovedThrowsExceptions()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodReturnTypeChanges()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodReturnTypeChangesAndVisibilityIncreasesPrivateToProtected()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodReturnTypeChangesAndVisibilityIncreasesProtectedToPublic()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodStaticAddedToInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodStaticChangesToNotStaticInInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodStaticOverridesNonStatic()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodThrowsNewCheckedException()"},{"p":"japicmp.cmp","c":"ExceptionsTest","l":"testMethodThrowsNewExceptions()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodThrowsNewRuntimeException()"},{"p":"japicmp.cmp","c":"ExceptionsTest","l":"testMethodThrowsRemovedExceptions()"},{"p":"japicmp.cmp","c":"ExceptionsTest","l":"testMethodThrowsUnchangedExceptions()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testMethodTwoParamsIntLongSuccessful()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodWithByteArrayAndArrayOfByteArrays()"},{"p":"japicmp.filter","c":"BehaviorFilterTest","l":"testMethodWithDollarSignInName()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithDoubleArray()"},{"p":"japicmp.cmp","c":"GenericsTest","l":"testMethodWithGenericArgChanged()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithGenericExtends()"},{"p":"japicmp.cmp","c":"GenericsTest","l":"testMethodWithGenericReturnTypeChanged()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMethodWithGenericsChanged()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithGenericsOfClass()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithGenericSuper()"},{"p":"japicmp.cmp","c":"GenericsTest","l":"testMethodWithGenericTemplateClassChanged()"},{"p":"japicmp.cmp","c":"GenericsTest","l":"testMethodWithGenericTemplateMethodChanged()"},{"p":"japicmp.cmp","c":"GenericsTest","l":"testMethodWithGenericTemplateUnChanged()"},{"p":"japicmp.output.stdout","c":"StdoutOutputGeneratorTest","l":"testMethodWithGenericTypes()"},{"p":"japicmp.output.stdout","c":"StdoutOutputGeneratorTest","l":"testMethodWithGenericTypesRemoved()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithGenericUnbounded()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithMethodParameters()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithMethodTemplate()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithMethodTemplates()"},{"p":"japicmp.cmp","c":"GenericTemplateTest","l":"testMethodWithOneGenericTemplateParametersAndTwoInterfacesModified()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testMethodWithTemplateAndOneInterface()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testMissingNewVersion()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testMissingOldVersion()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testMoveMethodToSuperclassAndMakeFinal()"},{"p":"japicmp.util","c":"VersionTest","l":"testMultidigitSemanticVersionFromString()"},{"p":"japicmp.cmp","c":"SuperclassTest","l":"testNewClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testNewClassExtendsExistingAbstractClass()"},{"p":"japicmp.cmp","c":"GenericTemplateTest","l":"testNewClassNotDetectedAsIncompatibility()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testNewInterfaceWithClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testNewInterfaceWithInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testNewMethodInSuperInterface()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testNewMethodThrowsCheckedException()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testNewMethodWithGenerics()"},{"p":"japicmp.cmp","c":"AnnotationsTest","l":"testNoAnnotationsClass()"},{"p":"japicmp.cmp","c":"AnnotationsTest","l":"testNoAnnotationsField()"},{"p":"japicmp.cmp","c":"AnnotationsTest","l":"testNoAnnotationsMethod()"},{"p":"japicmp.output.stdout","c":"StdoutOutputGeneratorTest","l":"testNoChanges()"},{"p":"japicmp.output.semver","c":"SemverOutTest","l":"testNoChangesAtAll()"},{"p":"japicmp.output.stdout","c":"StdoutOutputGeneratorTest","l":"testNoClassFileFormatVersionIfInterfaceRemoved()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testNoParameter()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testNoParamsReturnsI()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testNoParamsReturnsI()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testNoParamsReturnsReference()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testNoParamsReturnsReference()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testNoParamsReturnsVoid()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testNoParamsReturnsVoid()"},{"p":"japicmp.cmp","c":"IgnoreMissingClassesTest","l":"testNotFoundExceptionContainsClassName()"},{"p":"japicmp.cmp","c":"ShowSyntheticTest","l":"testNotShowSynthetic()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testOneClassExcluded()"},{"p":"japicmp.filter","c":"ClassFilterTest","l":"testOneClassMatches()"},{"p":"japicmp.filter","c":"ClassFilterTest","l":"testOneClassMatchesNot()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testOneClassNoExclude()"},{"p":"japicmp.util","c":"StringArrayEnumerationTest","l":"testOneElementArray()"},{"p":"japicmp.filter","c":"FieldFilterTest","l":"testOneFieldMatches()"},{"p":"japicmp.filter","c":"FieldFilterTest","l":"testOneFieldMatchesNot()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testOneMapWithGenerics()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testOneMapWithGenericsWithInnerGenerics()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testOneMapWithGenericsWithInnerGenericsAndObjectWithGenerics()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testOneReferenceOnePrimParamsReturnsVoid()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testOneReferenceOnePrimParamsReturnsVoid()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testOneReferenceParamsReturnsOneReference()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testOneReferenceParamsReturnsOneReference()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testOneReferenceParamsReturnsVoid()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testOneReferenceParamsReturnsVoid()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testOneVersionMajorChange()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testOneVersionMinorChange()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testOneVersionNoChange()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testOneVersionPatchChange()"},{"p":"japicmp.cmp","c":"JarArchiveComparatorTest","l":"testOverrideCompatibilityChangeClassRemoved()"},{"p":"japicmp.cmp","c":"JarArchiveComparatorTest","l":"testOverrideCompatibilityChangeMethodRemoved()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testPackageExcludedMethodIncluded()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testPackageIncludedMethodExcluded()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testPackagePrivateClassChangesToPublicClassWithMethodReturnTypeChangeIssue365()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testProtectedConstructorLessAccessibleWithFinalClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testPublicConstructorLessAccessibleWithFinalClass()"},{"p":"japicmp.cmp","c":"SuperclassTest","l":"testRemovedClass()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testRemovedMethodWithGenerics()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testRemoveMethodInSubClassAndSuperClass()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testSemVerMajjorChangeMissingOldVersion()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testSemVerMajorChange()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testSemVerMajorChangeMissingNewVersion()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testSemVerMinorChange()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testSemVerMinorChangeMissingNewVersion()"},{"p":"japicmp.output.incompatible","c":"IncompatibleErrorOutputTest","l":"testSemVerMinorChangeMissingOldVersion()"},{"p":"japicmp.cmp","c":"ShowSyntheticTest","l":"testShowSynthetic()"},{"p":"japicmp.util","c":"VersionTest","l":"testSingleDigitSemanticVersionFromString()"},{"p":"japicmp.output.html","c":"HtmlOutputGeneratorTest","l":"testSummaryOnly()"},{"p":"japicmp.output.stdout","c":"StdoutOutputGeneratorTest","l":"testSummaryOnly()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testSuperclassAdded()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testSuperclassChanged()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testSuperclassRemoved()"},{"p":"japicmp.compat","c":"CompatibilityChangesTest","l":"testSuperclassUnchangedObject()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testTwoClassesExcludeClassThatDoesNotExist()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testTwoClassesExcludePackageAndClass()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testTwoClassesIncludePackageButExcludeClass()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testTwoClassesOneExclude()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testTwoClassesTwoExcludeWithWildcard()"},{"p":"japicmp.cmp","c":"FilterTest","l":"testTwoClassesTwoExcludeWithWildcardOneLetter()"},{"p":"japicmp.util","c":"StringArrayEnumerationTest","l":"testTwoElementsArray()"},{"p":"japicmp.filter","c":"FieldFilterTest","l":"testTwoHashSigns()"},{"p":"japicmp.util","c":"MethodDescriptorParserTest","l":"testTwoReferenceParamsReturnsReference()"},{"p":"japicmp.util","c":"SignatureParserTest","l":"testTwoReferenceParamsReturnsReference()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testTwoVersionsMajorChange()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testTwoVersionsMajorChangeNotAllVersionsTheSame()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testTwoVersionsMajorChangeNotAllVersionsTheSameAndDifferentNumberofArchives()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testTwoVersionsMinorChange()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testTwoVersionsNoChange()"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"testTwoVersionsPatchChange()"},{"p":"japicmp.config","c":"OptionsTest","l":"testVerify()"},{"p":"japicmp.config","c":"OptionsTest","l":"testVerifyCssFileWithoutHtmlOutput()"},{"p":"japicmp.config","c":"OptionsTest","l":"testVerifyNotExistingHtmlStylesheet()"},{"p":"japicmp.output.stdout","c":"StdoutOutputGeneratorTest","l":"testWarningWhenIgnoreMissingClasses()"},{"p":"japicmp","c":"JApiCmpTest","l":"testWithNewArchiveOptionButWithInvalidArgument()"},{"p":"japicmp","c":"JApiCmpTest","l":"testWithNewArchiveOptionButWithoutArgument()"},{"p":"japicmp","c":"JApiCmpTest","l":"testWithOldArchiveOptionAndNewArchiveOption()"},{"p":"japicmp","c":"JApiCmpTest","l":"testWithOldArchiveOptionButWithInvalidArgument()"},{"p":"japicmp","c":"JApiCmpTest","l":"testWithOldArchiveOptionButWithoutArgument()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithOnlyWildcard()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithOnlyWildcardExclusive()"},{"p":"japicmp","c":"JApiCmpTest","l":"testWithoutArguments()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithoutWildcard()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithoutWildcardExclusive()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithWildcardAfterDot()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithWildcardAfterDotExclusive()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithWildcardAndFollowingPackagename()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithWildcardAndFollowingPackagenameExclusive()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithWildcardWithoutDot()"},{"p":"japicmp.filter","c":"PackageFilterTest","l":"testWithWildcardWithoutDotExclusive()"},{"p":"japicmp.output.xml","c":"XmlOutputGeneratorTest","l":"testXmlReport()"},{"p":"japicmp.util","c":"Helper","l":"toJApiCmpArchive(File)","u":"toJApiCmpArchive(java.io.File)"},{"p":"japicmp.util","c":"Helper","l":"toJApiCmpArchive(File, String)","u":"toJApiCmpArchive(java.io.File,java.lang.String)"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"transientAccess()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"type(CtClass)","u":"type(javassist.CtClass)"},{"p":"japicmp.util","c":"CtElement","l":"value"},{"p":"japicmp.versioning","c":"VersionChangeTest","l":"VersionChangeTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"VersionTest","l":"VersionTest()","u":"%3Cinit%3E()"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"volatileAccess()"},{"p":"japicmp.util","c":"CtClassBuilder","l":"withAnnotation(String, CtElement...)","u":"withAnnotation(java.lang.String,japicmp.util.CtElement...)"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"withAnnotation(String, CtElement...)","u":"withAnnotation(java.lang.String,japicmp.util.CtElement...)"},{"p":"japicmp.util","c":"CtMethodBuilder","l":"withAnnotation(String, CtElement...)","u":"withAnnotation(java.lang.String,japicmp.util.CtElement...)"},{"p":"japicmp.util","c":"CtFieldBuilder","l":"withConstantValue(Object)","u":"withConstantValue(java.lang.Object)"},{"p":"japicmp.util","c":"CtClassBuilder","l":"withSuperclass(CtClass)","u":"withSuperclass(javassist.CtClass)"},{"p":"japicmp.util","c":"CtInterfaceBuilder","l":"withSuperInterface(CtClass)","u":"withSuperInterface(javassist.CtClass)"},{"p":"japicmp.output.xml","c":"XmlOutputGeneratorTest","l":"XmlOutputGeneratorTest()","u":"%3Cinit%3E()"}];updateSearchResults(); \ No newline at end of file diff --git a/japicmp/testapidocs/overview-summary.html b/japicmp/testapidocs/overview-summary.html index 98bb96b5..a8a49136 100644 --- a/japicmp/testapidocs/overview-summary.html +++ b/japicmp/testapidocs/overview-summary.html @@ -1,11 +1,11 @@ - -japicmp 0.21.3-SNAPSHOT Test API + +japicmp 0.22.0 Test API - + diff --git a/japicmp/testapidocs/overview-tree.html b/japicmp/testapidocs/overview-tree.html index 399886db..de286b12 100644 --- a/japicmp/testapidocs/overview-tree.html +++ b/japicmp/testapidocs/overview-tree.html @@ -1,11 +1,11 @@ - -Class Hierarchy (japicmp 0.21.3-SNAPSHOT Test API) + +Class Hierarchy (japicmp 0.22.0 Test API) - + diff --git a/japicmp/testapidocs/script.js b/japicmp/testapidocs/script.js index 60cf6405..5f9e99ac 100644 --- a/japicmp/testapidocs/script.js +++ b/japicmp/testapidocs/script.js @@ -63,7 +63,7 @@ function show(tableId, selected, columns) { } function updateTabs(tableId, selected) { - document.querySelector('div#' + tableId +' .summary-table') + document.getElementById(tableId + '.tabpanel') .setAttribute('aria-labelledby', selected); document.querySelectorAll('button[id^="' + tableId + '"]') .forEach(function(tab, index) { diff --git a/licenses.html b/licenses.html index 6b0c1cd7..1bcc3235 100644 --- a/licenses.html +++ b/licenses.html @@ -1,13 +1,13 @@ - + japicmp-base – Project Licenses @@ -34,8 +34,8 @@
    diff --git a/modules.html b/modules.html index d9bca797..c5931acf 100644 --- a/modules.html +++ b/modules.html @@ -1,13 +1,13 @@ - + japicmp-base – Project Modules @@ -34,8 +34,8 @@
    diff --git a/plugin-management.html b/plugin-management.html index f69536ea..ff9bccc0 100644 --- a/plugin-management.html +++ b/plugin-management.html @@ -1,13 +1,13 @@ - + japicmp-base – Project Plugin Management @@ -34,8 +34,8 @@
    diff --git a/plugins.html b/plugins.html index aac85edd..471cbf91 100644 --- a/plugins.html +++ b/plugins.html @@ -1,13 +1,13 @@ - + japicmp-base – Project Plugins @@ -34,8 +34,8 @@
    diff --git a/project-info.html b/project-info.html index 233eb5f9..75388752 100644 --- a/project-info.html +++ b/project-info.html @@ -1,13 +1,13 @@ - + japicmp-base – Project Information @@ -34,8 +34,8 @@
    diff --git a/scm.html b/scm.html index fe7db0ec..6f19ab79 100644 --- a/scm.html +++ b/scm.html @@ -1,13 +1,13 @@ - + japicmp-base – Source Code Management @@ -34,8 +34,8 @@
    @@ -69,10 +69,10 @@

    Web Browser Access

    https://github.com/siom79/japicmp.git

    Anonymous Access

    The source can be checked out anonymously from Git with this command (See https://git-scm.com/docs/git-clone):

    -
    $ git clone --branch japicmp-base-0.15.7 https://github.com/siom79/japicmp.git
    +
    $ git clone --branch japicmp-base-0.22.0 https://github.com/siom79/japicmp.git

    Developer Access

    Only project developers can access the Git tree via this method (See https://git-scm.com/docs/git-clone).

    -
    $ git clone --branch japicmp-base-0.15.7 https://github.com/siom79/japicmp.git
    +
    $ git clone --branch japicmp-base-0.22.0 https://github.com/siom79/japicmp.git

    Access from Behind a Firewall

    Refer to the documentation of the SCM used for more information about access behind a firewall.

    diff --git a/summary.html b/summary.html index 8863640c..524d6501 100644 --- a/summary.html +++ b/summary.html @@ -1,13 +1,13 @@ - + japicmp-base – Project Summary @@ -34,8 +34,8 @@
    @@ -92,7 +92,7 @@

    Build Information

  • - +
    Version0.21.3-SNAPSHOT
    0.22.0
    Type jar
    Version0.21.3-SNAPSHOT
    0.22.0
    Type pom
    diff --git a/team.html b/team.html index 029e1502..4e57c233 100644 --- a/team.html +++ b/team.html @@ -1,13 +1,13 @@ - + japicmp-base – Project Team @@ -34,8 +34,8 @@