├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── maven.yml │ ├── pr-automation.yml │ └── release-drafter.yml ├── .gitignore ├── .mvn └── README.txt ├── LICENSE.txt ├── README.md ├── config └── checkstyle-header.txt ├── pom.xml └── src ├── build └── scripts │ └── GenerateSpdxLicenseList.groovy ├── it ├── ISSUE-135 │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ └── original │ │ └── java │ │ └── org │ │ └── example │ │ └── test │ │ ├── InvalidLicenseHeader.java │ │ └── package-info.java ├── ISSUE-145-2 │ ├── README.txt │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ ├── submodule1 │ │ └── pom.xml │ ├── submodule2 │ │ └── pom.xml │ ├── submodule3 │ │ └── pom.xml │ └── submodule4 │ │ └── pom.xml ├── ISSUE-145 │ ├── README.txt │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ ├── submodule1 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── codehaus │ │ │ └── mojo │ │ │ └── license │ │ │ └── Application.java │ └── submodule2 │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── license │ │ └── AnImportantDependency.java ├── ISSUE-154 │ ├── expected_licenses.xml │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── alternative.txt ├── ISSUE-159 │ ├── README.txt │ ├── invoker.properties │ └── pom.xml ├── ISSUE-166 │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ ├── prebuild.groovy │ └── src │ │ └── main │ │ └── bash │ │ └── license-test.sh ├── ISSUE-174 │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── HelloWorld.java ├── ISSUE-195 │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ ├── license │ │ └── licenses.xml │ │ └── main │ │ └── java │ │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── HelloWorld.java ├── ISSUE-197 │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ ├── prebuild.groovy │ └── src │ │ ├── license │ │ └── licenses.xml │ │ └── main │ │ └── java │ │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── HelloWorld.java ├── ISSUE-21 │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── HelloWorld.java ├── ISSUE-22 │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── main │ │ └── resources │ │ ├── HelloWorld.html │ │ ├── HelloWorld2.html │ │ ├── HelloWorld3.html │ │ └── HelloWorld4.xhtml ├── ISSUE-31 │ ├── README.txt │ ├── child1 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── classpath │ │ │ ├── header.txt │ │ │ └── license.txt │ │ │ └── licenses.properties │ ├── child2 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── codehaus │ │ │ └── mojo │ │ │ └── license │ │ │ └── test │ │ │ └── File1.java │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── ISSUE-312 │ ├── child1 │ │ └── pom.xml │ ├── child2 │ │ └── pom.xml │ ├── child3 │ │ ├── pom.xml │ │ └── src │ │ │ └── licenses │ │ │ └── local │ │ │ └── apache20.txt │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── ISSUE-324 │ ├── README.txt │ ├── child1 │ │ └── pom.xml │ ├── child2 │ │ └── pom.xml │ ├── invoker.properties │ └── pom.xml ├── ISSUE-345-2 │ ├── invoker.properties │ ├── license.merges │ ├── pom.xml │ └── postbuild.groovy ├── ISSUE-345 │ ├── invoker.properties │ ├── license.merges │ ├── pom.xml │ └── postbuild.groovy ├── ISSUE-351 │ ├── child1-multi-license │ │ └── pom.xml │ ├── child2-overriding │ │ ├── pom.xml │ │ └── src │ │ │ └── license │ │ │ └── override-THIRD-PARTY.properties │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── ISSUE-358 │ ├── child-1 │ │ └── pom.xml │ ├── invoker.properties │ └── pom.xml ├── ISSUE-361 │ ├── README.txt │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── ISSUE-38 │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── main │ │ └── docker │ │ └── DockerFile ├── ISSUE-40 │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── ISSUE-423 │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── license │ │ └── override-THIRD-PARTY.properties ├── ISSUE-508 │ ├── invoker.properties │ ├── module-a │ │ └── pom.xml │ ├── pom.xml │ ├── postbuild.groovy │ └── prebuild.groovy ├── ISSUE-55 │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── license │ │ └── licenses.xml ├── ISSUE-59 │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── license │ │ └── override-THIRD-PARTY.properties ├── ISSUE-7 │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── HelloWorld.java ├── ISSUE-80 │ ├── expected_licenses.xml │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── MLICENSE-132 │ ├── consume-db │ │ └── pom.xml │ ├── invoker.properties │ ├── licenses.merge │ ├── pom.xml │ └── postbuild.groovy ├── MLICENSE-2 │ ├── README.txt │ ├── child1 │ │ └── pom.xml │ ├── child2 │ │ ├── pom.xml │ │ └── src │ │ │ └── license │ │ │ └── THIRD-PARTY.properties │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── MLICENSE-21 │ ├── README.txt │ ├── child1 │ │ ├── pom.xml │ │ └── src │ │ │ └── license │ │ │ └── THIRD-PARTY.properties │ ├── child2 │ │ └── pom.xml │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── MLICENSE-23 │ ├── README.txt │ ├── invoker.properties │ └── pom.xml ├── MLICENSE-24 │ ├── README.txt │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── MLICENSE-25 │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── MLICENSE-27 │ ├── README.txt │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── license │ │ └── test │ │ ├── MyBean.java │ │ ├── MyBean2.java │ │ └── MyBean3.java ├── MLICENSE-28 │ ├── README.txt │ ├── child1 │ │ └── pom.xml │ ├── child2 │ │ ├── pom.xml │ │ └── src │ │ │ └── license │ │ │ └── THIRD-PARTY.properties │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── MLICENSE-3 │ ├── README.txt │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── license │ │ └── plugin │ │ └── test │ │ ├── MyBean.java │ │ ├── MyBean2.java │ │ └── MyBean3.java ├── MLICENSE-30 │ ├── README.txt │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── codehaus │ │ │ └── mojo │ │ │ └── license │ │ │ └── test │ │ │ ├── MyBean.java │ │ │ ├── MyBean2.java │ │ │ └── MyBean3.java │ │ └── license │ │ └── descriptionTemplate.ftl ├── MLICENSE-33 │ ├── README.txt │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── license │ │ └── THIRD-PARTY.properties ├── MLICENSE-36 │ ├── README.txt │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── main │ │ └── license │ │ └── myTemplate.ftl ├── MLICENSE-37-blacklist-fail │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── MLICENSE-37-blacklist-success │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── MLICENSE-37-whitelist-fail │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── MLICENSE-37-whitelist-success │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── MLICENSE-4 │ ├── README.txt │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── MLICENSE-44 │ ├── README.txt │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ ├── license │ │ ├── licenses.properties │ │ └── test │ │ │ ├── descriptionTemplate.ftl │ │ │ ├── header.txt │ │ │ └── license.txt │ │ └── main │ │ └── java │ │ └── test │ │ ├── File1.java │ │ ├── File2.java │ │ ├── File3.java │ │ └── File4.java ├── MLICENSE-45 │ ├── README.txt │ ├── child1 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── mypackage │ │ │ └── mylicensestore │ │ │ ├── classpath │ │ │ ├── header.txt │ │ │ └── license.txt │ │ │ └── licenses.properties │ ├── child2 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── codehaus │ │ │ └── mojo │ │ │ └── license │ │ │ └── test │ │ │ └── File1.java │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── MLICENSE-5 │ ├── LICENSE.html │ ├── README.txt │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── license │ │ ├── licenses.properties │ │ ├── my_license │ │ ├── header.txt │ │ └── license.txt │ │ └── my_license2 │ │ ├── TheHeader.rst │ │ └── TheLicense.rst ├── MLICENSE-53 │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── MLICENSE-55 │ ├── LICENSE.txt │ ├── invoker.properties │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── info │ │ └── gianlucacosta │ │ └── tests │ │ └── licensetest │ │ └── App.java ├── MLICENSE-71 │ ├── README.txt │ ├── invoker.properties │ └── pom.xml ├── MLICENSE-72 │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── MLICENSE-92 │ ├── LICENSE.txt │ ├── README.txt │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── license │ │ ├── licenses.properties │ │ └── mylicense │ │ ├── header.txt.ftl │ │ └── license.txt.ftl ├── PR-32 │ ├── child1 │ │ └── pom.xml │ ├── child2 │ │ └── pom.xml │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── PR-33 │ ├── child1 │ │ └── pom.xml │ ├── child2 │ │ └── pom.xml │ ├── child3 │ │ └── pom.xml │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── PR-64-aggregate-unknown-license │ ├── child1 │ │ └── pom.xml │ ├── child2 │ │ └── pom.xml │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── license │ │ └── THIRD-PARTY.properties ├── add-third-party-excluded-included │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── add-third-party-global-db │ ├── consume-db │ │ └── pom.xml │ ├── invoker.properties │ ├── misc-dep │ │ └── pom.xml │ ├── pom.xml │ ├── postbuild.groovy │ └── publish-db │ │ ├── pom.xml │ │ └── src │ │ └── license │ │ └── test.license.properties ├── add-third-party-merge-licenses │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── add-third-party-missing-file │ ├── invoker.properties │ ├── missing-licenses.properties │ ├── pom.xml │ ├── postbuild.groovy │ ├── prebuild.groovy │ └── src │ │ └── license │ │ └── THIRD-PARTY.properties ├── add-third-party-missing-pom │ ├── README.txt │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── add-third-party-no-deps │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── add-third-party-no-encoding │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── add-third-party-skip-second-execution │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── add-third-party-with-deps-name-order │ ├── README.txt │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── add-third-party-with-deps │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── aggregate-add-third-party-bad-license │ ├── README.txt │ ├── child1 │ │ └── pom.xml │ ├── child2 │ │ └── pom.xml │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── aggregate-add-third-party-exclude-transitive-deps │ ├── child1 │ │ └── pom.xml │ ├── child2 │ │ └── pom.xml │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── aggregate-add-third-party-filtered-modules │ ├── child1 │ │ └── pom.xml │ ├── child2 │ │ └── pom.xml │ ├── child3 │ │ └── pom.xml │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── aggregate-add-third-party-global-db │ ├── consume-db │ │ └── pom.xml │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── aggregate-add-third-party-include-optional │ ├── child1 │ │ └── pom.xml │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── aggregate-add-third-party-missing-file │ ├── child │ │ └── pom.xml │ ├── invoker.properties │ ├── missingFile.properties │ ├── missingFileBoth.properties │ ├── missingFileUrl.properties │ ├── missingFileUrlBoth.properties │ ├── pom.xml │ └── postbuild.groovy ├── aggregate-add-third-party-multimodule-filters │ ├── child1 │ │ └── pom.xml │ ├── child2 │ │ └── pom.xml │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── aggregate-add-third-party-no-children │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── aggregate-add-third-party-second-execution │ ├── child1 │ │ └── pom.xml │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── aggregate-add-third-party-simple │ ├── child1 │ │ └── pom.xml │ ├── child2 │ │ └── pom.xml │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── aggregate-download-licenses-extended-spreadsheet │ ├── child1 │ │ └── pom.xml │ ├── child2 │ │ └── pom.xml │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── aggregate-third-party-report-merge-licences │ ├── child1 │ │ └── pom.xml │ ├── child2 │ │ └── pom.xml │ ├── invoker.properties │ ├── license.merges │ ├── pom.xml │ └── postbuild.groovy ├── aggregate-third-party-report │ ├── child1 │ │ └── pom.xml │ ├── child2 │ │ └── pom.xml │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── check-project-license-fail │ ├── LICENSE.txt │ ├── child1 │ │ ├── LICENSE.txt │ │ └── pom.xml │ ├── child2 │ │ └── pom.xml │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── download-licenses-basic │ ├── expected_licenses_ordering_1.xml │ ├── expected_licenses_ordering_2.xml │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── HelloWorld.java ├── download-licenses-configured │ ├── artifact-filters.txt │ ├── invoker.properties │ ├── licenses-artifact-filters-url.expected.xml │ ├── licenses-delete-orphans.expected.xml │ ├── licenses-insert-versions.expected.xml │ ├── licenses-no-download.expected.xml │ ├── licenses-pre-1.18.expected.xml │ ├── licenses-since-1.18.expected.xml │ ├── pom.xml │ ├── postbuild.groovy │ ├── prebuild.groovy │ ├── src │ │ ├── license │ │ │ ├── content-sanitizers │ │ │ │ ├── apache-2.0.expected.txt │ │ │ │ ├── apache-2.0.txt │ │ │ │ ├── bsd3-asm.expected.txt │ │ │ │ └── bsd3-asm.txt │ │ │ ├── licenses-config-content-sanitizers.xml │ │ │ ├── licenses-config-delete-orphans.xml │ │ │ ├── licenses-config-no-download.xml │ │ │ ├── licenses-config-pre-1.18.xml │ │ │ ├── licenses-config-since-1.18.xml │ │ │ └── licenses-input-insert-versions.xml │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── codehaus │ │ │ └── mojo │ │ │ └── HelloWorld.java │ └── target-initial │ │ ├── delete-orphans │ │ ├── licenses.xml │ │ └── licenses │ │ │ ├── apache-license-2.0-license-2.0.txt │ │ │ ├── bsd-3-clause-asm-license.txt │ │ │ └── foo-bar-license.txt │ │ └── no-download │ │ ├── licenses.xml │ │ └── licenses │ │ ├── apache-license-2.0-license-2.0.txt │ │ └── bsd-3-clause-asm-license.txt ├── download-licenses-exclude-transitive-deps │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── HelloWorld.java ├── download-licenses-failFast │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ ├── license │ │ └── licenses.xml │ │ └── main │ │ └── java │ │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── HelloWorld.java ├── download-licenses-file-names-bad-sha1-force │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ ├── license │ │ └── licenses.xml │ │ └── main │ │ └── java │ │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── HelloWorld.java ├── download-licenses-file-names │ ├── invoker.properties │ ├── licenses-basic.expected.xml │ ├── licenses-cleanLicDir.expected.xml │ ├── licenses-config-basic.xml │ ├── licenses-config-no-versions.xml │ ├── licenses-spdx.expected.xml │ ├── pom.xml │ ├── postbuild.groovy │ ├── prebuild.groovy │ ├── src │ │ ├── license │ │ │ └── licenses.xml │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── codehaus │ │ │ └── mojo │ │ │ └── HelloWorld.java │ └── target-initial │ │ ├── basic │ │ └── licenses.xml │ │ └── cleanLicDir │ │ ├── licenses.xml │ │ └── licenses │ │ └── foo.txt ├── download-licenses-force │ ├── invoker.properties │ ├── licenses-errors.expected.xml │ ├── licenses.expected.xml │ ├── pom.xml │ ├── postbuild.groovy │ ├── prebuild.groovy │ ├── src │ │ ├── license │ │ │ └── licenses.xml │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── codehaus │ │ │ └── mojo │ │ │ └── HelloWorld.java │ └── target-initial │ │ └── generated-resources │ │ ├── licenses.xml │ │ └── licenses │ │ └── apache license 2.0 - license-2.0.txt ├── download-licenses-include-exclude-types │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── HelloWorld.java ├── download-licenses-proxy │ ├── invoker.properties │ ├── licenses.expected.xml │ ├── pom.xml │ ├── postbuild.groovy │ ├── prebuild.groovy │ └── src │ │ ├── license │ │ └── licenses.xml │ │ └── main │ │ └── java │ │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── HelloWorld.java ├── dual-licensed-blacklist │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── dual-licensed-both-whitelisted │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── dual-licensed-none-whitelisted │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── dual-licensed-one-whitelisted │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── inception-year-only-copyright-format │ ├── README.md │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── main │ │ └── original │ │ └── java │ │ └── org │ │ └── example │ │ └── test │ │ ├── SampleFile.java │ │ └── package-info.java ├── license-list │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── licenseMergeUserProperty-with-merges │ ├── consume-db │ │ └── pom.xml │ ├── invoker.properties │ ├── licenses.merge │ ├── pom.xml │ └── postbuild.groovy ├── override-copyright-format │ ├── README.md │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── main │ │ └── original │ │ └── java │ │ └── org │ │ └── example │ │ └── test │ │ ├── SampleFile.java │ │ └── package-info.java ├── settings-proxy.xml ├── settings.xml ├── third-party-report-global-db │ ├── consume-db │ │ └── pom.xml │ ├── invoker.properties │ ├── pom.xml │ └── postbuild.groovy ├── third-party-report │ ├── README.txt │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ └── license │ │ └── THIRD-PARTY.properties ├── update-file-header-test-mojo │ ├── LICENSE.txt │ ├── README.txt │ ├── changelog.txt │ ├── child1 │ │ ├── pom.xml │ │ └── src │ │ │ ├── files │ │ │ ├── apt │ │ │ │ ├── test.apt │ │ │ │ └── test2.apt │ │ │ ├── ftl │ │ │ │ ├── test.ftl │ │ │ │ └── test2.ftl │ │ │ ├── jsp │ │ │ │ ├── test.jsp │ │ │ │ └── test2.jsp │ │ │ ├── mysql │ │ │ │ ├── test.mysql │ │ │ │ └── test2.mysql │ │ │ ├── properties │ │ │ │ ├── test.properties │ │ │ │ ├── test.sh │ │ │ │ ├── test2.properties │ │ │ │ └── test2.sh │ │ │ ├── rst │ │ │ │ ├── test.rst │ │ │ │ └── test2.rst │ │ │ ├── sql │ │ │ │ ├── test.sql │ │ │ │ └── test2.sql │ │ │ └── xml │ │ │ │ ├── test.xml │ │ │ │ └── test2.xml │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── codehaus │ │ │ └── mojo2 │ │ │ └── license │ │ │ ├── MyBean.java │ │ │ ├── MyBean2.java │ │ │ └── MyBean3.java │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ │ ├── files │ │ ├── apt │ │ │ ├── test.apt │ │ │ ├── test.apt2 │ │ │ ├── test2.apt │ │ │ └── test2.apt2 │ │ ├── ftl │ │ │ ├── test.ftl │ │ │ ├── test.ftl2 │ │ │ ├── test2.ftl │ │ │ └── test2.ftl2 │ │ ├── jsp │ │ │ ├── test.jsp │ │ │ ├── test.jsp2 │ │ │ ├── test2.jsp │ │ │ └── test2.jsp2 │ │ ├── mysql │ │ │ ├── test.mysql │ │ │ ├── test.mysql2 │ │ │ ├── test2.mysql │ │ │ └── test2.mysql2 │ │ ├── properties │ │ │ ├── test.crlf.sh │ │ │ ├── test.properties │ │ │ ├── test.properties2 │ │ │ ├── test.sh │ │ │ ├── test.sh2 │ │ │ ├── test2.properties │ │ │ ├── test2.properties2 │ │ │ ├── test2.sh │ │ │ └── test2.sh2 │ │ ├── rst │ │ │ ├── rst2 │ │ │ │ └── test.rst │ │ │ ├── test.rst │ │ │ ├── test.rst2 │ │ │ ├── test2.rst │ │ │ └── test2.rst2 │ │ ├── sql │ │ │ ├── test.sql │ │ │ ├── test.sql2 │ │ │ ├── test2.sql │ │ │ └── test2.sql2 │ │ └── xml │ │ │ ├── test.xml │ │ │ ├── test.xml2 │ │ │ ├── test2.xml │ │ │ └── test2.xml2 │ │ └── main │ │ └── java │ │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── license │ │ ├── MyBean.java │ │ ├── MyBean.java2 │ │ ├── MyBean2.java │ │ ├── MyBean2.java2 │ │ ├── MyBean3.java │ │ ├── MyBean3.java2 │ │ └── java-info.java └── update-project-license-test-mojo │ ├── LICENSE.txt │ ├── README.txt │ ├── changelog.txt │ ├── invoker.properties │ ├── pom.xml │ ├── postbuild.groovy │ └── src │ └── main │ └── java │ └── org │ └── codehaus │ └── license │ └── plugin │ └── test │ ├── MyBean.java │ ├── MyBean2.java │ └── MyBean3.java ├── license-test ├── test-add-third-party-global-db-misc-dep-1.jar └── test.license.properties ├── license └── THIRD-PARTY.properties ├── main ├── java │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── license │ │ ├── AbstractAddThirdPartyMojo.java │ │ ├── AbstractDownloadLicensesMojo.java │ │ ├── AbstractFileHeaderMojo.java │ │ ├── AbstractLicenseMojo.java │ │ ├── AbstractLicenseNameMojo.java │ │ ├── AbstractLicenseReportRenderer.java │ │ ├── AbstractLicensesXmlMojo.java │ │ ├── AbstractThirdPartyReport.java │ │ ├── AddThirdPartyMojo.java │ │ ├── AggregateDownloadLicensesMojo.java │ │ ├── AggregatorAddThirdPartyMojo.java │ │ ├── AggregatorThirdPartyReport.java │ │ ├── CheckFileHeaderMojo.java │ │ ├── CheckProjectLicenseMojo.java │ │ ├── CommentStyleListMojo.java │ │ ├── DownloadLicensesMojo.java │ │ ├── Eol.java │ │ ├── FileState.java │ │ ├── LicenseContentSanitizer.java │ │ ├── LicenseListMojo.java │ │ ├── LicenseMojoUtils.java │ │ ├── LicenseUrlReplacement.java │ │ ├── LicensesXmlInsertVersionsMojo.java │ │ ├── RemoveFileHeaderMojo.java │ │ ├── ThirdPartyReport.java │ │ ├── ThirdPartyReportRenderer.java │ │ ├── UpdateFileHeaderMojo.java │ │ ├── UpdateProjectLicenseMojo.java │ │ ├── api │ │ ├── ArtifactFilters.java │ │ ├── DefaultThirdPartyDetails.java │ │ ├── DefaultThirdPartyHelper.java │ │ ├── DefaultThirdPartyTool.java │ │ ├── DependenciesTool.java │ │ ├── DependenciesToolException.java │ │ ├── FreeMarkerHelper.java │ │ ├── MavenProjectDependenciesConfigurator.java │ │ ├── ResolvedProjectDependencies.java │ │ ├── ThirdPartyDetails.java │ │ ├── ThirdPartyHelper.java │ │ ├── ThirdPartyTool.java │ │ ├── ThirdPartyToolException.java │ │ └── package.html │ │ ├── download │ │ ├── Cache.java │ │ ├── FileNameEntry.java │ │ ├── License.java │ │ ├── LicenseDownloader.java │ │ ├── LicenseMatchers.java │ │ ├── LicenseSummaryReader.java │ │ ├── LicenseSummaryWriter.java │ │ ├── LicensedArtifact.java │ │ ├── LicensedArtifactResolver.java │ │ ├── PreferredFileNames.java │ │ ├── ProjectLicense.java │ │ ├── ProjectLicenseInfo.java │ │ └── UrlReplacements.java │ │ ├── extended │ │ ├── ExtendedInfo.java │ │ ├── InfoFile.java │ │ └── spreadsheet │ │ │ ├── CalcFileWriter.java │ │ │ ├── ExcelFileWriter.java │ │ │ └── SpreadsheetUtil.java │ │ ├── header │ │ ├── FileHeader.java │ │ ├── FileHeaderFilter.java │ │ ├── FileHeaderProcessor.java │ │ ├── InvalideFileHeaderException.java │ │ ├── UpdateFileHeaderFilter.java │ │ ├── package.html │ │ └── transformer │ │ │ ├── AbstractFileHeaderTransformer.java │ │ │ ├── AptFileHeaderTransformer.java │ │ │ ├── FileHeaderTransformer.java │ │ │ ├── FreeMarkerFileHeaderTransformer.java │ │ │ ├── HtmlFileHeaderTransformer.java │ │ │ ├── JavaFileHeaderTransformer.java │ │ │ ├── JspFileHeaderTransformer.java │ │ │ ├── MySqlFileHeaderTransformer.java │ │ │ ├── PhpFileHeaderTransformer.java │ │ │ ├── PropertiesFileHeaderTransformer.java │ │ │ ├── RstFileHeaderTransformer.java │ │ │ ├── SqlFileHeaderTransformer.java │ │ │ ├── XmlFileHeaderTransformer.java │ │ │ └── package.html │ │ ├── model │ │ ├── Copyright.java │ │ ├── License.java │ │ ├── LicenseMap.java │ │ ├── LicenseRepository.java │ │ ├── LicenseStore.java │ │ ├── RootPackageClassPathLicenseRepository.java │ │ └── package.html │ │ ├── spdx │ │ ├── SpdxLicenseInfo.java │ │ ├── SpdxLicenseList.java │ │ └── SpdxLicenseListData.java │ │ └── utils │ │ ├── FileUtil.java │ │ ├── ModuleHelper.java │ │ ├── MojoHelper.java │ │ ├── SortedProperties.java │ │ ├── StringToList.java │ │ └── UrlRequester.java └── resources │ ├── META-INF │ ├── licenses │ │ ├── agpl_v3 │ │ │ ├── header.txt │ │ │ └── license.txt │ │ ├── apache_v2 │ │ │ ├── header.txt │ │ │ └── license.txt │ │ ├── bsd_2 │ │ │ ├── header.txt │ │ │ └── license.txt.ftl │ │ ├── bsd_3 │ │ │ ├── header.txt.ftl │ │ │ └── license.txt.ftl │ │ ├── cddl_v1 │ │ │ ├── header.txt │ │ │ └── license.txt │ │ ├── epl_only_v1 │ │ │ ├── header.txt │ │ │ └── license.txt │ │ ├── epl_only_v2 │ │ │ ├── header.txt │ │ │ └── license.txt │ │ ├── epl_v1 │ │ │ ├── header.txt │ │ │ └── license.txt │ │ ├── epl_v2 │ │ │ ├── header.txt │ │ │ └── license.txt │ │ ├── eupl_v1_1 │ │ │ ├── header.txt │ │ │ └── license.txt │ │ ├── fdl_v1_3 │ │ │ ├── header.txt │ │ │ └── license.txt │ │ ├── gpl_v1 │ │ │ ├── header.txt │ │ │ └── license.txt │ │ ├── gpl_v2 │ │ │ ├── header.txt │ │ │ └── license.txt │ │ ├── gpl_v3 │ │ │ ├── header.txt │ │ │ └── license.txt │ │ ├── lgpl_v2_1 │ │ │ ├── header.txt │ │ │ └── license.txt │ │ ├── lgpl_v3 │ │ │ ├── header.txt │ │ │ └── license.txt │ │ ├── licenses.properties │ │ └── mit │ │ │ ├── header.txt │ │ │ └── license.txt.ftl │ └── m2e │ │ └── lifecycle-mapping-metadata.xml │ ├── aggregate-third-party-report.properties │ ├── aggregate-third-party-report_en.properties │ ├── aggregate-third-party-report_fr.properties │ ├── log4j.properties │ ├── org │ └── codehaus │ │ └── mojo │ │ └── license │ │ ├── default-file-header-description.ftl │ │ ├── licenses.xsd │ │ ├── third-party-file-groupByLicense.ftl │ │ ├── third-party-file-groupByMultiLicense.ftl │ │ └── third-party-file.ftl │ ├── third-party-report.properties │ ├── third-party-report_en.properties │ └── third-party-report_fr.properties ├── site ├── apt │ ├── examples │ │ ├── example-add-license.apt.vm │ │ ├── example-comment-style-list.apt.vm │ │ ├── example-download-licenses.apt.vm │ │ ├── example-license-list.apt.vm │ │ ├── example-thirdparty.apt.vm │ │ └── update-file-header-config.apt.vm │ ├── header.apt │ ├── index.apt.vm │ └── usage.apt.vm ├── fml │ └── faq.fml └── site.xml └── test ├── java └── org │ └── codehaus │ └── mojo │ └── license │ ├── LicenseMojoUtilsTest.java │ ├── MockLogger.java │ ├── api │ ├── ArtifactFiltersTest.java │ └── FreeMarkerHelperTest.java │ ├── download │ ├── LicenseDownloaderTest.java │ ├── LicenseMatchersTest.java │ └── LicenseSummaryTest.java │ ├── header │ └── transformer │ │ ├── AbstractFileHeaderTransformerTest.java │ │ ├── JavaFileHeaderTransformerTest.java │ │ └── XmlFileHeaderTransformerTest.java │ ├── model │ ├── LicenseMapTest.java │ ├── LicenseRepositoryTest.java │ └── LicenseStoreTest.java │ ├── spdx │ ├── SpdxLicenseListDataTest.java │ └── SpdxLicenseListTest.java │ └── utils │ ├── ModuleHelperTest.java │ └── UrlRequesterTest.java └── resources ├── license-summary-test.xml ├── log4j.properties ├── newRepository ├── license1 │ ├── header.txt │ └── license.txt ├── license2 │ ├── TheHeader.rst │ └── TheLicense.rst ├── license3 │ ├── header.txt.ftl │ └── license.txt.ftl ├── license4 │ ├── TheHeader.rst.ftl │ └── TheLicense.rst.ftl └── licenses.properties ├── org └── codehaus │ └── mojo │ └── license │ ├── api │ └── atifact-filters.txt │ └── utils │ └── licenses.properties └── overrides.properties /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # ignore code reformat 2 | 507d1bc761b83f3ab9570b4b2fdaed01b713a908 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | _extends: .github 2 | -------------------------------------------------------------------------------- /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /.github/workflows/pr-automation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/.github/workflows/pr-automation.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/README.txt: -------------------------------------------------------------------------------- 1 | preserve .mvn directory 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/README.md -------------------------------------------------------------------------------- /config/checkstyle-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/config/checkstyle-header.txt -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/build/scripts/GenerateSpdxLicenseList.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/build/scripts/GenerateSpdxLicenseList.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-135/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-135/README.md -------------------------------------------------------------------------------- /src/it/ISSUE-135/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-135/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-135/src/main/original/java/org/example/test/package-info.java: -------------------------------------------------------------------------------- 1 | @Deprecated 2 | package org.example.test; -------------------------------------------------------------------------------- /src/it/ISSUE-145-2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-145-2/README.txt -------------------------------------------------------------------------------- /src/it/ISSUE-145-2/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-145-2/invoker.properties -------------------------------------------------------------------------------- /src/it/ISSUE-145-2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-145-2/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-145-2/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-145-2/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-145-2/submodule1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-145-2/submodule1/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-145-2/submodule2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-145-2/submodule2/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-145-2/submodule3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-145-2/submodule3/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-145-2/submodule4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-145-2/submodule4/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-145/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-145/README.txt -------------------------------------------------------------------------------- /src/it/ISSUE-145/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-145/invoker.properties -------------------------------------------------------------------------------- /src/it/ISSUE-145/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-145/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-145/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-145/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-145/submodule1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-145/submodule1/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-145/submodule2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-145/submodule2/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-154/expected_licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-154/expected_licenses.xml -------------------------------------------------------------------------------- /src/it/ISSUE-154/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-154/invoker.properties -------------------------------------------------------------------------------- /src/it/ISSUE-154/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-154/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-154/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-154/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-154/src/alternative.txt: -------------------------------------------------------------------------------- 1 | alternative -------------------------------------------------------------------------------- /src/it/ISSUE-159/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-159/README.txt -------------------------------------------------------------------------------- /src/it/ISSUE-159/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-159/invoker.properties -------------------------------------------------------------------------------- /src/it/ISSUE-159/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-159/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-166/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean license:update-file-header 2 | -------------------------------------------------------------------------------- /src/it/ISSUE-166/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-166/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-166/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-166/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-166/prebuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-166/prebuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-166/src/main/bash/license-test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # Some executable file 3 | exit 0 -------------------------------------------------------------------------------- /src/it/ISSUE-174/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean license:add-third-party 2 | -------------------------------------------------------------------------------- /src/it/ISSUE-174/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-174/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-174/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-174/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-174/src/main/java/org/codehaus/mojo/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-174/src/main/java/org/codehaus/mojo/HelloWorld.java -------------------------------------------------------------------------------- /src/it/ISSUE-195/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-195/invoker.properties -------------------------------------------------------------------------------- /src/it/ISSUE-195/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-195/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-195/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-195/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-195/src/license/licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-195/src/license/licenses.xml -------------------------------------------------------------------------------- /src/it/ISSUE-195/src/main/java/org/codehaus/mojo/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-195/src/main/java/org/codehaus/mojo/HelloWorld.java -------------------------------------------------------------------------------- /src/it/ISSUE-197/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-197/invoker.properties -------------------------------------------------------------------------------- /src/it/ISSUE-197/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-197/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-197/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-197/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-197/prebuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-197/prebuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-197/src/license/licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-197/src/license/licenses.xml -------------------------------------------------------------------------------- /src/it/ISSUE-197/src/main/java/org/codehaus/mojo/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-197/src/main/java/org/codehaus/mojo/HelloWorld.java -------------------------------------------------------------------------------- /src/it/ISSUE-21/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean license:remove-file-header -------------------------------------------------------------------------------- /src/it/ISSUE-21/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-21/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-21/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-21/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-21/src/main/java/org/codehaus/mojo/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-21/src/main/java/org/codehaus/mojo/HelloWorld.java -------------------------------------------------------------------------------- /src/it/ISSUE-22/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean license:update-file-header -------------------------------------------------------------------------------- /src/it/ISSUE-22/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-22/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-22/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-22/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-22/src/main/resources/HelloWorld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-22/src/main/resources/HelloWorld.html -------------------------------------------------------------------------------- /src/it/ISSUE-22/src/main/resources/HelloWorld2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-22/src/main/resources/HelloWorld2.html -------------------------------------------------------------------------------- /src/it/ISSUE-22/src/main/resources/HelloWorld3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-22/src/main/resources/HelloWorld3.html -------------------------------------------------------------------------------- /src/it/ISSUE-22/src/main/resources/HelloWorld4.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-22/src/main/resources/HelloWorld4.xhtml -------------------------------------------------------------------------------- /src/it/ISSUE-31/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-31/README.txt -------------------------------------------------------------------------------- /src/it/ISSUE-31/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-31/child1/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-31/child1/src/main/resources/classpath/header.txt: -------------------------------------------------------------------------------- 1 | License from classpath header. 2 | -------------------------------------------------------------------------------- /src/it/ISSUE-31/child1/src/main/resources/classpath/license.txt: -------------------------------------------------------------------------------- 1 | Full License from classpath. 2 | -------------------------------------------------------------------------------- /src/it/ISSUE-31/child1/src/main/resources/licenses.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-31/child1/src/main/resources/licenses.properties -------------------------------------------------------------------------------- /src/it/ISSUE-31/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-31/child2/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-31/child2/src/main/java/org/codehaus/mojo/license/test/File1.java: -------------------------------------------------------------------------------- 1 | package org.codeehaus.mojo.license.test; 2 | 3 | public class File1 { 4 | } 5 | -------------------------------------------------------------------------------- /src/it/ISSUE-31/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean install -------------------------------------------------------------------------------- /src/it/ISSUE-31/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-31/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-31/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-31/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-312/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-312/child1/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-312/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-312/child2/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-312/child3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-312/child3/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-312/child3/src/licenses/local/apache20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-312/child3/src/licenses/local/apache20.txt -------------------------------------------------------------------------------- /src/it/ISSUE-312/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean package 2 | -------------------------------------------------------------------------------- /src/it/ISSUE-312/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-312/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-312/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-312/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-324/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-324/README.txt -------------------------------------------------------------------------------- /src/it/ISSUE-324/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-324/child1/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-324/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-324/child2/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-324/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-324/invoker.properties -------------------------------------------------------------------------------- /src/it/ISSUE-324/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-324/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-345-2/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-345-2/invoker.properties -------------------------------------------------------------------------------- /src/it/ISSUE-345-2/license.merges: -------------------------------------------------------------------------------- 1 | APACHE|The Apache Software License, Version 2.0 2 | -------------------------------------------------------------------------------- /src/it/ISSUE-345-2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-345-2/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-345-2/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-345-2/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-345/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-345/invoker.properties -------------------------------------------------------------------------------- /src/it/ISSUE-345/license.merges: -------------------------------------------------------------------------------- 1 | APACHE|The Apache Software License, Version 2.0 2 | -------------------------------------------------------------------------------- /src/it/ISSUE-345/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-345/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-345/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-345/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-351/child1-multi-license/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-351/child1-multi-license/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-351/child2-overriding/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-351/child2-overriding/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-351/child2-overriding/src/license/override-THIRD-PARTY.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-351/child2-overriding/src/license/override-THIRD-PARTY.properties -------------------------------------------------------------------------------- /src/it/ISSUE-351/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-351/invoker.properties -------------------------------------------------------------------------------- /src/it/ISSUE-351/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-351/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-351/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-351/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-358/child-1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-358/child-1/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-358/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean site 2 | -------------------------------------------------------------------------------- /src/it/ISSUE-358/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-358/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-361/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-361/README.txt -------------------------------------------------------------------------------- /src/it/ISSUE-361/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean license:add-third-party 2 | -------------------------------------------------------------------------------- /src/it/ISSUE-361/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-361/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-361/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-361/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-38/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean license:update-file-header -------------------------------------------------------------------------------- /src/it/ISSUE-38/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-38/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-38/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-38/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-38/src/main/docker/DockerFile: -------------------------------------------------------------------------------- 1 | # RUN TODO -------------------------------------------------------------------------------- /src/it/ISSUE-40/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-40/invoker.properties -------------------------------------------------------------------------------- /src/it/ISSUE-40/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-40/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-40/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-40/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-423/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-423/invoker.properties -------------------------------------------------------------------------------- /src/it/ISSUE-423/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-423/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-423/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-423/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-423/src/license/override-THIRD-PARTY.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-423/src/license/override-THIRD-PARTY.properties -------------------------------------------------------------------------------- /src/it/ISSUE-508/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-508/invoker.properties -------------------------------------------------------------------------------- /src/it/ISSUE-508/module-a/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-508/module-a/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-508/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-508/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-508/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-508/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-508/prebuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-508/prebuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-55/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-55/invoker.properties -------------------------------------------------------------------------------- /src/it/ISSUE-55/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-55/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-55/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-55/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-55/src/license/licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-55/src/license/licenses.xml -------------------------------------------------------------------------------- /src/it/ISSUE-59/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-59/invoker.properties -------------------------------------------------------------------------------- /src/it/ISSUE-59/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-59/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-59/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-59/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-59/src/license/override-THIRD-PARTY.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-59/src/license/override-THIRD-PARTY.properties -------------------------------------------------------------------------------- /src/it/ISSUE-7/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean license:update-file-header -------------------------------------------------------------------------------- /src/it/ISSUE-7/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-7/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-7/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-7/postbuild.groovy -------------------------------------------------------------------------------- /src/it/ISSUE-7/src/main/java/org/codehaus/mojo/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-7/src/main/java/org/codehaus/mojo/HelloWorld.java -------------------------------------------------------------------------------- /src/it/ISSUE-80/expected_licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-80/expected_licenses.xml -------------------------------------------------------------------------------- /src/it/ISSUE-80/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-80/invoker.properties -------------------------------------------------------------------------------- /src/it/ISSUE-80/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-80/pom.xml -------------------------------------------------------------------------------- /src/it/ISSUE-80/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/ISSUE-80/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-132/consume-db/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-132/consume-db/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-132/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-132/invoker.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-132/licenses.merge: -------------------------------------------------------------------------------- 1 | APACHE|The Apache Software License, Version 2.0 2 | -------------------------------------------------------------------------------- /src/it/MLICENSE-132/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-132/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-132/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-132/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-2/README.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-2/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-2/child1/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-2/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-2/child2/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-2/child2/src/license/THIRD-PARTY.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-2/child2/src/license/THIRD-PARTY.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-2/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-2/invoker.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-2/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-2/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-2/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-21/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-21/README.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-21/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-21/child1/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-21/child1/src/license/THIRD-PARTY.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-21/child1/src/license/THIRD-PARTY.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-21/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-21/child2/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-21/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-21/invoker.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-21/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-21/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-21/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-21/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-23/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-23/README.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-23/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean license:add-third-party -------------------------------------------------------------------------------- /src/it/MLICENSE-23/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-23/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-24/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-24/README.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-24/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean validate -X -e -------------------------------------------------------------------------------- /src/it/MLICENSE-24/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-24/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-24/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-24/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-25/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-25/invoker.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-25/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-25/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-25/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-25/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-27/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-27/README.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-27/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean license:update-file-header -------------------------------------------------------------------------------- /src/it/MLICENSE-27/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-27/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-27/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-27/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-27/src/main/java/org/codehaus/mojo/license/test/MyBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-27/src/main/java/org/codehaus/mojo/license/test/MyBean.java -------------------------------------------------------------------------------- /src/it/MLICENSE-27/src/main/java/org/codehaus/mojo/license/test/MyBean2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-27/src/main/java/org/codehaus/mojo/license/test/MyBean2.java -------------------------------------------------------------------------------- /src/it/MLICENSE-27/src/main/java/org/codehaus/mojo/license/test/MyBean3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-27/src/main/java/org/codehaus/mojo/license/test/MyBean3.java -------------------------------------------------------------------------------- /src/it/MLICENSE-28/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-28/README.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-28/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-28/child1/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-28/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-28/child2/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-28/child2/src/license/THIRD-PARTY.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-28/child2/src/license/THIRD-PARTY.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-28/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean license:aggregate-add-third-party -------------------------------------------------------------------------------- /src/it/MLICENSE-28/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-28/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-28/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-28/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-3/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-3/README.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-3/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-3/invoker.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-3/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-3/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-3/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-3/src/main/java/org/codehaus/mojo/license/plugin/test/MyBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-3/src/main/java/org/codehaus/mojo/license/plugin/test/MyBean.java -------------------------------------------------------------------------------- /src/it/MLICENSE-30/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-30/README.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-30/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean license:update-file-header -------------------------------------------------------------------------------- /src/it/MLICENSE-30/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-30/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-30/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-30/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-30/src/main/java/org/codehaus/mojo/license/test/MyBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-30/src/main/java/org/codehaus/mojo/license/test/MyBean.java -------------------------------------------------------------------------------- /src/it/MLICENSE-30/src/main/java/org/codehaus/mojo/license/test/MyBean2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-30/src/main/java/org/codehaus/mojo/license/test/MyBean2.java -------------------------------------------------------------------------------- /src/it/MLICENSE-30/src/main/java/org/codehaus/mojo/license/test/MyBean3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-30/src/main/java/org/codehaus/mojo/license/test/MyBean3.java -------------------------------------------------------------------------------- /src/it/MLICENSE-30/src/main/license/descriptionTemplate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-30/src/main/license/descriptionTemplate.ftl -------------------------------------------------------------------------------- /src/it/MLICENSE-33/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-33/README.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-33/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean generate-resources site -------------------------------------------------------------------------------- /src/it/MLICENSE-33/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-33/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-33/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-33/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-33/src/license/THIRD-PARTY.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-33/src/license/THIRD-PARTY.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-36/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-36/README.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-36/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean license:add-third-party -------------------------------------------------------------------------------- /src/it/MLICENSE-36/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-36/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-36/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-36/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-36/src/main/license/myTemplate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-36/src/main/license/myTemplate.ftl -------------------------------------------------------------------------------- /src/it/MLICENSE-37-blacklist-fail/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-37-blacklist-fail/invoker.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-37-blacklist-fail/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-37-blacklist-fail/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-37-blacklist-fail/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-37-blacklist-fail/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-37-blacklist-success/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-37-blacklist-success/invoker.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-37-blacklist-success/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-37-blacklist-success/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-37-blacklist-success/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-37-blacklist-success/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-37-whitelist-fail/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-37-whitelist-fail/invoker.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-37-whitelist-fail/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-37-whitelist-fail/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-37-whitelist-fail/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-37-whitelist-fail/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-37-whitelist-success/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-37-whitelist-success/invoker.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-37-whitelist-success/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-37-whitelist-success/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-37-whitelist-success/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-37-whitelist-success/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-4/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-4/README.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-4/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-4/invoker.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-4/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-4/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-4/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-44/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-44/README.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-44/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean license:update-file-header -------------------------------------------------------------------------------- /src/it/MLICENSE-44/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-44/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-44/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-44/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-44/src/license/licenses.properties: -------------------------------------------------------------------------------- 1 | test=Test License -------------------------------------------------------------------------------- /src/it/MLICENSE-44/src/license/test/descriptionTemplate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-44/src/license/test/descriptionTemplate.ftl -------------------------------------------------------------------------------- /src/it/MLICENSE-44/src/license/test/header.txt: -------------------------------------------------------------------------------- 1 | My test license. -------------------------------------------------------------------------------- /src/it/MLICENSE-44/src/license/test/license.txt: -------------------------------------------------------------------------------- 1 | My test license. -------------------------------------------------------------------------------- /src/it/MLICENSE-44/src/main/java/test/File1.java: -------------------------------------------------------------------------------- 1 | package test; 2 | 3 | public class File1 { 4 | } -------------------------------------------------------------------------------- /src/it/MLICENSE-44/src/main/java/test/File2.java: -------------------------------------------------------------------------------- 1 | package test; 2 | 3 | public class File2 { 4 | } -------------------------------------------------------------------------------- /src/it/MLICENSE-44/src/main/java/test/File3.java: -------------------------------------------------------------------------------- 1 | package test; 2 | 3 | public class File3 { 4 | } -------------------------------------------------------------------------------- /src/it/MLICENSE-44/src/main/java/test/File4.java: -------------------------------------------------------------------------------- 1 | package test; 2 | 3 | public class File4 { 4 | } -------------------------------------------------------------------------------- /src/it/MLICENSE-45/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-45/README.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-45/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-45/child1/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-45/child1/src/main/resources/mypackage/mylicensestore/classpath/header.txt: -------------------------------------------------------------------------------- 1 | License from classpath header. 2 | -------------------------------------------------------------------------------- /src/it/MLICENSE-45/child1/src/main/resources/mypackage/mylicensestore/classpath/license.txt: -------------------------------------------------------------------------------- 1 | Full License from classpath. 2 | -------------------------------------------------------------------------------- /src/it/MLICENSE-45/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-45/child2/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-45/child2/src/main/java/org/codehaus/mojo/license/test/File1.java: -------------------------------------------------------------------------------- 1 | package org.codeehaus.mojo.license.test; 2 | 3 | public class File1 { 4 | } 5 | -------------------------------------------------------------------------------- /src/it/MLICENSE-45/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean install -------------------------------------------------------------------------------- /src/it/MLICENSE-45/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-45/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-45/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-45/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-5/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-5/LICENSE.html -------------------------------------------------------------------------------- /src/it/MLICENSE-5/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-5/README.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-5/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-5/invoker.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-5/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-5/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-5/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-5/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-5/src/license/licenses.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-5/src/license/licenses.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-5/src/license/my_license/header.txt: -------------------------------------------------------------------------------- 1 | My header -------------------------------------------------------------------------------- /src/it/MLICENSE-5/src/license/my_license/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-5/src/license/my_license/license.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-5/src/license/my_license2/TheHeader.rst: -------------------------------------------------------------------------------- 1 | My header2 -------------------------------------------------------------------------------- /src/it/MLICENSE-5/src/license/my_license2/TheLicense.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-5/src/license/my_license2/TheLicense.rst -------------------------------------------------------------------------------- /src/it/MLICENSE-53/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean generate-resources -------------------------------------------------------------------------------- /src/it/MLICENSE-53/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-53/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-53/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-53/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-55/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-55/LICENSE.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-55/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=process-sources -------------------------------------------------------------------------------- /src/it/MLICENSE-55/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-55/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-55/src/main/java/info/gianlucacosta/tests/licensetest/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-55/src/main/java/info/gianlucacosta/tests/licensetest/App.java -------------------------------------------------------------------------------- /src/it/MLICENSE-71/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-71/README.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-71/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-71/invoker.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-71/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-71/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-72/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-72/invoker.properties -------------------------------------------------------------------------------- /src/it/MLICENSE-72/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-72/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-72/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-72/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-92/LICENSE.txt: -------------------------------------------------------------------------------- 1 | ;; This line will be removed! 2 | My license! -------------------------------------------------------------------------------- /src/it/MLICENSE-92/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-92/README.txt -------------------------------------------------------------------------------- /src/it/MLICENSE-92/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean process-resources -------------------------------------------------------------------------------- /src/it/MLICENSE-92/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-92/pom.xml -------------------------------------------------------------------------------- /src/it/MLICENSE-92/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-92/postbuild.groovy -------------------------------------------------------------------------------- /src/it/MLICENSE-92/src/license/licenses.properties: -------------------------------------------------------------------------------- 1 | mylicense=This is mine! 2 | -------------------------------------------------------------------------------- /src/it/MLICENSE-92/src/license/mylicense/header.txt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-92/src/license/mylicense/header.txt.ftl -------------------------------------------------------------------------------- /src/it/MLICENSE-92/src/license/mylicense/license.txt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/MLICENSE-92/src/license/mylicense/license.txt.ftl -------------------------------------------------------------------------------- /src/it/PR-32/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/PR-32/child1/pom.xml -------------------------------------------------------------------------------- /src/it/PR-32/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/PR-32/child2/pom.xml -------------------------------------------------------------------------------- /src/it/PR-32/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean package -------------------------------------------------------------------------------- /src/it/PR-32/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/PR-32/pom.xml -------------------------------------------------------------------------------- /src/it/PR-32/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/PR-32/postbuild.groovy -------------------------------------------------------------------------------- /src/it/PR-33/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/PR-33/child1/pom.xml -------------------------------------------------------------------------------- /src/it/PR-33/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/PR-33/child2/pom.xml -------------------------------------------------------------------------------- /src/it/PR-33/child3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/PR-33/child3/pom.xml -------------------------------------------------------------------------------- /src/it/PR-33/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean package -------------------------------------------------------------------------------- /src/it/PR-33/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/PR-33/pom.xml -------------------------------------------------------------------------------- /src/it/PR-33/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/PR-33/postbuild.groovy -------------------------------------------------------------------------------- /src/it/PR-64-aggregate-unknown-license/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/PR-64-aggregate-unknown-license/child1/pom.xml -------------------------------------------------------------------------------- /src/it/PR-64-aggregate-unknown-license/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/PR-64-aggregate-unknown-license/child2/pom.xml -------------------------------------------------------------------------------- /src/it/PR-64-aggregate-unknown-license/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean process-resources -------------------------------------------------------------------------------- /src/it/PR-64-aggregate-unknown-license/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/PR-64-aggregate-unknown-license/pom.xml -------------------------------------------------------------------------------- /src/it/PR-64-aggregate-unknown-license/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/PR-64-aggregate-unknown-license/postbuild.groovy -------------------------------------------------------------------------------- /src/it/PR-64-aggregate-unknown-license/src/license/THIRD-PARTY.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/PR-64-aggregate-unknown-license/src/license/THIRD-PARTY.properties -------------------------------------------------------------------------------- /src/it/add-third-party-excluded-included/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-excluded-included/invoker.properties -------------------------------------------------------------------------------- /src/it/add-third-party-excluded-included/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-excluded-included/pom.xml -------------------------------------------------------------------------------- /src/it/add-third-party-excluded-included/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-excluded-included/postbuild.groovy -------------------------------------------------------------------------------- /src/it/add-third-party-global-db/consume-db/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-global-db/consume-db/pom.xml -------------------------------------------------------------------------------- /src/it/add-third-party-global-db/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-global-db/invoker.properties -------------------------------------------------------------------------------- /src/it/add-third-party-global-db/misc-dep/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-global-db/misc-dep/pom.xml -------------------------------------------------------------------------------- /src/it/add-third-party-global-db/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-global-db/pom.xml -------------------------------------------------------------------------------- /src/it/add-third-party-global-db/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-global-db/postbuild.groovy -------------------------------------------------------------------------------- /src/it/add-third-party-global-db/publish-db/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-global-db/publish-db/pom.xml -------------------------------------------------------------------------------- /src/it/add-third-party-global-db/publish-db/src/license/test.license.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-global-db/publish-db/src/license/test.license.properties -------------------------------------------------------------------------------- /src/it/add-third-party-merge-licenses/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-merge-licenses/invoker.properties -------------------------------------------------------------------------------- /src/it/add-third-party-merge-licenses/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-merge-licenses/pom.xml -------------------------------------------------------------------------------- /src/it/add-third-party-merge-licenses/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-merge-licenses/postbuild.groovy -------------------------------------------------------------------------------- /src/it/add-third-party-missing-file/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-missing-file/invoker.properties -------------------------------------------------------------------------------- /src/it/add-third-party-missing-file/missing-licenses.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-missing-file/missing-licenses.properties -------------------------------------------------------------------------------- /src/it/add-third-party-missing-file/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-missing-file/pom.xml -------------------------------------------------------------------------------- /src/it/add-third-party-missing-file/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-missing-file/postbuild.groovy -------------------------------------------------------------------------------- /src/it/add-third-party-missing-file/prebuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-missing-file/prebuild.groovy -------------------------------------------------------------------------------- /src/it/add-third-party-missing-file/src/license/THIRD-PARTY.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-missing-file/src/license/THIRD-PARTY.properties -------------------------------------------------------------------------------- /src/it/add-third-party-missing-pom/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-missing-pom/README.txt -------------------------------------------------------------------------------- /src/it/add-third-party-missing-pom/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-missing-pom/invoker.properties -------------------------------------------------------------------------------- /src/it/add-third-party-missing-pom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-missing-pom/pom.xml -------------------------------------------------------------------------------- /src/it/add-third-party-missing-pom/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-missing-pom/postbuild.groovy -------------------------------------------------------------------------------- /src/it/add-third-party-no-deps/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-no-deps/invoker.properties -------------------------------------------------------------------------------- /src/it/add-third-party-no-deps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-no-deps/pom.xml -------------------------------------------------------------------------------- /src/it/add-third-party-no-deps/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-no-deps/postbuild.groovy -------------------------------------------------------------------------------- /src/it/add-third-party-no-encoding/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-no-encoding/invoker.properties -------------------------------------------------------------------------------- /src/it/add-third-party-no-encoding/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-no-encoding/pom.xml -------------------------------------------------------------------------------- /src/it/add-third-party-no-encoding/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-no-encoding/postbuild.groovy -------------------------------------------------------------------------------- /src/it/add-third-party-skip-second-execution/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-skip-second-execution/invoker.properties -------------------------------------------------------------------------------- /src/it/add-third-party-skip-second-execution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-skip-second-execution/pom.xml -------------------------------------------------------------------------------- /src/it/add-third-party-skip-second-execution/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-skip-second-execution/postbuild.groovy -------------------------------------------------------------------------------- /src/it/add-third-party-with-deps-name-order/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-with-deps-name-order/README.txt -------------------------------------------------------------------------------- /src/it/add-third-party-with-deps-name-order/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-with-deps-name-order/invoker.properties -------------------------------------------------------------------------------- /src/it/add-third-party-with-deps-name-order/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-with-deps-name-order/pom.xml -------------------------------------------------------------------------------- /src/it/add-third-party-with-deps-name-order/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-with-deps-name-order/postbuild.groovy -------------------------------------------------------------------------------- /src/it/add-third-party-with-deps/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-with-deps/invoker.properties -------------------------------------------------------------------------------- /src/it/add-third-party-with-deps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-with-deps/pom.xml -------------------------------------------------------------------------------- /src/it/add-third-party-with-deps/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/add-third-party-with-deps/postbuild.groovy -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-bad-license/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-bad-license/README.txt -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-bad-license/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-bad-license/child1/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-bad-license/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-bad-license/child2/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-bad-license/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-bad-license/invoker.properties -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-bad-license/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-bad-license/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-bad-license/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-bad-license/postbuild.groovy -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-exclude-transitive-deps/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-exclude-transitive-deps/child1/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-exclude-transitive-deps/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-exclude-transitive-deps/child2/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-exclude-transitive-deps/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-exclude-transitive-deps/invoker.properties -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-exclude-transitive-deps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-exclude-transitive-deps/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-exclude-transitive-deps/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-exclude-transitive-deps/postbuild.groovy -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-filtered-modules/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-filtered-modules/child1/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-filtered-modules/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-filtered-modules/child2/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-filtered-modules/child3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-filtered-modules/child3/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-filtered-modules/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-filtered-modules/invoker.properties -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-filtered-modules/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-filtered-modules/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-filtered-modules/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-filtered-modules/postbuild.groovy -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-global-db/consume-db/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-global-db/consume-db/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-global-db/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-global-db/invoker.properties -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-global-db/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-global-db/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-global-db/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-global-db/postbuild.groovy -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-include-optional/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-include-optional/child1/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-include-optional/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-include-optional/invoker.properties -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-include-optional/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-include-optional/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-include-optional/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-include-optional/postbuild.groovy -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-missing-file/child/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-missing-file/child/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-missing-file/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-missing-file/invoker.properties -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-missing-file/missingFile.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-missing-file/missingFile.properties -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-missing-file/missingFileBoth.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-missing-file/missingFileBoth.properties -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-missing-file/missingFileUrl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-missing-file/missingFileUrl.properties -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-missing-file/missingFileUrlBoth.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-missing-file/missingFileUrlBoth.properties -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-missing-file/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-missing-file/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-missing-file/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-missing-file/postbuild.groovy -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-multimodule-filters/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-multimodule-filters/child1/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-multimodule-filters/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-multimodule-filters/child2/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-multimodule-filters/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-multimodule-filters/invoker.properties -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-multimodule-filters/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-multimodule-filters/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-multimodule-filters/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-multimodule-filters/postbuild.groovy -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-no-children/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-no-children/invoker.properties -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-no-children/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-no-children/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-no-children/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-no-children/postbuild.groovy -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-second-execution/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-second-execution/child1/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-second-execution/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-second-execution/invoker.properties -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-second-execution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-second-execution/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-second-execution/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-second-execution/postbuild.groovy -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-simple/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-simple/child1/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-simple/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-simple/child2/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-simple/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-simple/invoker.properties -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-simple/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-simple/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-add-third-party-simple/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-add-third-party-simple/postbuild.groovy -------------------------------------------------------------------------------- /src/it/aggregate-download-licenses-extended-spreadsheet/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-download-licenses-extended-spreadsheet/child1/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-download-licenses-extended-spreadsheet/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-download-licenses-extended-spreadsheet/child2/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-download-licenses-extended-spreadsheet/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-download-licenses-extended-spreadsheet/invoker.properties -------------------------------------------------------------------------------- /src/it/aggregate-download-licenses-extended-spreadsheet/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-download-licenses-extended-spreadsheet/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-download-licenses-extended-spreadsheet/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-download-licenses-extended-spreadsheet/postbuild.groovy -------------------------------------------------------------------------------- /src/it/aggregate-third-party-report-merge-licences/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-third-party-report-merge-licences/child1/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-third-party-report-merge-licences/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-third-party-report-merge-licences/child2/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-third-party-report-merge-licences/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-third-party-report-merge-licences/invoker.properties -------------------------------------------------------------------------------- /src/it/aggregate-third-party-report-merge-licences/license.merges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-third-party-report-merge-licences/license.merges -------------------------------------------------------------------------------- /src/it/aggregate-third-party-report-merge-licences/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-third-party-report-merge-licences/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-third-party-report-merge-licences/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-third-party-report-merge-licences/postbuild.groovy -------------------------------------------------------------------------------- /src/it/aggregate-third-party-report/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-third-party-report/child1/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-third-party-report/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-third-party-report/child2/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-third-party-report/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-third-party-report/invoker.properties -------------------------------------------------------------------------------- /src/it/aggregate-third-party-report/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-third-party-report/pom.xml -------------------------------------------------------------------------------- /src/it/aggregate-third-party-report/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/aggregate-third-party-report/postbuild.groovy -------------------------------------------------------------------------------- /src/it/check-project-license-fail/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/check-project-license-fail/LICENSE.txt -------------------------------------------------------------------------------- /src/it/check-project-license-fail/child1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/check-project-license-fail/child1/LICENSE.txt -------------------------------------------------------------------------------- /src/it/check-project-license-fail/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/check-project-license-fail/child1/pom.xml -------------------------------------------------------------------------------- /src/it/check-project-license-fail/child2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/check-project-license-fail/child2/pom.xml -------------------------------------------------------------------------------- /src/it/check-project-license-fail/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/check-project-license-fail/invoker.properties -------------------------------------------------------------------------------- /src/it/check-project-license-fail/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/check-project-license-fail/pom.xml -------------------------------------------------------------------------------- /src/it/check-project-license-fail/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/check-project-license-fail/postbuild.groovy -------------------------------------------------------------------------------- /src/it/download-licenses-basic/expected_licenses_ordering_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-basic/expected_licenses_ordering_1.xml -------------------------------------------------------------------------------- /src/it/download-licenses-basic/expected_licenses_ordering_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-basic/expected_licenses_ordering_2.xml -------------------------------------------------------------------------------- /src/it/download-licenses-basic/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-basic/invoker.properties -------------------------------------------------------------------------------- /src/it/download-licenses-basic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-basic/pom.xml -------------------------------------------------------------------------------- /src/it/download-licenses-basic/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-basic/postbuild.groovy -------------------------------------------------------------------------------- /src/it/download-licenses-basic/src/main/java/org/codehaus/mojo/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-basic/src/main/java/org/codehaus/mojo/HelloWorld.java -------------------------------------------------------------------------------- /src/it/download-licenses-configured/artifact-filters.txt: -------------------------------------------------------------------------------- 1 | # comment 2 | 3 | exclude gaPattern asm:asm 4 | -------------------------------------------------------------------------------- /src/it/download-licenses-configured/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-configured/invoker.properties -------------------------------------------------------------------------------- /src/it/download-licenses-configured/licenses-artifact-filters-url.expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-configured/licenses-artifact-filters-url.expected.xml -------------------------------------------------------------------------------- /src/it/download-licenses-configured/licenses-delete-orphans.expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-configured/licenses-delete-orphans.expected.xml -------------------------------------------------------------------------------- /src/it/download-licenses-configured/licenses-insert-versions.expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-configured/licenses-insert-versions.expected.xml -------------------------------------------------------------------------------- /src/it/download-licenses-configured/licenses-no-download.expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-configured/licenses-no-download.expected.xml -------------------------------------------------------------------------------- /src/it/download-licenses-configured/licenses-pre-1.18.expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-configured/licenses-pre-1.18.expected.xml -------------------------------------------------------------------------------- /src/it/download-licenses-configured/licenses-since-1.18.expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-configured/licenses-since-1.18.expected.xml -------------------------------------------------------------------------------- /src/it/download-licenses-configured/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-configured/pom.xml -------------------------------------------------------------------------------- /src/it/download-licenses-configured/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-configured/postbuild.groovy -------------------------------------------------------------------------------- /src/it/download-licenses-configured/prebuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-configured/prebuild.groovy -------------------------------------------------------------------------------- /src/it/download-licenses-configured/src/license/content-sanitizers/apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-configured/src/license/content-sanitizers/apache-2.0.txt -------------------------------------------------------------------------------- /src/it/download-licenses-configured/src/license/content-sanitizers/bsd3-asm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-configured/src/license/content-sanitizers/bsd3-asm.txt -------------------------------------------------------------------------------- /src/it/download-licenses-configured/src/license/licenses-config-no-download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-configured/src/license/licenses-config-no-download.xml -------------------------------------------------------------------------------- /src/it/download-licenses-configured/src/license/licenses-config-pre-1.18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-configured/src/license/licenses-config-pre-1.18.xml -------------------------------------------------------------------------------- /src/it/download-licenses-configured/src/license/licenses-config-since-1.18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-configured/src/license/licenses-config-since-1.18.xml -------------------------------------------------------------------------------- /src/it/download-licenses-configured/target-initial/delete-orphans/licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-configured/target-initial/delete-orphans/licenses.xml -------------------------------------------------------------------------------- /src/it/download-licenses-configured/target-initial/delete-orphans/licenses/foo-bar-license.txt: -------------------------------------------------------------------------------- 1 | Should be deleted due to removeOrphanLicenseFiles=true 2 | -------------------------------------------------------------------------------- /src/it/download-licenses-configured/target-initial/no-download/licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-configured/target-initial/no-download/licenses.xml -------------------------------------------------------------------------------- /src/it/download-licenses-exclude-transitive-deps/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = clean validate -X 2 | -------------------------------------------------------------------------------- /src/it/download-licenses-exclude-transitive-deps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-exclude-transitive-deps/pom.xml -------------------------------------------------------------------------------- /src/it/download-licenses-exclude-transitive-deps/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-exclude-transitive-deps/postbuild.groovy -------------------------------------------------------------------------------- /src/it/download-licenses-failFast/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-failFast/invoker.properties -------------------------------------------------------------------------------- /src/it/download-licenses-failFast/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-failFast/pom.xml -------------------------------------------------------------------------------- /src/it/download-licenses-failFast/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-failFast/postbuild.groovy -------------------------------------------------------------------------------- /src/it/download-licenses-failFast/src/license/licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-failFast/src/license/licenses.xml -------------------------------------------------------------------------------- /src/it/download-licenses-failFast/src/main/java/org/codehaus/mojo/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-failFast/src/main/java/org/codehaus/mojo/HelloWorld.java -------------------------------------------------------------------------------- /src/it/download-licenses-file-names-bad-sha1-force/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-file-names-bad-sha1-force/invoker.properties -------------------------------------------------------------------------------- /src/it/download-licenses-file-names-bad-sha1-force/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-file-names-bad-sha1-force/pom.xml -------------------------------------------------------------------------------- /src/it/download-licenses-file-names-bad-sha1-force/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-file-names-bad-sha1-force/postbuild.groovy -------------------------------------------------------------------------------- /src/it/download-licenses-file-names-bad-sha1-force/src/license/licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-file-names-bad-sha1-force/src/license/licenses.xml -------------------------------------------------------------------------------- /src/it/download-licenses-file-names/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-file-names/invoker.properties -------------------------------------------------------------------------------- /src/it/download-licenses-file-names/licenses-basic.expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-file-names/licenses-basic.expected.xml -------------------------------------------------------------------------------- /src/it/download-licenses-file-names/licenses-cleanLicDir.expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-file-names/licenses-cleanLicDir.expected.xml -------------------------------------------------------------------------------- /src/it/download-licenses-file-names/licenses-config-basic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-file-names/licenses-config-basic.xml -------------------------------------------------------------------------------- /src/it/download-licenses-file-names/licenses-config-no-versions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-file-names/licenses-config-no-versions.xml -------------------------------------------------------------------------------- /src/it/download-licenses-file-names/licenses-spdx.expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-file-names/licenses-spdx.expected.xml -------------------------------------------------------------------------------- /src/it/download-licenses-file-names/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-file-names/pom.xml -------------------------------------------------------------------------------- /src/it/download-licenses-file-names/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-file-names/postbuild.groovy -------------------------------------------------------------------------------- /src/it/download-licenses-file-names/prebuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-file-names/prebuild.groovy -------------------------------------------------------------------------------- /src/it/download-licenses-file-names/src/license/licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-file-names/src/license/licenses.xml -------------------------------------------------------------------------------- /src/it/download-licenses-file-names/target-initial/basic/licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-file-names/target-initial/basic/licenses.xml -------------------------------------------------------------------------------- /src/it/download-licenses-file-names/target-initial/cleanLicDir/licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-file-names/target-initial/cleanLicDir/licenses.xml -------------------------------------------------------------------------------- /src/it/download-licenses-file-names/target-initial/cleanLicDir/licenses/foo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-file-names/target-initial/cleanLicDir/licenses/foo.txt -------------------------------------------------------------------------------- /src/it/download-licenses-force/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-force/invoker.properties -------------------------------------------------------------------------------- /src/it/download-licenses-force/licenses-errors.expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-force/licenses-errors.expected.xml -------------------------------------------------------------------------------- /src/it/download-licenses-force/licenses.expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-force/licenses.expected.xml -------------------------------------------------------------------------------- /src/it/download-licenses-force/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-force/pom.xml -------------------------------------------------------------------------------- /src/it/download-licenses-force/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-force/postbuild.groovy -------------------------------------------------------------------------------- /src/it/download-licenses-force/prebuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-force/prebuild.groovy -------------------------------------------------------------------------------- /src/it/download-licenses-force/src/license/licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-force/src/license/licenses.xml -------------------------------------------------------------------------------- /src/it/download-licenses-force/src/main/java/org/codehaus/mojo/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-force/src/main/java/org/codehaus/mojo/HelloWorld.java -------------------------------------------------------------------------------- /src/it/download-licenses-force/target-initial/generated-resources/licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-force/target-initial/generated-resources/licenses.xml -------------------------------------------------------------------------------- /src/it/download-licenses-include-exclude-types/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = clean validate -X 2 | -------------------------------------------------------------------------------- /src/it/download-licenses-include-exclude-types/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-include-exclude-types/pom.xml -------------------------------------------------------------------------------- /src/it/download-licenses-include-exclude-types/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-include-exclude-types/postbuild.groovy -------------------------------------------------------------------------------- /src/it/download-licenses-proxy/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-proxy/invoker.properties -------------------------------------------------------------------------------- /src/it/download-licenses-proxy/licenses.expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-proxy/licenses.expected.xml -------------------------------------------------------------------------------- /src/it/download-licenses-proxy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-proxy/pom.xml -------------------------------------------------------------------------------- /src/it/download-licenses-proxy/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-proxy/postbuild.groovy -------------------------------------------------------------------------------- /src/it/download-licenses-proxy/prebuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-proxy/prebuild.groovy -------------------------------------------------------------------------------- /src/it/download-licenses-proxy/src/license/licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-proxy/src/license/licenses.xml -------------------------------------------------------------------------------- /src/it/download-licenses-proxy/src/main/java/org/codehaus/mojo/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/download-licenses-proxy/src/main/java/org/codehaus/mojo/HelloWorld.java -------------------------------------------------------------------------------- /src/it/dual-licensed-blacklist/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/dual-licensed-blacklist/invoker.properties -------------------------------------------------------------------------------- /src/it/dual-licensed-blacklist/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/dual-licensed-blacklist/pom.xml -------------------------------------------------------------------------------- /src/it/dual-licensed-blacklist/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/dual-licensed-blacklist/postbuild.groovy -------------------------------------------------------------------------------- /src/it/dual-licensed-both-whitelisted/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/dual-licensed-both-whitelisted/invoker.properties -------------------------------------------------------------------------------- /src/it/dual-licensed-both-whitelisted/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/dual-licensed-both-whitelisted/pom.xml -------------------------------------------------------------------------------- /src/it/dual-licensed-both-whitelisted/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/dual-licensed-both-whitelisted/postbuild.groovy -------------------------------------------------------------------------------- /src/it/dual-licensed-none-whitelisted/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/dual-licensed-none-whitelisted/invoker.properties -------------------------------------------------------------------------------- /src/it/dual-licensed-none-whitelisted/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/dual-licensed-none-whitelisted/pom.xml -------------------------------------------------------------------------------- /src/it/dual-licensed-none-whitelisted/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/dual-licensed-none-whitelisted/postbuild.groovy -------------------------------------------------------------------------------- /src/it/dual-licensed-one-whitelisted/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/dual-licensed-one-whitelisted/invoker.properties -------------------------------------------------------------------------------- /src/it/dual-licensed-one-whitelisted/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/dual-licensed-one-whitelisted/pom.xml -------------------------------------------------------------------------------- /src/it/dual-licensed-one-whitelisted/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/dual-licensed-one-whitelisted/postbuild.groovy -------------------------------------------------------------------------------- /src/it/inception-year-only-copyright-format/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/inception-year-only-copyright-format/README.md -------------------------------------------------------------------------------- /src/it/inception-year-only-copyright-format/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/inception-year-only-copyright-format/invoker.properties -------------------------------------------------------------------------------- /src/it/inception-year-only-copyright-format/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/inception-year-only-copyright-format/pom.xml -------------------------------------------------------------------------------- /src/it/inception-year-only-copyright-format/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/inception-year-only-copyright-format/postbuild.groovy -------------------------------------------------------------------------------- /src/it/inception-year-only-copyright-format/src/main/original/java/org/example/test/package-info.java: -------------------------------------------------------------------------------- 1 | @Deprecated 2 | package org.example.test; 3 | -------------------------------------------------------------------------------- /src/it/license-list/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/license-list/invoker.properties -------------------------------------------------------------------------------- /src/it/license-list/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/license-list/pom.xml -------------------------------------------------------------------------------- /src/it/license-list/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/license-list/postbuild.groovy -------------------------------------------------------------------------------- /src/it/licenseMergeUserProperty-with-merges/consume-db/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/licenseMergeUserProperty-with-merges/consume-db/pom.xml -------------------------------------------------------------------------------- /src/it/licenseMergeUserProperty-with-merges/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/licenseMergeUserProperty-with-merges/invoker.properties -------------------------------------------------------------------------------- /src/it/licenseMergeUserProperty-with-merges/licenses.merge: -------------------------------------------------------------------------------- 1 | APACHE|The Apache Software License, Version 2.0 2 | -------------------------------------------------------------------------------- /src/it/licenseMergeUserProperty-with-merges/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/licenseMergeUserProperty-with-merges/pom.xml -------------------------------------------------------------------------------- /src/it/licenseMergeUserProperty-with-merges/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/licenseMergeUserProperty-with-merges/postbuild.groovy -------------------------------------------------------------------------------- /src/it/override-copyright-format/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/override-copyright-format/README.md -------------------------------------------------------------------------------- /src/it/override-copyright-format/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/override-copyright-format/invoker.properties -------------------------------------------------------------------------------- /src/it/override-copyright-format/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/override-copyright-format/pom.xml -------------------------------------------------------------------------------- /src/it/override-copyright-format/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/override-copyright-format/postbuild.groovy -------------------------------------------------------------------------------- /src/it/override-copyright-format/src/main/original/java/org/example/test/package-info.java: -------------------------------------------------------------------------------- 1 | @Deprecated 2 | package org.example.test; 3 | -------------------------------------------------------------------------------- /src/it/settings-proxy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/settings-proxy.xml -------------------------------------------------------------------------------- /src/it/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/settings.xml -------------------------------------------------------------------------------- /src/it/third-party-report-global-db/consume-db/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/third-party-report-global-db/consume-db/pom.xml -------------------------------------------------------------------------------- /src/it/third-party-report-global-db/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/third-party-report-global-db/invoker.properties -------------------------------------------------------------------------------- /src/it/third-party-report-global-db/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/third-party-report-global-db/pom.xml -------------------------------------------------------------------------------- /src/it/third-party-report-global-db/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/third-party-report-global-db/postbuild.groovy -------------------------------------------------------------------------------- /src/it/third-party-report/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/third-party-report/README.txt -------------------------------------------------------------------------------- /src/it/third-party-report/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals=clean generate-resources site -------------------------------------------------------------------------------- /src/it/third-party-report/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/third-party-report/pom.xml -------------------------------------------------------------------------------- /src/it/third-party-report/postbuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/third-party-report/postbuild.groovy -------------------------------------------------------------------------------- /src/it/third-party-report/src/license/THIRD-PARTY.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/third-party-report/src/license/THIRD-PARTY.properties -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/update-file-header-test-mojo/LICENSE.txt -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/update-file-header-test-mojo/README.txt -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/changelog.txt: -------------------------------------------------------------------------------- 1 | see the changelog of org.nuiton:i18n project. -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/update-file-header-test-mojo/child1/pom.xml -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/src/files/apt/test.apt: -------------------------------------------------------------------------------- 1 | My file 2 | -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/src/files/apt/test2.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/update-file-header-test-mojo/child1/src/files/apt/test2.apt -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/src/files/ftl/test.ftl: -------------------------------------------------------------------------------- 1 | My File -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/src/files/ftl/test2.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/update-file-header-test-mojo/child1/src/files/ftl/test2.ftl -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/src/files/jsp/test.jsp: -------------------------------------------------------------------------------- 1 | <%@page contentType="text/html" pageEncoding="UTF-8"%> 2 |
-------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/src/files/jsp/test2.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/update-file-header-test-mojo/child1/src/files/jsp/test2.jsp -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/src/files/mysql/test.mysql: -------------------------------------------------------------------------------- 1 | select * from table; -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/src/files/mysql/test2.mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/update-file-header-test-mojo/child1/src/files/mysql/test2.mysql -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/src/files/properties/test.properties: -------------------------------------------------------------------------------- 1 | my.key=true -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/src/files/properties/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ls ~/* -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/src/files/properties/test2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/update-file-header-test-mojo/child1/src/files/properties/test2.properties -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/src/files/properties/test2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/update-file-header-test-mojo/child1/src/files/properties/test2.sh -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/src/files/rst/test.rst: -------------------------------------------------------------------------------- 1 | My File -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/src/files/rst/test2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/update-file-header-test-mojo/child1/src/files/rst/test2.rst -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/src/files/sql/test.sql: -------------------------------------------------------------------------------- 1 | select * from table; -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/src/files/sql/test2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/license-maven-plugin/HEAD/src/it/update-file-header-test-mojo/child1/src/files/sql/test2.sql -------------------------------------------------------------------------------- /src/it/update-file-header-test-mojo/child1/src/files/xml/test.xml: -------------------------------------------------------------------------------- 1 | 2 |