├── .editorconfig ├── .github ├── CODEOWNERS └── ISSUE_TEMPLATE │ ├── 01-template-for-feature.md │ ├── 02-template-for-bug.md │ ├── 03-template-for-task.md │ └── config.yml ├── .gitignore ├── LICENSE ├── pom.xml ├── readme.adoc └── src ├── it ├── analyze │ └── exclude-constraint │ │ ├── .jqassistant.yml │ │ ├── jqassistant │ │ └── it.xml │ │ ├── pom.xml │ │ └── verify.groovy ├── cli │ └── project-without-plugin │ │ ├── invoker.properties │ │ ├── jqassistant │ │ └── default.xml │ │ ├── module1 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── A.java │ │ ├── module2 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── B.java │ │ ├── pom.xml │ │ └── verify.groovy ├── configuration │ ├── effective-configuration │ │ ├── invoker.properties │ │ ├── pom.xml │ │ └── verify.groovy │ ├── embedded │ │ ├── .jqassistant.yml │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── pom.xml │ │ └── verify.groovy │ ├── external │ │ ├── .jqassistant-custom.yml │ │ ├── .jqassistant.yml │ │ ├── .jqassistant │ │ │ └── analyze.yml │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── pom.xml │ │ └── verify.groovy │ ├── overrides │ │ ├── .jqassistant.yml │ │ ├── README.md │ │ ├── jqassistant │ │ │ └── it.xml │ │ ├── module │ │ │ ├── .jqassistant.yml │ │ │ ├── README-module.md │ │ │ └── pom.xml │ │ ├── pom.xml │ │ └── verify.groovy │ ├── profile │ │ ├── .jqassistant.yml │ │ ├── invoker.properties │ │ ├── pom.xml │ │ └── verify.groovy │ └── store │ │ ├── invoker.properties │ │ ├── pom.xml │ │ └── verify.groovy ├── list-plugins │ ├── invoker.properties │ ├── pom.xml │ └── verify.groovy ├── multimodule │ ├── multiparent │ │ ├── singlestore │ │ │ ├── invoker.properties │ │ │ ├── jqassistant │ │ │ │ └── default.xml │ │ │ ├── module1 │ │ │ │ └── pom.xml │ │ │ ├── module2 │ │ │ │ └── pom.xml │ │ │ ├── pom.xml │ │ │ └── verify.groovy │ │ └── site │ │ │ ├── invoker.properties │ │ │ ├── module1 │ │ │ ├── jqassistant │ │ │ │ └── default.xml │ │ │ └── pom.xml │ │ │ ├── module2 │ │ │ ├── jqassistant │ │ │ │ └── default.xml │ │ │ └── pom.xml │ │ │ ├── pom.xml │ │ │ └── verify.groovy │ └── singleparent │ │ ├── analyze-lastmodule │ │ ├── .jqassistant.yml │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── module1 │ │ │ └── pom.xml │ │ ├── module2 │ │ │ └── pom.xml │ │ ├── module3 │ │ │ └── pom.xml │ │ ├── module4 │ │ │ └── pom.xml │ │ ├── pom.xml │ │ └── verify.groovy │ │ ├── artifact-dependencies │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── module1 │ │ │ └── pom.xml │ │ ├── module2 │ │ │ └── pom.xml │ │ ├── module3 │ │ │ └── pom.xml │ │ ├── pom.xml │ │ └── verify.groovy │ │ ├── attach-report-archive │ │ ├── .jqassistant.yml │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── module1 │ │ │ └── pom.xml │ │ ├── module2 │ │ │ └── pom.xml │ │ ├── pom.xml │ │ └── verify.groovy │ │ ├── cliwithoutplugin │ │ └── module1 │ │ │ └── pom.xml │ │ ├── customruledir │ │ ├── .jqassistant.yml │ │ ├── build-config │ │ │ └── jqa-rules │ │ │ │ └── default.xml │ │ ├── invoker.properties │ │ ├── module1 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── A.java │ │ ├── module2 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── B.java │ │ ├── pom.xml │ │ └── verify.groovy │ │ ├── dependency-tree │ │ ├── .jqassistant.yml │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── module1 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── buschmais │ │ │ │ └── jqassistant │ │ │ │ └── maven │ │ │ │ └── it │ │ │ │ └── dependency_tree │ │ │ │ └── module1 │ │ │ │ └── service │ │ │ │ └── Service1.java │ │ ├── module2 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── buschmais │ │ │ │ └── jqassistant │ │ │ │ └── maven │ │ │ │ └── it │ │ │ │ └── dependency_tree │ │ │ │ └── module2 │ │ │ │ └── service │ │ │ │ └── Service2.java │ │ ├── pom.xml │ │ └── verify.groovy │ │ ├── dependency │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── module1 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── buschmais │ │ │ │ │ └── jqassistant │ │ │ │ │ └── maven │ │ │ │ │ └── module1 │ │ │ │ │ └── A.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── buschmais │ │ │ │ └── jqassistant │ │ │ │ └── maven │ │ │ │ └── module1 │ │ │ │ └── ATest.java │ │ ├── module2 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── buschmais │ │ │ │ │ └── jqassistant │ │ │ │ │ └── maven │ │ │ │ │ └── module2 │ │ │ │ │ └── B.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── buschmais │ │ │ │ └── jqassistant │ │ │ │ └── maven │ │ │ │ └── module2 │ │ │ │ └── BTest.java │ │ ├── pom.xml │ │ └── verify.groovy │ │ ├── execrootasprojectroot │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── index.xml │ │ ├── module-a │ │ │ ├── api │ │ │ │ └── pom.xml │ │ │ ├── impl │ │ │ │ └── pom.xml │ │ │ └── pom.xml │ │ ├── module-b │ │ │ ├── api │ │ │ │ └── pom.xml │ │ │ ├── impl │ │ │ │ └── pom.xml │ │ │ └── pom.xml │ │ ├── module-c │ │ │ └── pom.xml │ │ ├── pom.xml │ │ └── verify.groovy │ │ ├── parentasmodule │ │ ├── invoker.properties │ │ ├── module1 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── module1 │ │ │ │ └── App.java │ │ ├── module2 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── module2 │ │ │ │ └── App.java │ │ ├── parent │ │ │ ├── jqassistant │ │ │ │ └── default.xml │ │ │ └── pom.xml │ │ ├── pom.xml │ │ └── verify.groovy │ │ ├── project-artifacts │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── main-and-test │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── buschmais │ │ │ │ │ └── jqassistant │ │ │ │ │ └── maven │ │ │ │ │ └── main_and_test │ │ │ │ │ └── B.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── buschmais │ │ │ │ └── jqassistant │ │ │ │ └── maven │ │ │ │ └── main_and_test │ │ │ │ └── BTest.java │ │ ├── main-only │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── buschmais │ │ │ │ └── jqassistant │ │ │ │ └── maven │ │ │ │ └── main_only │ │ │ │ └── A.java │ │ ├── pom.xml │ │ └── test-only │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── buschmais │ │ │ └── jqassistant │ │ │ └── maven │ │ │ └── test_only │ │ │ └── ATest.java │ │ ├── scan-reset │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── module1 │ │ │ └── pom.xml │ │ ├── module2 │ │ │ └── pom.xml │ │ ├── module3 │ │ │ └── pom.xml │ │ ├── pom.xml │ │ └── verify.groovy │ │ ├── site │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── module1 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── A.java │ │ ├── module2 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── B.java │ │ ├── pom.xml │ │ └── verify.groovy │ │ └── skip │ │ ├── .jqassistant.yml │ │ ├── invoker.properties │ │ ├── jqassistant │ │ └── default.xml │ │ ├── module1 │ │ └── pom.xml │ │ ├── module2 │ │ └── pom.xml │ │ ├── pom.xml │ │ └── verify.groovy ├── neo4j-plugin │ ├── .jqassistant.yml │ ├── invoker.properties │ ├── jqassistant │ │ └── default.xml │ ├── pom.xml │ └── verify.groovy ├── plugin │ ├── customplugin │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── buschmais │ │ │ │ └── jqassistant │ │ │ │ └── scm │ │ │ │ └── maven │ │ │ │ └── integration │ │ │ │ └── plugin │ │ │ │ ├── CustomDescriptor.java │ │ │ │ ├── CustomReportPlugin.java │ │ │ │ └── CustomScannerPlugin.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── jqassistant-plugin.xml │ ├── invoker.properties │ ├── pom.xml │ ├── site │ │ ├── .jqassistant.yml │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── buschmais │ │ │ └── jqassistant │ │ │ └── scm │ │ │ └── maven │ │ │ └── Foo.java │ └── verify.groovy ├── pom.xml ├── settings.xml ├── singlemodule │ ├── defaultseverity │ │ ├── .jqassistant.yml │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── pom.xml │ │ └── verify.groovy │ ├── deprecated-rules │ │ ├── .jqassistant.yml │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── it.xml │ │ ├── pom.xml │ │ └── verify.groovy │ ├── export-rules │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── pom.xml │ │ └── verify.groovy │ ├── failonseverity │ │ ├── .jqassistant.yml │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── default.xml │ │ └── pom.xml │ ├── junit-report │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── buschmais │ │ │ │ └── jqassistant │ │ │ │ └── maven │ │ │ │ └── it │ │ │ │ └── Service.java │ │ └── verify.groovy │ ├── model │ │ ├── .jqassistant.yml │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── buschmais │ │ │ │ │ └── jqassistant │ │ │ │ │ └── maven │ │ │ │ │ └── it │ │ │ │ │ └── Service.java │ │ │ └── src │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── buschmais │ │ │ │ └── jqassistant │ │ │ │ └── maven │ │ │ │ └── it │ │ │ │ └── ServiceTest.java │ │ └── verify.groovy │ ├── ruleparameter │ │ ├── .jqassistant.yml │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── pom.xml │ │ └── verify.groovy │ ├── scanincludes │ │ ├── .jqassistant.yml │ │ ├── config │ │ │ └── test.properties │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── pom.xml │ │ └── verify.groovy │ ├── severity │ │ ├── .jqassistant.yml │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── pom.xml │ │ └── verify.groovy │ ├── shade │ │ ├── .jqassistant.yml │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── pom.xml │ │ └── verify.groovy │ ├── site │ │ ├── invoker.properties │ │ ├── jqassistant │ │ │ └── default.xml │ │ ├── pom.xml │ │ └── verify.groovy │ └── skip │ │ ├── .jqassistant.yml │ │ ├── invoker.properties │ │ ├── jqassistant │ │ └── default.xml │ │ ├── pom.xml │ │ └── verify.groovy └── yaml │ ├── one-concept │ ├── .jqassistant.yml │ ├── invoker.properties │ ├── jqassistant │ │ └── default.yaml │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── buschmais │ │ │ └── jqassistant │ │ │ └── maven │ │ │ └── it │ │ │ └── yaml │ │ │ └── oneconcept │ │ │ └── Service.java │ └── verify.groovy │ └── violated-constraint │ ├── .jqassistant.yml │ ├── invoker.properties │ ├── jqassistant │ └── default.yaml │ ├── pom.xml │ ├── src │ └── main │ │ └── java │ │ └── com │ │ └── buschmais │ │ └── jqassistant │ │ └── maven │ │ └── it │ │ └── yaml │ │ └── violatedconstraint │ │ ├── AClass.java │ │ └── AnInterface.java │ └── verify.groovy └── main ├── asciidoc ├── readme.adoc └── release-notes.adoc ├── java └── com │ └── buschmais │ └── jqassistant │ └── scm │ └── maven │ ├── AbstractModuleMojo.java │ ├── AbstractMojo.java │ ├── AbstractProjectMojo.java │ ├── AbstractRuleMojo.java │ ├── AnalyzeMojo.java │ ├── AvailableRulesMojo.java │ ├── AvailableScopesMojo.java │ ├── EffectiveConfigurationMojo.java │ ├── EffectiveRulesMojo.java │ ├── ExportRulesMojo.java │ ├── ListPluginsMojo.java │ ├── MojoExecutionContext.java │ ├── ReportMojo.java │ ├── ResetMojo.java │ ├── ScanMojo.java │ ├── ServerMojo.java │ ├── configuration │ ├── Maven.java │ ├── MavenConfiguration.java │ ├── Module.java │ └── source │ │ ├── AbstractObjectValueConfigSource.java │ │ ├── EmptyConfigSource.java │ │ ├── MavenProjectConfigSource.java │ │ ├── MavenPropertiesConfigSource.java │ │ └── SettingsConfigSource.java │ └── provider │ ├── CachingStoreProvider.java │ └── PluginRepositoryProvider.java └── resources └── META-INF ├── m2e └── lifecycle-mapping-metadata.xml └── maven └── extension.xml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01-template-for-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/.github/ISSUE_TEMPLATE/01-template-for-feature.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-template-for-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/.github/ISSUE_TEMPLATE/02-template-for-bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03-template-for-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/.github/ISSUE_TEMPLATE/03-template-for-task.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /readme.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/readme.adoc -------------------------------------------------------------------------------- /src/it/analyze/exclude-constraint/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/analyze/exclude-constraint/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/analyze/exclude-constraint/jqassistant/it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/analyze/exclude-constraint/jqassistant/it.xml -------------------------------------------------------------------------------- /src/it/analyze/exclude-constraint/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/analyze/exclude-constraint/pom.xml -------------------------------------------------------------------------------- /src/it/analyze/exclude-constraint/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/analyze/exclude-constraint/verify.groovy -------------------------------------------------------------------------------- /src/it/cli/project-without-plugin/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/cli/project-without-plugin/invoker.properties -------------------------------------------------------------------------------- /src/it/cli/project-without-plugin/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/cli/project-without-plugin/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/cli/project-without-plugin/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/cli/project-without-plugin/module1/pom.xml -------------------------------------------------------------------------------- /src/it/cli/project-without-plugin/module1/src/main/java/A.java: -------------------------------------------------------------------------------- 1 | public class A { 2 | } -------------------------------------------------------------------------------- /src/it/cli/project-without-plugin/module2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/cli/project-without-plugin/module2/pom.xml -------------------------------------------------------------------------------- /src/it/cli/project-without-plugin/module2/src/main/java/B.java: -------------------------------------------------------------------------------- 1 | public class B { 2 | } -------------------------------------------------------------------------------- /src/it/cli/project-without-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/cli/project-without-plugin/pom.xml -------------------------------------------------------------------------------- /src/it/cli/project-without-plugin/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/cli/project-without-plugin/verify.groovy -------------------------------------------------------------------------------- /src/it/configuration/effective-configuration/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/effective-configuration/invoker.properties -------------------------------------------------------------------------------- /src/it/configuration/effective-configuration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/effective-configuration/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/effective-configuration/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/effective-configuration/verify.groovy -------------------------------------------------------------------------------- /src/it/configuration/embedded/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/embedded/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/configuration/embedded/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = verify 2 | -------------------------------------------------------------------------------- /src/it/configuration/embedded/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/embedded/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/configuration/embedded/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/embedded/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/embedded/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/embedded/verify.groovy -------------------------------------------------------------------------------- /src/it/configuration/external/.jqassistant-custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/external/.jqassistant-custom.yml -------------------------------------------------------------------------------- /src/it/configuration/external/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/external/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/configuration/external/.jqassistant/analyze.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/external/.jqassistant/analyze.yml -------------------------------------------------------------------------------- /src/it/configuration/external/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/external/invoker.properties -------------------------------------------------------------------------------- /src/it/configuration/external/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/external/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/configuration/external/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/external/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/external/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/external/verify.groovy -------------------------------------------------------------------------------- /src/it/configuration/overrides/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/overrides/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/configuration/overrides/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/it/configuration/overrides/jqassistant/it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/overrides/jqassistant/it.xml -------------------------------------------------------------------------------- /src/it/configuration/overrides/module/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/overrides/module/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/configuration/overrides/module/README-module.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/it/configuration/overrides/module/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/overrides/module/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/overrides/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/overrides/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/overrides/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/overrides/verify.groovy -------------------------------------------------------------------------------- /src/it/configuration/profile/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/profile/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/configuration/profile/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = jqassistant:scan -Ptest-store -e 2 | -------------------------------------------------------------------------------- /src/it/configuration/profile/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/profile/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/profile/verify.groovy: -------------------------------------------------------------------------------- 1 | assert new File(basedir, "target/test-store").exists() 2 | -------------------------------------------------------------------------------- /src/it/configuration/store/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/store/invoker.properties -------------------------------------------------------------------------------- /src/it/configuration/store/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/store/pom.xml -------------------------------------------------------------------------------- /src/it/configuration/store/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/configuration/store/verify.groovy -------------------------------------------------------------------------------- /src/it/list-plugins/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/list-plugins/invoker.properties -------------------------------------------------------------------------------- /src/it/list-plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/list-plugins/pom.xml -------------------------------------------------------------------------------- /src/it/list-plugins/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/list-plugins/verify.groovy -------------------------------------------------------------------------------- /src/it/multimodule/multiparent/singlestore/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/multiparent/singlestore/invoker.properties -------------------------------------------------------------------------------- /src/it/multimodule/multiparent/singlestore/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/multiparent/singlestore/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/multimodule/multiparent/singlestore/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/multiparent/singlestore/module1/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/multiparent/singlestore/module2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/multiparent/singlestore/module2/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/multiparent/singlestore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/multiparent/singlestore/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/multiparent/singlestore/verify.groovy: -------------------------------------------------------------------------------- 1 | assert new File(basedir, 'target/jqassistant').exists() 2 | -------------------------------------------------------------------------------- /src/it/multimodule/multiparent/site/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/multiparent/site/invoker.properties -------------------------------------------------------------------------------- /src/it/multimodule/multiparent/site/module1/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/multiparent/site/module1/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/multimodule/multiparent/site/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/multiparent/site/module1/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/multiparent/site/module2/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/multiparent/site/module2/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/multimodule/multiparent/site/module2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/multiparent/site/module2/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/multiparent/site/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/multiparent/site/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/multiparent/site/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/multiparent/site/verify.groovy -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/analyze-lastmodule/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/analyze-lastmodule/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/analyze-lastmodule/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/analyze-lastmodule/invoker.properties -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/analyze-lastmodule/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/analyze-lastmodule/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/analyze-lastmodule/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/analyze-lastmodule/module1/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/analyze-lastmodule/module2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/analyze-lastmodule/module2/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/analyze-lastmodule/module3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/analyze-lastmodule/module3/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/analyze-lastmodule/module4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/analyze-lastmodule/module4/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/analyze-lastmodule/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/analyze-lastmodule/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/analyze-lastmodule/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/analyze-lastmodule/verify.groovy -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/artifact-dependencies/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = install 2 | -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/artifact-dependencies/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/artifact-dependencies/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/artifact-dependencies/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/artifact-dependencies/module1/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/artifact-dependencies/module2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/artifact-dependencies/module2/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/artifact-dependencies/module3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/artifact-dependencies/module3/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/artifact-dependencies/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/artifact-dependencies/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/artifact-dependencies/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/artifact-dependencies/verify.groovy -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/attach-report-archive/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/attach-report-archive/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/attach-report-archive/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = install 2 | -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/attach-report-archive/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/attach-report-archive/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/attach-report-archive/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/attach-report-archive/module1/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/attach-report-archive/module2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/attach-report-archive/module2/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/attach-report-archive/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/attach-report-archive/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/attach-report-archive/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/attach-report-archive/verify.groovy -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/cliwithoutplugin/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/cliwithoutplugin/module1/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/customruledir/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/customruledir/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/customruledir/build-config/jqa-rules/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/customruledir/build-config/jqa-rules/default.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/customruledir/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = install 2 | -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/customruledir/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/customruledir/module1/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/customruledir/module1/src/main/java/A.java: -------------------------------------------------------------------------------- 1 | public class A { 2 | } -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/customruledir/module2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/customruledir/module2/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/customruledir/module2/src/main/java/B.java: -------------------------------------------------------------------------------- 1 | public class B { 2 | } -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/customruledir/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/customruledir/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/customruledir/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/customruledir/verify.groovy -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/dependency-tree/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/dependency-tree/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/dependency-tree/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/dependency-tree/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/dependency-tree/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/dependency-tree/module1/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/dependency-tree/module1/src/main/java/com/buschmais/jqassistant/maven/it/dependency_tree/module1/service/Service1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/dependency-tree/module1/src/main/java/com/buschmais/jqassistant/maven/it/dependency_tree/module1/service/Service1.java -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/dependency-tree/module2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/dependency-tree/module2/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/dependency-tree/module2/src/main/java/com/buschmais/jqassistant/maven/it/dependency_tree/module2/service/Service2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/dependency-tree/module2/src/main/java/com/buschmais/jqassistant/maven/it/dependency_tree/module2/service/Service2.java -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/dependency-tree/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/dependency-tree/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/dependency-tree/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/dependency-tree/verify.groovy -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/dependency/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/dependency/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/dependency/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/dependency/module1/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/dependency/module1/src/main/java/com/buschmais/jqassistant/maven/module1/A.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/dependency/module1/src/main/java/com/buschmais/jqassistant/maven/module1/A.java -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/dependency/module1/src/test/java/com/buschmais/jqassistant/maven/module1/ATest.java: -------------------------------------------------------------------------------- 1 | package com.buschmais.jqassistant.maven.module1; 2 | 3 | public class ATest { 4 | } 5 | -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/dependency/module2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/dependency/module2/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/dependency/module2/src/main/java/com/buschmais/jqassistant/maven/module2/B.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/dependency/module2/src/main/java/com/buschmais/jqassistant/maven/module2/B.java -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/dependency/module2/src/test/java/com/buschmais/jqassistant/maven/module2/BTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/dependency/module2/src/test/java/com/buschmais/jqassistant/maven/module2/BTest.java -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/dependency/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/dependency/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/dependency/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/dependency/verify.groovy -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/execrootasprojectroot/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = install -e 2 | -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/execrootasprojectroot/jqassistant/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/execrootasprojectroot/jqassistant/index.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/execrootasprojectroot/module-a/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/execrootasprojectroot/module-a/api/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/execrootasprojectroot/module-a/impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/execrootasprojectroot/module-a/impl/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/execrootasprojectroot/module-a/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/execrootasprojectroot/module-a/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/execrootasprojectroot/module-b/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/execrootasprojectroot/module-b/api/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/execrootasprojectroot/module-b/impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/execrootasprojectroot/module-b/impl/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/execrootasprojectroot/module-b/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/execrootasprojectroot/module-b/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/execrootasprojectroot/module-c/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/execrootasprojectroot/module-c/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/execrootasprojectroot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/execrootasprojectroot/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/execrootasprojectroot/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/execrootasprojectroot/verify.groovy -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/parentasmodule/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/parentasmodule/invoker.properties -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/parentasmodule/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/parentasmodule/module1/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/parentasmodule/module1/src/main/java/module1/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/parentasmodule/module1/src/main/java/module1/App.java -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/parentasmodule/module2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/parentasmodule/module2/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/parentasmodule/module2/src/main/java/module2/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/parentasmodule/module2/src/main/java/module2/App.java -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/parentasmodule/parent/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/parentasmodule/parent/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/parentasmodule/parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/parentasmodule/parent/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/parentasmodule/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/parentasmodule/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/parentasmodule/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/parentasmodule/verify.groovy -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/project-artifacts/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/project-artifacts/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/project-artifacts/main-and-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/project-artifacts/main-and-test/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/project-artifacts/main-and-test/src/main/java/com/buschmais/jqassistant/maven/main_and_test/B.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/project-artifacts/main-and-test/src/main/java/com/buschmais/jqassistant/maven/main_and_test/B.java -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/project-artifacts/main-and-test/src/test/java/com/buschmais/jqassistant/maven/main_and_test/BTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/project-artifacts/main-and-test/src/test/java/com/buschmais/jqassistant/maven/main_and_test/BTest.java -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/project-artifacts/main-only/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/project-artifacts/main-only/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/project-artifacts/main-only/src/main/java/com/buschmais/jqassistant/maven/main_only/A.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/project-artifacts/main-only/src/main/java/com/buschmais/jqassistant/maven/main_only/A.java -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/project-artifacts/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/project-artifacts/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/project-artifacts/test-only/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/project-artifacts/test-only/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/project-artifacts/test-only/src/test/java/com/buschmais/jqassistant/maven/test_only/ATest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/project-artifacts/test-only/src/test/java/com/buschmais/jqassistant/maven/test_only/ATest.java -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/scan-reset/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/scan-reset/invoker.properties -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/scan-reset/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/scan-reset/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/scan-reset/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/scan-reset/module1/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/scan-reset/module2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/scan-reset/module2/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/scan-reset/module3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/scan-reset/module3/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/scan-reset/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/scan-reset/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/scan-reset/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/scan-reset/verify.groovy -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/site/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/site/invoker.properties -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/site/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/site/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/site/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/site/module1/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/site/module1/src/main/java/A.java: -------------------------------------------------------------------------------- 1 | public class A { 2 | } -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/site/module2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/site/module2/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/site/module2/src/main/java/B.java: -------------------------------------------------------------------------------- 1 | public class B { 2 | } -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/site/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/site/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/site/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/site/verify.groovy -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/skip/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/skip/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/skip/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = install 2 | -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/skip/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/skip/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/skip/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/skip/module1/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/skip/module2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/skip/module2/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/skip/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/skip/pom.xml -------------------------------------------------------------------------------- /src/it/multimodule/singleparent/skip/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/multimodule/singleparent/skip/verify.groovy -------------------------------------------------------------------------------- /src/it/neo4j-plugin/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/neo4j-plugin/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/neo4j-plugin/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/neo4j-plugin/invoker.properties -------------------------------------------------------------------------------- /src/it/neo4j-plugin/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/neo4j-plugin/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/neo4j-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/neo4j-plugin/pom.xml -------------------------------------------------------------------------------- /src/it/neo4j-plugin/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/neo4j-plugin/verify.groovy -------------------------------------------------------------------------------- /src/it/plugin/customplugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/plugin/customplugin/pom.xml -------------------------------------------------------------------------------- /src/it/plugin/customplugin/src/main/java/com/buschmais/jqassistant/scm/maven/integration/plugin/CustomDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/plugin/customplugin/src/main/java/com/buschmais/jqassistant/scm/maven/integration/plugin/CustomDescriptor.java -------------------------------------------------------------------------------- /src/it/plugin/customplugin/src/main/java/com/buschmais/jqassistant/scm/maven/integration/plugin/CustomReportPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/plugin/customplugin/src/main/java/com/buschmais/jqassistant/scm/maven/integration/plugin/CustomReportPlugin.java -------------------------------------------------------------------------------- /src/it/plugin/customplugin/src/main/java/com/buschmais/jqassistant/scm/maven/integration/plugin/CustomScannerPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/plugin/customplugin/src/main/java/com/buschmais/jqassistant/scm/maven/integration/plugin/CustomScannerPlugin.java -------------------------------------------------------------------------------- /src/it/plugin/customplugin/src/main/resources/META-INF/jqassistant-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/plugin/customplugin/src/main/resources/META-INF/jqassistant-plugin.xml -------------------------------------------------------------------------------- /src/it/plugin/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/plugin/invoker.properties -------------------------------------------------------------------------------- /src/it/plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/plugin/pom.xml -------------------------------------------------------------------------------- /src/it/plugin/site/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/plugin/site/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/plugin/site/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/plugin/site/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/plugin/site/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/plugin/site/pom.xml -------------------------------------------------------------------------------- /src/it/plugin/site/src/main/java/com/buschmais/jqassistant/scm/maven/Foo.java: -------------------------------------------------------------------------------- 1 | package com.buschmais.jqassistant.scm.maven; 2 | 3 | public class Foo { 4 | } -------------------------------------------------------------------------------- /src/it/plugin/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/plugin/verify.groovy -------------------------------------------------------------------------------- /src/it/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/pom.xml -------------------------------------------------------------------------------- /src/it/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/settings.xml -------------------------------------------------------------------------------- /src/it/singlemodule/defaultseverity/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/defaultseverity/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/singlemodule/defaultseverity/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/defaultseverity/invoker.properties -------------------------------------------------------------------------------- /src/it/singlemodule/defaultseverity/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/defaultseverity/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/singlemodule/defaultseverity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/defaultseverity/pom.xml -------------------------------------------------------------------------------- /src/it/singlemodule/defaultseverity/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/defaultseverity/verify.groovy -------------------------------------------------------------------------------- /src/it/singlemodule/deprecated-rules/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/deprecated-rules/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/singlemodule/deprecated-rules/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = verify -e 2 | -------------------------------------------------------------------------------- /src/it/singlemodule/deprecated-rules/jqassistant/it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/deprecated-rules/jqassistant/it.xml -------------------------------------------------------------------------------- /src/it/singlemodule/deprecated-rules/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/deprecated-rules/pom.xml -------------------------------------------------------------------------------- /src/it/singlemodule/deprecated-rules/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/deprecated-rules/verify.groovy -------------------------------------------------------------------------------- /src/it/singlemodule/export-rules/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/export-rules/invoker.properties -------------------------------------------------------------------------------- /src/it/singlemodule/export-rules/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/export-rules/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/singlemodule/export-rules/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/export-rules/pom.xml -------------------------------------------------------------------------------- /src/it/singlemodule/export-rules/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/export-rules/verify.groovy -------------------------------------------------------------------------------- /src/it/singlemodule/failonseverity/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/failonseverity/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/singlemodule/failonseverity/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/failonseverity/invoker.properties -------------------------------------------------------------------------------- /src/it/singlemodule/failonseverity/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/failonseverity/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/singlemodule/failonseverity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/failonseverity/pom.xml -------------------------------------------------------------------------------- /src/it/singlemodule/junit-report/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals.1 = install 2 | 3 | -------------------------------------------------------------------------------- /src/it/singlemodule/junit-report/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/junit-report/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/singlemodule/junit-report/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/junit-report/pom.xml -------------------------------------------------------------------------------- /src/it/singlemodule/junit-report/src/main/java/com/buschmais/jqassistant/maven/it/Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/junit-report/src/main/java/com/buschmais/jqassistant/maven/it/Service.java -------------------------------------------------------------------------------- /src/it/singlemodule/junit-report/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/junit-report/verify.groovy -------------------------------------------------------------------------------- /src/it/singlemodule/model/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/model/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/singlemodule/model/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = install -e 2 | -------------------------------------------------------------------------------- /src/it/singlemodule/model/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/model/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/singlemodule/model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/model/pom.xml -------------------------------------------------------------------------------- /src/it/singlemodule/model/src/main/java/com/buschmais/jqassistant/maven/it/Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/model/src/main/java/com/buschmais/jqassistant/maven/it/Service.java -------------------------------------------------------------------------------- /src/it/singlemodule/model/src/src/test/java/com/buschmais/jqassistant/maven/it/ServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/model/src/src/test/java/com/buschmais/jqassistant/maven/it/ServiceTest.java -------------------------------------------------------------------------------- /src/it/singlemodule/model/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/model/verify.groovy -------------------------------------------------------------------------------- /src/it/singlemodule/ruleparameter/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/ruleparameter/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/singlemodule/ruleparameter/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals.1 = install -e 2 | -------------------------------------------------------------------------------- /src/it/singlemodule/ruleparameter/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/ruleparameter/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/singlemodule/ruleparameter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/ruleparameter/pom.xml -------------------------------------------------------------------------------- /src/it/singlemodule/ruleparameter/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/ruleparameter/verify.groovy -------------------------------------------------------------------------------- /src/it/singlemodule/scanincludes/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/scanincludes/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/singlemodule/scanincludes/config/test.properties: -------------------------------------------------------------------------------- 1 | testKey=testValue -------------------------------------------------------------------------------- /src/it/singlemodule/scanincludes/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals.1 = install -e 2 | -------------------------------------------------------------------------------- /src/it/singlemodule/scanincludes/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/scanincludes/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/singlemodule/scanincludes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/scanincludes/pom.xml -------------------------------------------------------------------------------- /src/it/singlemodule/scanincludes/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/scanincludes/verify.groovy -------------------------------------------------------------------------------- /src/it/singlemodule/severity/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/severity/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/singlemodule/severity/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/severity/invoker.properties -------------------------------------------------------------------------------- /src/it/singlemodule/severity/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/severity/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/singlemodule/severity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/severity/pom.xml -------------------------------------------------------------------------------- /src/it/singlemodule/severity/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/severity/verify.groovy -------------------------------------------------------------------------------- /src/it/singlemodule/shade/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/shade/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/singlemodule/shade/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals.1 = install -e 2 | -------------------------------------------------------------------------------- /src/it/singlemodule/shade/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/shade/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/singlemodule/shade/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/shade/pom.xml -------------------------------------------------------------------------------- /src/it/singlemodule/shade/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/shade/verify.groovy -------------------------------------------------------------------------------- /src/it/singlemodule/site/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/site/invoker.properties -------------------------------------------------------------------------------- /src/it/singlemodule/site/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/site/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/singlemodule/site/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/site/pom.xml -------------------------------------------------------------------------------- /src/it/singlemodule/site/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/site/verify.groovy -------------------------------------------------------------------------------- /src/it/singlemodule/skip/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/skip/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/singlemodule/skip/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals.1 = install -e 2 | -------------------------------------------------------------------------------- /src/it/singlemodule/skip/jqassistant/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/skip/jqassistant/default.xml -------------------------------------------------------------------------------- /src/it/singlemodule/skip/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/skip/pom.xml -------------------------------------------------------------------------------- /src/it/singlemodule/skip/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/singlemodule/skip/verify.groovy -------------------------------------------------------------------------------- /src/it/yaml/one-concept/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/yaml/one-concept/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/yaml/one-concept/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals.1 = -e install 2 | -------------------------------------------------------------------------------- /src/it/yaml/one-concept/jqassistant/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/yaml/one-concept/jqassistant/default.yaml -------------------------------------------------------------------------------- /src/it/yaml/one-concept/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/yaml/one-concept/pom.xml -------------------------------------------------------------------------------- /src/it/yaml/one-concept/src/main/java/com/buschmais/jqassistant/maven/it/yaml/oneconcept/Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/yaml/one-concept/src/main/java/com/buschmais/jqassistant/maven/it/yaml/oneconcept/Service.java -------------------------------------------------------------------------------- /src/it/yaml/one-concept/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/yaml/one-concept/verify.groovy -------------------------------------------------------------------------------- /src/it/yaml/violated-constraint/.jqassistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/yaml/violated-constraint/.jqassistant.yml -------------------------------------------------------------------------------- /src/it/yaml/violated-constraint/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals.1 = install -e --fail-never 2 | -------------------------------------------------------------------------------- /src/it/yaml/violated-constraint/jqassistant/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/yaml/violated-constraint/jqassistant/default.yaml -------------------------------------------------------------------------------- /src/it/yaml/violated-constraint/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/yaml/violated-constraint/pom.xml -------------------------------------------------------------------------------- /src/it/yaml/violated-constraint/src/main/java/com/buschmais/jqassistant/maven/it/yaml/violatedconstraint/AClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/yaml/violated-constraint/src/main/java/com/buschmais/jqassistant/maven/it/yaml/violatedconstraint/AClass.java -------------------------------------------------------------------------------- /src/it/yaml/violated-constraint/src/main/java/com/buschmais/jqassistant/maven/it/yaml/violatedconstraint/AnInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/yaml/violated-constraint/src/main/java/com/buschmais/jqassistant/maven/it/yaml/violatedconstraint/AnInterface.java -------------------------------------------------------------------------------- /src/it/yaml/violated-constraint/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/it/yaml/violated-constraint/verify.groovy -------------------------------------------------------------------------------- /src/main/asciidoc/readme.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/asciidoc/readme.adoc -------------------------------------------------------------------------------- /src/main/asciidoc/release-notes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/asciidoc/release-notes.adoc -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/AbstractModuleMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/AbstractModuleMojo.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/AbstractMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/AbstractMojo.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/AbstractProjectMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/AbstractProjectMojo.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/AbstractRuleMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/AbstractRuleMojo.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/AnalyzeMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/AnalyzeMojo.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/AvailableRulesMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/AvailableRulesMojo.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/AvailableScopesMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/AvailableScopesMojo.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/EffectiveConfigurationMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/EffectiveConfigurationMojo.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/EffectiveRulesMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/EffectiveRulesMojo.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/ExportRulesMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/ExportRulesMojo.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/ListPluginsMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/ListPluginsMojo.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/MojoExecutionContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/MojoExecutionContext.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/ReportMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/ReportMojo.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/ResetMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/ResetMojo.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/ScanMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/ScanMojo.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/ServerMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/ServerMojo.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/configuration/Maven.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/configuration/Maven.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/configuration/MavenConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/configuration/MavenConfiguration.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/configuration/Module.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/configuration/Module.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/configuration/source/AbstractObjectValueConfigSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/configuration/source/AbstractObjectValueConfigSource.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/configuration/source/EmptyConfigSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/configuration/source/EmptyConfigSource.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/configuration/source/MavenProjectConfigSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/configuration/source/MavenProjectConfigSource.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/configuration/source/MavenPropertiesConfigSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/configuration/source/MavenPropertiesConfigSource.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/configuration/source/SettingsConfigSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/configuration/source/SettingsConfigSource.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/provider/CachingStoreProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/provider/CachingStoreProvider.java -------------------------------------------------------------------------------- /src/main/java/com/buschmais/jqassistant/scm/maven/provider/PluginRepositoryProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/java/com/buschmais/jqassistant/scm/maven/provider/PluginRepositoryProvider.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/maven/extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jqassistant-archive/jqa-maven-plugin/HEAD/src/main/resources/META-INF/maven/extension.xml --------------------------------------------------------------------------------