├── .asf.yaml ├── .github ├── ISSUE_TEMPLATE │ ├── BUG.yml │ ├── FEATURE.yml │ └── config.yml ├── dependabot.yml ├── pull_request_template.md ├── release-drafter.yml └── workflows │ ├── maven-verify.yml │ ├── pr-automation.yml │ ├── release-drafter.yml │ └── stale.yml ├── .gitignore ├── Jenkinsfile ├── LICENSE ├── README.md ├── pom.xml └── src ├── it ├── MPIR-242 │ ├── LICENSE.txt │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── MPIR-251 │ ├── invoker.properties │ ├── pom.xml │ └── verify.groovy ├── MPIR-300 │ ├── invoker.properties │ ├── pom.xml │ └── verify.groovy ├── MPIR-349 │ ├── module-flat │ │ └── pom.xml │ └── parent │ │ ├── invoker.properties │ │ ├── module-hierarchical │ │ └── pom.xml │ │ ├── pom.xml │ │ └── verify.groovy ├── MPIR-362 │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── MPIR-375 │ ├── invoker.properties │ ├── pom.xml │ └── verify.groovy ├── MPIR-407 │ ├── invoker.properties │ ├── pom.xml │ └── verify.groovy ├── MPIR-412 │ ├── invoker.properties │ ├── pom.xml │ └── verify.groovy ├── MPIR-431 │ ├── invoker.properties │ ├── pom.xml │ └── verify.groovy ├── MPIR-437 │ ├── invoker.properties │ ├── pom.xml │ └── verify.groovy ├── MPIR-455 │ ├── invoker.properties │ ├── pom.xml │ └── verify.groovy ├── MPIR-460-jar │ ├── invoker.properties │ ├── pom.xml │ └── verify.groovy ├── MPIR-460-maven-plugin │ ├── invoker.properties │ ├── pom.xml │ └── verify.groovy ├── MPIR-462 │ ├── invoker.properties │ └── pom.xml ├── dependencies-java-1.7-and-1.8 │ ├── pom.xml │ └── verify.groovy ├── full-pom │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── custom │ │ │ ├── project-info-reports.properties │ │ │ ├── project-info-reports_de.properties │ │ │ └── project-info-reports_fr.properties │ └── verify.bsh ├── git │ ├── inherited │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ └── apt │ │ │ └── index.apt.vm │ ├── invoker.properties │ ├── pom.xml │ ├── push │ │ ├── inherited │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── site │ │ │ │ └── apt │ │ │ │ └── index.apt.vm │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ └── apt │ │ │ └── index.apt.vm │ └── src │ │ └── site │ │ └── apt │ │ └── index.apt.vm ├── java-version │ ├── invoker.properties │ ├── plugin │ │ └── pom.xml │ ├── pluginManagement │ │ └── pom.xml │ ├── pom.xml │ ├── property │ │ └── pom.xml │ └── verify.groovy ├── minimal-pom │ ├── pom.xml │ └── verify.bsh ├── mpir-229 │ ├── module1 │ │ └── pom.xml │ ├── pom.xml │ ├── src │ │ └── site │ │ │ └── site.xml │ └── verify.groovy ├── mrm │ └── repository │ │ └── org │ │ └── apache │ │ └── maven │ │ └── its │ │ └── mpir-455 │ │ ├── module-info-only-test │ │ └── 0.0.1 │ │ │ ├── module-info-only-test-0.0.1.jar │ │ │ └── module-info-only-test-0.0.1.pom │ │ └── multi-release-test │ │ └── 0.0.1 │ │ ├── multi-release-test-0.0.1.jar │ │ └── multi-release-test-0.0.1.pom ├── multi-module │ ├── dep │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── maven │ │ │ └── its │ │ │ └── dep │ │ │ └── Dep.java │ ├── invoker.properties │ ├── main │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── maven │ │ │ └── its │ │ │ └── main │ │ │ └── Main.java │ ├── pom.xml │ └── verify.groovy ├── settings.xml └── team-local-avatars │ ├── pom.xml │ └── verify.groovy ├── main ├── java │ └── org │ │ └── apache │ │ └── maven │ │ └── report │ │ └── projectinfo │ │ ├── AbstractProjectInfoRenderer.java │ │ ├── AbstractProjectInfoReport.java │ │ ├── CiManagementReport.java │ │ ├── DependenciesReport.java │ │ ├── DependencyConvergenceReport.java │ │ ├── DependencyInformationReport.java │ │ ├── DependencyManagementReport.java │ │ ├── DistributionManagementReport.java │ │ ├── IndexReport.java │ │ ├── IssueManagementReport.java │ │ ├── LicenseMapping.java │ │ ├── LicensesReport.java │ │ ├── MailingListsReport.java │ │ ├── ModulesReport.java │ │ ├── PluginManagementReport.java │ │ ├── PluginsReport.java │ │ ├── ProjectInfoReportUtils.java │ │ ├── ScmReport.java │ │ ├── SummaryReport.java │ │ ├── TeamReport.java │ │ ├── avatars │ │ ├── AvatarsProvider.java │ │ └── GravatarProvider.java │ │ └── dependencies │ │ ├── Dependencies.java │ │ ├── DependenciesReportConfiguration.java │ │ ├── DependencyVersionMap.java │ │ ├── ManagementDependencies.java │ │ ├── RepositoryUtils.java │ │ ├── SinkSerializingDependencyNodeVisitor.java │ │ └── renderer │ │ ├── DependenciesRenderer.java │ │ └── DependencyManagementRenderer.java └── resources │ ├── org │ └── apache │ │ └── maven │ │ └── report │ │ └── projectinfo │ │ ├── avatars │ │ └── default-avatar.jpg │ │ └── resources │ │ ├── images │ │ └── close.gif │ │ └── resources.txt │ ├── project-info-reports.properties │ ├── project-info-reports_cs.properties │ ├── project-info-reports_de.properties │ ├── project-info-reports_en.properties │ ├── project-info-reports_es.properties │ ├── project-info-reports_fr.properties │ ├── project-info-reports_gl.properties │ ├── project-info-reports_hu.properties │ ├── project-info-reports_it.properties │ ├── project-info-reports_ja.properties │ ├── project-info-reports_ko.properties │ ├── project-info-reports_lt.properties │ ├── project-info-reports_nl.properties │ ├── project-info-reports_no.properties │ ├── project-info-reports_pl.properties │ ├── project-info-reports_pt.properties │ ├── project-info-reports_pt_BR.properties │ ├── project-info-reports_ru.properties │ ├── project-info-reports_sk.properties │ ├── project-info-reports_sv.properties │ ├── project-info-reports_tr.properties │ ├── project-info-reports_zh_CN.properties │ └── project-info-reports_zh_TW.properties ├── site ├── apt │ ├── examples │ │ ├── custom-report.apt.vm │ │ ├── individual-reports.apt │ │ ├── scm-report.apt.vm │ │ └── selective-reports.apt.vm │ ├── index.apt.vm │ └── usage.apt ├── fml │ └── faq.fml ├── resources │ └── download.cgi ├── site.xml └── xdoc │ └── download.xml.vm └── test ├── java └── org │ └── apache │ └── maven │ └── report │ └── projectinfo │ ├── AbstractProjectInfoTestCase.java │ ├── CiManagementReportTest.java │ ├── DependenciesReportTest.java │ ├── DependencyConvergenceReportTest.java │ ├── DependencyManagementReportTest.java │ ├── IndexReportTest.java │ ├── IssueManagementReportTest.java │ ├── LicensesReportTest.java │ ├── MailingListsReportTest.java │ ├── ModulesReportTest.java │ ├── PluginManagementReportTest.java │ ├── ProjectInfoReportUtilsTest.java │ ├── ScmReportTest.java │ ├── SummaryReportTest.java │ ├── TeamReportTest.java │ ├── avatars │ └── GravatarProviderTest.java │ └── stubs │ ├── CiManagementStub.java │ ├── CiManagementWithCiSectionStub.java │ ├── DefaultArtifactHandlerStub.java │ ├── DependenciesStub.java │ ├── DependencyArtifactStubFactory.java │ ├── DependencyConvergenceStub.java │ ├── DependencyManagementStub.java │ ├── IndexStub.java │ ├── IssueManagementStub.java │ ├── LicensesStub.java │ ├── MailingListsInvalidLinkStub.java │ ├── MailingListsStub.java │ ├── MailingListsStub2.java │ ├── ModulesStub.java │ ├── ModulesVariableSettingInterpolationStub.java │ ├── PluginManagementMPIR375Stub.java │ ├── PluginManagementStub.java │ ├── ProjectInfoPluginArtifactStub.java │ ├── ProjectInfoProjectStub.java │ ├── ScmStub.java │ ├── SettingsSitePublishVariableStub.java │ ├── SettingsStub.java │ ├── SubProject1Stub.java │ ├── SubProject2Stub.java │ ├── SummaryStub.java │ └── TeamStub.java └── resources ├── iso-8859-5-encoded.txt ├── org └── apache │ └── maven │ └── report │ └── projectinfo │ └── AbstractProjectInfoTestCase.xml ├── plugin-configs ├── ci-management-plugin-config.xml ├── ci-management-plugin-with-ci-section-config.xml ├── custom-bundle │ ├── plugin-config.xml │ └── src │ │ └── site │ │ └── custom │ │ └── project-info-reports.properties ├── dependencies-plugin-config.xml ├── dependency-convergence-plugin-config.xml ├── dependency-management-plugin-config.xml ├── index-plugin-config.xml ├── issue-management-plugin-config.xml ├── licenses-plugin-config-linkonly.xml ├── licenses-plugin-config.xml ├── mailing-lists-plugin-config-fr.xml ├── mailing-lists-plugin-config-invalidlink.xml ├── mailing-lists-plugin-config.xml ├── modules-plugin-config.xml ├── modules-variable-settings-interpolated-plugin-config.xml ├── plugin-management-plugin-config-MPIR-375.xml ├── plugin-management-plugin-config.xml ├── scm-plugin-config.xml ├── scm-wrong-url-plugin-config.xml ├── subproject-site-url │ └── pom.xml ├── subproject1 │ └── pom.xml ├── subproject2 │ └── pom.xml ├── summary-plugin-config.xml └── team-plugin-config.xml └── realm.properties /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/.github/ISSUE_TEMPLATE/BUG.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/.github/ISSUE_TEMPLATE/FEATURE.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/maven-verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/.github/workflows/maven-verify.yml -------------------------------------------------------------------------------- /.github/workflows/pr-automation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/.github/workflows/pr-automation.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/it/MPIR-242/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-242/LICENSE.txt -------------------------------------------------------------------------------- /src/it/MPIR-242/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-242/pom.xml -------------------------------------------------------------------------------- /src/it/MPIR-242/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-242/src/site/site.xml -------------------------------------------------------------------------------- /src/it/MPIR-242/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-242/verify.groovy -------------------------------------------------------------------------------- /src/it/MPIR-251/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-251/invoker.properties -------------------------------------------------------------------------------- /src/it/MPIR-251/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-251/pom.xml -------------------------------------------------------------------------------- /src/it/MPIR-251/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-251/verify.groovy -------------------------------------------------------------------------------- /src/it/MPIR-300/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-300/invoker.properties -------------------------------------------------------------------------------- /src/it/MPIR-300/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-300/pom.xml -------------------------------------------------------------------------------- /src/it/MPIR-300/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-300/verify.groovy -------------------------------------------------------------------------------- /src/it/MPIR-349/module-flat/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-349/module-flat/pom.xml -------------------------------------------------------------------------------- /src/it/MPIR-349/parent/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-349/parent/invoker.properties -------------------------------------------------------------------------------- /src/it/MPIR-349/parent/module-hierarchical/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-349/parent/module-hierarchical/pom.xml -------------------------------------------------------------------------------- /src/it/MPIR-349/parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-349/parent/pom.xml -------------------------------------------------------------------------------- /src/it/MPIR-349/parent/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-349/parent/verify.groovy -------------------------------------------------------------------------------- /src/it/MPIR-362/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-362/pom.xml -------------------------------------------------------------------------------- /src/it/MPIR-362/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-362/src/site/site.xml -------------------------------------------------------------------------------- /src/it/MPIR-362/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-362/verify.groovy -------------------------------------------------------------------------------- /src/it/MPIR-375/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-375/invoker.properties -------------------------------------------------------------------------------- /src/it/MPIR-375/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-375/pom.xml -------------------------------------------------------------------------------- /src/it/MPIR-375/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-375/verify.groovy -------------------------------------------------------------------------------- /src/it/MPIR-407/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-407/invoker.properties -------------------------------------------------------------------------------- /src/it/MPIR-407/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-407/pom.xml -------------------------------------------------------------------------------- /src/it/MPIR-407/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-407/verify.groovy -------------------------------------------------------------------------------- /src/it/MPIR-412/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-412/invoker.properties -------------------------------------------------------------------------------- /src/it/MPIR-412/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-412/pom.xml -------------------------------------------------------------------------------- /src/it/MPIR-412/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-412/verify.groovy -------------------------------------------------------------------------------- /src/it/MPIR-431/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-431/invoker.properties -------------------------------------------------------------------------------- /src/it/MPIR-431/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-431/pom.xml -------------------------------------------------------------------------------- /src/it/MPIR-431/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-431/verify.groovy -------------------------------------------------------------------------------- /src/it/MPIR-437/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-437/invoker.properties -------------------------------------------------------------------------------- /src/it/MPIR-437/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-437/pom.xml -------------------------------------------------------------------------------- /src/it/MPIR-437/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-437/verify.groovy -------------------------------------------------------------------------------- /src/it/MPIR-455/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-455/invoker.properties -------------------------------------------------------------------------------- /src/it/MPIR-455/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-455/pom.xml -------------------------------------------------------------------------------- /src/it/MPIR-455/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-455/verify.groovy -------------------------------------------------------------------------------- /src/it/MPIR-460-jar/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-460-jar/invoker.properties -------------------------------------------------------------------------------- /src/it/MPIR-460-jar/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-460-jar/pom.xml -------------------------------------------------------------------------------- /src/it/MPIR-460-jar/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-460-jar/verify.groovy -------------------------------------------------------------------------------- /src/it/MPIR-460-maven-plugin/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-460-maven-plugin/invoker.properties -------------------------------------------------------------------------------- /src/it/MPIR-460-maven-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-460-maven-plugin/pom.xml -------------------------------------------------------------------------------- /src/it/MPIR-460-maven-plugin/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-460-maven-plugin/verify.groovy -------------------------------------------------------------------------------- /src/it/MPIR-462/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-462/invoker.properties -------------------------------------------------------------------------------- /src/it/MPIR-462/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/MPIR-462/pom.xml -------------------------------------------------------------------------------- /src/it/dependencies-java-1.7-and-1.8/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/dependencies-java-1.7-and-1.8/pom.xml -------------------------------------------------------------------------------- /src/it/dependencies-java-1.7-and-1.8/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/dependencies-java-1.7-and-1.8/verify.groovy -------------------------------------------------------------------------------- /src/it/full-pom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/full-pom/pom.xml -------------------------------------------------------------------------------- /src/it/full-pom/src/site/custom/project-info-reports.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/full-pom/src/site/custom/project-info-reports.properties -------------------------------------------------------------------------------- /src/it/full-pom/src/site/custom/project-info-reports_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/full-pom/src/site/custom/project-info-reports_de.properties -------------------------------------------------------------------------------- /src/it/full-pom/src/site/custom/project-info-reports_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/full-pom/src/site/custom/project-info-reports_fr.properties -------------------------------------------------------------------------------- /src/it/full-pom/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/full-pom/verify.bsh -------------------------------------------------------------------------------- /src/it/git/inherited/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/git/inherited/pom.xml -------------------------------------------------------------------------------- /src/it/git/inherited/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/git/inherited/src/site/apt/index.apt.vm -------------------------------------------------------------------------------- /src/it/git/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/git/invoker.properties -------------------------------------------------------------------------------- /src/it/git/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/git/pom.xml -------------------------------------------------------------------------------- /src/it/git/push/inherited/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/git/push/inherited/pom.xml -------------------------------------------------------------------------------- /src/it/git/push/inherited/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/git/push/inherited/src/site/apt/index.apt.vm -------------------------------------------------------------------------------- /src/it/git/push/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/git/push/pom.xml -------------------------------------------------------------------------------- /src/it/git/push/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/git/push/src/site/apt/index.apt.vm -------------------------------------------------------------------------------- /src/it/git/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/git/src/site/apt/index.apt.vm -------------------------------------------------------------------------------- /src/it/java-version/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/java-version/invoker.properties -------------------------------------------------------------------------------- /src/it/java-version/plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/java-version/plugin/pom.xml -------------------------------------------------------------------------------- /src/it/java-version/pluginManagement/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/java-version/pluginManagement/pom.xml -------------------------------------------------------------------------------- /src/it/java-version/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/java-version/pom.xml -------------------------------------------------------------------------------- /src/it/java-version/property/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/java-version/property/pom.xml -------------------------------------------------------------------------------- /src/it/java-version/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/java-version/verify.groovy -------------------------------------------------------------------------------- /src/it/minimal-pom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/minimal-pom/pom.xml -------------------------------------------------------------------------------- /src/it/minimal-pom/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/minimal-pom/verify.bsh -------------------------------------------------------------------------------- /src/it/mpir-229/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/mpir-229/module1/pom.xml -------------------------------------------------------------------------------- /src/it/mpir-229/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/mpir-229/pom.xml -------------------------------------------------------------------------------- /src/it/mpir-229/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/mpir-229/src/site/site.xml -------------------------------------------------------------------------------- /src/it/mpir-229/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/mpir-229/verify.groovy -------------------------------------------------------------------------------- /src/it/mrm/repository/org/apache/maven/its/mpir-455/module-info-only-test/0.0.1/module-info-only-test-0.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/mrm/repository/org/apache/maven/its/mpir-455/module-info-only-test/0.0.1/module-info-only-test-0.0.1.jar -------------------------------------------------------------------------------- /src/it/mrm/repository/org/apache/maven/its/mpir-455/module-info-only-test/0.0.1/module-info-only-test-0.0.1.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/mrm/repository/org/apache/maven/its/mpir-455/module-info-only-test/0.0.1/module-info-only-test-0.0.1.pom -------------------------------------------------------------------------------- /src/it/mrm/repository/org/apache/maven/its/mpir-455/multi-release-test/0.0.1/multi-release-test-0.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/mrm/repository/org/apache/maven/its/mpir-455/multi-release-test/0.0.1/multi-release-test-0.0.1.jar -------------------------------------------------------------------------------- /src/it/mrm/repository/org/apache/maven/its/mpir-455/multi-release-test/0.0.1/multi-release-test-0.0.1.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/mrm/repository/org/apache/maven/its/mpir-455/multi-release-test/0.0.1/multi-release-test-0.0.1.pom -------------------------------------------------------------------------------- /src/it/multi-module/dep/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/multi-module/dep/pom.xml -------------------------------------------------------------------------------- /src/it/multi-module/dep/src/main/java/org/apache/maven/its/dep/Dep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/multi-module/dep/src/main/java/org/apache/maven/its/dep/Dep.java -------------------------------------------------------------------------------- /src/it/multi-module/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/multi-module/invoker.properties -------------------------------------------------------------------------------- /src/it/multi-module/main/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/multi-module/main/pom.xml -------------------------------------------------------------------------------- /src/it/multi-module/main/src/main/java/org/apache/maven/its/main/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/multi-module/main/src/main/java/org/apache/maven/its/main/Main.java -------------------------------------------------------------------------------- /src/it/multi-module/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/multi-module/pom.xml -------------------------------------------------------------------------------- /src/it/multi-module/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/multi-module/verify.groovy -------------------------------------------------------------------------------- /src/it/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/settings.xml -------------------------------------------------------------------------------- /src/it/team-local-avatars/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/team-local-avatars/pom.xml -------------------------------------------------------------------------------- /src/it/team-local-avatars/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/it/team-local-avatars/verify.groovy -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/AbstractProjectInfoRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/AbstractProjectInfoRenderer.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/AbstractProjectInfoReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/AbstractProjectInfoReport.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/CiManagementReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/CiManagementReport.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/DependenciesReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/DependenciesReport.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/DependencyConvergenceReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/DependencyConvergenceReport.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/DependencyInformationReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/DependencyInformationReport.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/DependencyManagementReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/DependencyManagementReport.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/DistributionManagementReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/DistributionManagementReport.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/IndexReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/IndexReport.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/IssueManagementReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/IssueManagementReport.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/LicenseMapping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/LicenseMapping.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/LicensesReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/LicensesReport.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/MailingListsReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/MailingListsReport.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/ModulesReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/ModulesReport.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/PluginManagementReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/PluginManagementReport.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/PluginsReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/PluginsReport.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/ProjectInfoReportUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/ProjectInfoReportUtils.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/ScmReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/ScmReport.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/SummaryReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/SummaryReport.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/TeamReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/TeamReport.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/avatars/AvatarsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/avatars/AvatarsProvider.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/avatars/GravatarProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/avatars/GravatarProvider.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/dependencies/Dependencies.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/dependencies/Dependencies.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/dependencies/DependenciesReportConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/dependencies/DependenciesReportConfiguration.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/dependencies/DependencyVersionMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/dependencies/DependencyVersionMap.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/dependencies/ManagementDependencies.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/dependencies/ManagementDependencies.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/dependencies/RepositoryUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/dependencies/RepositoryUtils.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/dependencies/SinkSerializingDependencyNodeVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/dependencies/SinkSerializingDependencyNodeVisitor.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/dependencies/renderer/DependenciesRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/dependencies/renderer/DependenciesRenderer.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/report/projectinfo/dependencies/renderer/DependencyManagementRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/java/org/apache/maven/report/projectinfo/dependencies/renderer/DependencyManagementRenderer.java -------------------------------------------------------------------------------- /src/main/resources/org/apache/maven/report/projectinfo/avatars/default-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/org/apache/maven/report/projectinfo/avatars/default-avatar.jpg -------------------------------------------------------------------------------- /src/main/resources/org/apache/maven/report/projectinfo/resources/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/org/apache/maven/report/projectinfo/resources/images/close.gif -------------------------------------------------------------------------------- /src/main/resources/org/apache/maven/report/projectinfo/resources/resources.txt: -------------------------------------------------------------------------------- 1 | images/close.gif 2 | -------------------------------------------------------------------------------- /src/main/resources/project-info-reports.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_cs.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_de.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_en.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_es.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_fr.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_gl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_gl.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_hu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_hu.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_it.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_ja.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_ko.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_lt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_lt.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_nl.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_no.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_no.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_pl.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_pt.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_pt_BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_pt_BR.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_ru.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_sk.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_sk.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_sv.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_sv.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_tr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_tr.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_zh_CN.properties -------------------------------------------------------------------------------- /src/main/resources/project-info-reports_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/main/resources/project-info-reports_zh_TW.properties -------------------------------------------------------------------------------- /src/site/apt/examples/custom-report.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/site/apt/examples/custom-report.apt.vm -------------------------------------------------------------------------------- /src/site/apt/examples/individual-reports.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/site/apt/examples/individual-reports.apt -------------------------------------------------------------------------------- /src/site/apt/examples/scm-report.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/site/apt/examples/scm-report.apt.vm -------------------------------------------------------------------------------- /src/site/apt/examples/selective-reports.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/site/apt/examples/selective-reports.apt.vm -------------------------------------------------------------------------------- /src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/site/apt/index.apt.vm -------------------------------------------------------------------------------- /src/site/apt/usage.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/site/apt/usage.apt -------------------------------------------------------------------------------- /src/site/fml/faq.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/site/fml/faq.fml -------------------------------------------------------------------------------- /src/site/resources/download.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/site/resources/download.cgi -------------------------------------------------------------------------------- /src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/site/site.xml -------------------------------------------------------------------------------- /src/site/xdoc/download.xml.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/site/xdoc/download.xml.vm -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/AbstractProjectInfoTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/AbstractProjectInfoTestCase.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/CiManagementReportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/CiManagementReportTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/DependenciesReportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/DependenciesReportTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/DependencyConvergenceReportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/DependencyConvergenceReportTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/DependencyManagementReportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/DependencyManagementReportTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/IndexReportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/IndexReportTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/IssueManagementReportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/IssueManagementReportTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/LicensesReportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/LicensesReportTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/MailingListsReportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/MailingListsReportTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/ModulesReportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/ModulesReportTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/PluginManagementReportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/PluginManagementReportTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/ProjectInfoReportUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/ProjectInfoReportUtilsTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/ScmReportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/ScmReportTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/SummaryReportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/SummaryReportTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/TeamReportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/TeamReportTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/avatars/GravatarProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/avatars/GravatarProviderTest.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/CiManagementStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/CiManagementStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/CiManagementWithCiSectionStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/CiManagementWithCiSectionStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/DefaultArtifactHandlerStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/DefaultArtifactHandlerStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/DependenciesStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/DependenciesStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/DependencyArtifactStubFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/DependencyArtifactStubFactory.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/DependencyConvergenceStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/DependencyConvergenceStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/DependencyManagementStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/DependencyManagementStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/IndexStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/IndexStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/IssueManagementStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/IssueManagementStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/LicensesStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/LicensesStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/MailingListsInvalidLinkStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/MailingListsInvalidLinkStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/MailingListsStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/MailingListsStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/MailingListsStub2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/MailingListsStub2.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/ModulesStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/ModulesStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/ModulesVariableSettingInterpolationStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/ModulesVariableSettingInterpolationStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/PluginManagementMPIR375Stub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/PluginManagementMPIR375Stub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/PluginManagementStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/PluginManagementStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/ProjectInfoPluginArtifactStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/ProjectInfoPluginArtifactStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/ProjectInfoProjectStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/ProjectInfoProjectStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/ScmStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/ScmStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/SettingsSitePublishVariableStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/SettingsSitePublishVariableStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/SettingsStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/SettingsStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/SubProject1Stub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/SubProject1Stub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/SubProject2Stub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/SubProject2Stub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/SummaryStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/SummaryStub.java -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/report/projectinfo/stubs/TeamStub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/java/org/apache/maven/report/projectinfo/stubs/TeamStub.java -------------------------------------------------------------------------------- /src/test/resources/iso-8859-5-encoded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/iso-8859-5-encoded.txt -------------------------------------------------------------------------------- /src/test/resources/org/apache/maven/report/projectinfo/AbstractProjectInfoTestCase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/org/apache/maven/report/projectinfo/AbstractProjectInfoTestCase.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/ci-management-plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/ci-management-plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/ci-management-plugin-with-ci-section-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/ci-management-plugin-with-ci-section-config.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/custom-bundle/plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/custom-bundle/plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/custom-bundle/src/site/custom/project-info-reports.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/custom-bundle/src/site/custom/project-info-reports.properties -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/dependencies-plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/dependencies-plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/dependency-convergence-plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/dependency-convergence-plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/dependency-management-plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/dependency-management-plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/index-plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/index-plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/issue-management-plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/issue-management-plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/licenses-plugin-config-linkonly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/licenses-plugin-config-linkonly.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/licenses-plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/licenses-plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/mailing-lists-plugin-config-fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/mailing-lists-plugin-config-fr.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/mailing-lists-plugin-config-invalidlink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/mailing-lists-plugin-config-invalidlink.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/mailing-lists-plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/mailing-lists-plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/modules-plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/modules-plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/modules-variable-settings-interpolated-plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/modules-variable-settings-interpolated-plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/plugin-management-plugin-config-MPIR-375.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/plugin-management-plugin-config-MPIR-375.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/plugin-management-plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/plugin-management-plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/scm-plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/scm-plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/scm-wrong-url-plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/scm-wrong-url-plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/subproject-site-url/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/subproject-site-url/pom.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/subproject1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/subproject1/pom.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/subproject2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/subproject2/pom.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/summary-plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/summary-plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/plugin-configs/team-plugin-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/plugin-configs/team-plugin-config.xml -------------------------------------------------------------------------------- /src/test/resources/realm.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-project-info-reports-plugin/HEAD/src/test/resources/realm.properties --------------------------------------------------------------------------------