├── .git-blame-ignore-revs ├── .github ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── maven.yml │ └── release-drafter.yml ├── .gitignore ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── pom.xml └── src ├── changes └── changes.xml ├── it ├── check-format-fail │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── xml │ │ │ └── 2-spaces-broken-no-schema-short.xml │ └── verify.groovy ├── check-format-pass │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── xml │ │ │ ├── 2-spaces-correct-no-schema-short.xml │ │ │ └── 2-spaces-correct-no-schema.xml │ └── verify.groovy ├── gh11 │ ├── invoker.properties │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── openmeetings │ │ │ │ └── web │ │ │ │ └── app │ │ │ │ └── Application.properties.xml │ │ └── webapp │ │ │ └── languages │ │ │ ├── errorvalues.xml │ │ │ └── errorvalues.xsd │ │ └── site │ │ └── stylesheets │ │ └── errortable.xsl ├── it1 │ ├── invoker.properties │ ├── pom.xml │ └── src │ │ └── main │ │ └── xml │ │ └── doc1.xml ├── it2 │ ├── invoker.properties │ ├── pom.xml │ └── src │ │ └── main │ │ └── xml │ │ └── doc1.xml ├── it3 │ ├── invoker.properties │ ├── pom.xml │ └── src │ │ └── main │ │ ├── xml │ │ ├── catalog.xml │ │ └── doc1.xml │ │ └── xsd │ │ └── schema.xsd ├── it4 │ ├── invoker.properties │ ├── pom.xml │ └── src │ │ └── main │ │ ├── xml │ │ └── doc1.xml │ │ └── xsl │ │ └── it4.xsl ├── it5 │ ├── invoker.properties │ ├── pom.xml │ └── src │ │ └── main │ │ ├── xml │ │ └── doc1.xml │ │ └── xsl │ │ └── it5.xsl ├── it6 │ ├── invoker.properties │ ├── pom.xml │ └── src │ │ └── main │ │ ├── xml │ │ └── doc1.xml │ │ └── xsl │ │ └── it4.xsl ├── it7 │ ├── invoker.properties │ ├── pom.xml │ └── src │ │ └── main │ │ ├── xml │ │ └── doc1.xml │ │ └── xsl │ │ └── it7.xsl ├── it8 │ ├── invoker.properties │ ├── pom.xml │ └── src │ │ └── main │ │ ├── xml │ │ └── doc1.xml │ │ └── xsl │ │ └── it8.xsl ├── it9 │ ├── invoker.properties │ ├── pom.xml │ └── src │ │ └── main │ │ ├── resources │ │ └── org │ │ │ └── codehaus │ │ │ └── mojo │ │ │ └── xml │ │ │ └── test │ │ │ └── it9a.xml │ │ └── xml │ │ └── doc1.xml ├── mojo-1438-transform │ ├── invoker.properties │ ├── pom.xml │ └── src │ │ └── main │ │ ├── dtd │ │ └── sample.dtd │ │ ├── xml │ │ ├── catalog.xml │ │ └── doc1.xml │ │ └── xsl │ │ └── it10.xsl ├── mojo-1438-validate │ ├── invoker.properties │ ├── pom.xml │ └── src │ │ └── main │ │ ├── catalog.xml │ │ ├── dtd │ │ └── sample.dtd │ │ ├── xml │ │ └── doc1.xml │ │ └── xsd │ │ └── schema.xsd ├── settings.xml ├── xinclude-xsd │ ├── invoker.properties │ ├── pom.xml │ └── src │ │ └── main │ │ ├── xml │ │ ├── book.xml │ │ ├── chapter.xml │ │ └── section.xml │ │ └── xsd │ │ └── schema.xsd └── xinclude-xsl │ ├── invoker.properties │ ├── pom.xml │ ├── src │ └── main │ │ ├── xml │ │ ├── book.xml │ │ ├── chapter.xml │ │ └── section.xml │ │ └── xsl │ │ └── copy.xsl │ └── verify.groovy ├── main ├── checkstyle │ ├── maven-eclipse-codestyle.xml │ └── maven-header.txt ├── java │ └── org │ │ └── codehaus │ │ └── mojo │ │ └── xml │ │ ├── AbstractXmlMojo.java │ │ ├── CheckFormatMojo.java │ │ ├── LSInputImpl.java │ │ ├── Resolver.java │ │ ├── TransformMojo.java │ │ ├── ValidateMojo.java │ │ ├── format │ │ ├── FormatFileSet.java │ │ ├── IndentCheckSaxHandler.java │ │ ├── XmlFormatViolation.java │ │ └── XmlFormatViolationHandler.java │ │ ├── transformer │ │ ├── NameValuePair.java │ │ └── TransformationSet.java │ │ └── validation │ │ ├── ValidationErrorHandler.java │ │ └── ValidationSet.java └── resources │ └── META-INF │ └── m2e │ └── lifecycle-mapping-metadata.xml ├── site ├── apt │ ├── common-properties.apt │ ├── examples │ │ ├── catalog.apt │ │ ├── transform-basic.apt │ │ ├── transform-change-extension.apt │ │ ├── transform-change-regexp.apt │ │ ├── transform-outputProperties.apt │ │ ├── transform-parameters.apt │ │ ├── transform-saxon.apt │ │ ├── validate-relaxng.apt │ │ ├── validate-schema.apt │ │ └── validate-well-formedness.apt │ ├── index.apt │ ├── transformation.apt │ ├── usage.apt │ └── validation.apt ├── fml │ └── faq.fml └── site.xml └── test ├── it1 ├── pom.xml └── xml │ └── doc1.xml ├── it10 ├── pom.xml └── xml │ └── doc1.xml ├── it11 ├── it11.xsl ├── pom.xml └── xml │ └── doc1.xml ├── it12 ├── catalogue.xml ├── pom.xml ├── xml │ └── DoRequest.xml └── xsd │ ├── messages.xsd │ └── simpletypes.xsd ├── it13 ├── catalog.xml ├── pom.xml ├── schema.xsd └── xml │ └── doc1.xml ├── it14 ├── pom.xml └── xml │ └── doc1.xml ├── it15 ├── catalog.xml ├── pom.xml ├── schema.rnc └── xml │ └── doc1.xml ├── it16 ├── catalog.xml ├── pom.xml ├── schema.xsd └── xml │ └── test-schema.xsd ├── it17 ├── catalog.xml ├── pom.xml ├── schema.xsd └── xml │ └── doc1.xml ├── it18 ├── pom.xml ├── schema.rnc └── xml │ └── doc1.xml ├── it19 ├── catalog.xml ├── dtd │ └── sample.dtd ├── pom.xml └── xml │ └── doc1.xml ├── it2 ├── pom.xml └── xml │ └── doc1.xml ├── it20 ├── catalog.xml ├── dtd │ └── sample.dtd ├── pom.xml └── xml │ └── doc1.xml ├── it3 ├── catalog.xml ├── pom.xml ├── schema.xsd └── xml │ └── doc1.xml ├── it4 ├── it4.xsl ├── pom.xml └── xml │ └── doc1.xml ├── it5 ├── it5.xsl ├── pom.xml └── xml │ └── doc1.xml ├── it6 ├── it4.xsl ├── pom.xml └── xml │ └── doc1.xml ├── it7 ├── it7.xsl ├── pom.xml └── xml │ └── doc1.xml ├── it8 ├── it8.xsl ├── pom.xml └── xml │ └── doc1.xml ├── it9 ├── pom.xml └── xml │ └── doc1.xml ├── java └── org │ └── codehaus │ └── mojo │ └── xml │ ├── ResolverTest.java │ └── test │ ├── AbstractXmlMojoTestCase.java │ ├── TransformMojoTest.java │ └── ValidateMojoTest.java ├── multimodule └── xsd-import │ ├── catalog │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ ├── catalogue.xml │ │ └── xsd │ ├── pom.xml │ └── validation │ ├── pom.xml │ ├── src │ └── main │ │ └── resources │ │ └── xml │ └── xsd-classpath-catalog-0.1.jar ├── resources └── org │ └── codehaus │ └── mojo │ └── xml │ └── test │ ├── it10a.xsl │ └── it9a.xml ├── xinclude-xsd ├── pom.xml ├── xml │ ├── book.xml │ ├── chapter.xml │ └── section.xml └── xsd │ └── schema.xsd └── xinclude-xsl ├── pom.xml ├── xml ├── book.xml ├── chapter.xml └── section.xml └── xsl └── copy.xsl /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # code reformat with spotless 2 | 5b98282791881a45736f44272e05f22a15b65627 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | _extends: .github 2 | -------------------------------------------------------------------------------- /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/changes/changes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/changes/changes.xml -------------------------------------------------------------------------------- /src/it/check-format-fail/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/check-format-fail/invoker.properties -------------------------------------------------------------------------------- /src/it/check-format-fail/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/check-format-fail/pom.xml -------------------------------------------------------------------------------- /src/it/check-format-fail/src/main/xml/2-spaces-broken-no-schema-short.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/check-format-fail/src/main/xml/2-spaces-broken-no-schema-short.xml -------------------------------------------------------------------------------- /src/it/check-format-fail/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/check-format-fail/verify.groovy -------------------------------------------------------------------------------- /src/it/check-format-pass/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/check-format-pass/invoker.properties -------------------------------------------------------------------------------- /src/it/check-format-pass/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/check-format-pass/pom.xml -------------------------------------------------------------------------------- /src/it/check-format-pass/src/main/xml/2-spaces-correct-no-schema-short.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/check-format-pass/src/main/xml/2-spaces-correct-no-schema-short.xml -------------------------------------------------------------------------------- /src/it/check-format-pass/src/main/xml/2-spaces-correct-no-schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/check-format-pass/src/main/xml/2-spaces-correct-no-schema.xml -------------------------------------------------------------------------------- /src/it/check-format-pass/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/check-format-pass/verify.groovy -------------------------------------------------------------------------------- /src/it/gh11/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = test 2 | -------------------------------------------------------------------------------- /src/it/gh11/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/gh11/pom.xml -------------------------------------------------------------------------------- /src/it/gh11/src/main/java/org/apache/openmeetings/web/app/Application.properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/gh11/src/main/java/org/apache/openmeetings/web/app/Application.properties.xml -------------------------------------------------------------------------------- /src/it/gh11/src/main/webapp/languages/errorvalues.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/gh11/src/main/webapp/languages/errorvalues.xml -------------------------------------------------------------------------------- /src/it/gh11/src/main/webapp/languages/errorvalues.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/gh11/src/main/webapp/languages/errorvalues.xsd -------------------------------------------------------------------------------- /src/it/gh11/src/site/stylesheets/errortable.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/gh11/src/site/stylesheets/errortable.xsl -------------------------------------------------------------------------------- /src/it/it1/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it1/invoker.properties -------------------------------------------------------------------------------- /src/it/it1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it1/pom.xml -------------------------------------------------------------------------------- /src/it/it1/src/main/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it1/src/main/xml/doc1.xml -------------------------------------------------------------------------------- /src/it/it2/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it2/invoker.properties -------------------------------------------------------------------------------- /src/it/it2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it2/pom.xml -------------------------------------------------------------------------------- /src/it/it2/src/main/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it2/src/main/xml/doc1.xml -------------------------------------------------------------------------------- /src/it/it3/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = xml:validate 2 | -------------------------------------------------------------------------------- /src/it/it3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it3/pom.xml -------------------------------------------------------------------------------- /src/it/it3/src/main/xml/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it3/src/main/xml/catalog.xml -------------------------------------------------------------------------------- /src/it/it3/src/main/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it3/src/main/xml/doc1.xml -------------------------------------------------------------------------------- /src/it/it3/src/main/xsd/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it3/src/main/xsd/schema.xsd -------------------------------------------------------------------------------- /src/it/it4/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = clean xml:transform -------------------------------------------------------------------------------- /src/it/it4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it4/pom.xml -------------------------------------------------------------------------------- /src/it/it4/src/main/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it4/src/main/xml/doc1.xml -------------------------------------------------------------------------------- /src/it/it4/src/main/xsl/it4.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it4/src/main/xsl/it4.xsl -------------------------------------------------------------------------------- /src/it/it5/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = clean xml:transform 2 | -------------------------------------------------------------------------------- /src/it/it5/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it5/pom.xml -------------------------------------------------------------------------------- /src/it/it5/src/main/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it5/src/main/xml/doc1.xml -------------------------------------------------------------------------------- /src/it/it5/src/main/xsl/it5.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it5/src/main/xsl/it5.xsl -------------------------------------------------------------------------------- /src/it/it6/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = clean xml:transform 2 | -------------------------------------------------------------------------------- /src/it/it6/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it6/pom.xml -------------------------------------------------------------------------------- /src/it/it6/src/main/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it6/src/main/xml/doc1.xml -------------------------------------------------------------------------------- /src/it/it6/src/main/xsl/it4.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it6/src/main/xsl/it4.xsl -------------------------------------------------------------------------------- /src/it/it7/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = clean xml:transform 2 | -------------------------------------------------------------------------------- /src/it/it7/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it7/pom.xml -------------------------------------------------------------------------------- /src/it/it7/src/main/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it7/src/main/xml/doc1.xml -------------------------------------------------------------------------------- /src/it/it7/src/main/xsl/it7.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it7/src/main/xsl/it7.xsl -------------------------------------------------------------------------------- /src/it/it8/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it8/invoker.properties -------------------------------------------------------------------------------- /src/it/it8/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it8/pom.xml -------------------------------------------------------------------------------- /src/it/it8/src/main/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it8/src/main/xml/doc1.xml -------------------------------------------------------------------------------- /src/it/it8/src/main/xsl/it8.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it8/src/main/xsl/it8.xsl -------------------------------------------------------------------------------- /src/it/it9/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = test 2 | -------------------------------------------------------------------------------- /src/it/it9/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it9/pom.xml -------------------------------------------------------------------------------- /src/it/it9/src/main/resources/org/codehaus/mojo/xml/test/it9a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it9/src/main/resources/org/codehaus/mojo/xml/test/it9a.xml -------------------------------------------------------------------------------- /src/it/it9/src/main/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/it9/src/main/xml/doc1.xml -------------------------------------------------------------------------------- /src/it/mojo-1438-transform/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = clean xml:transform 2 | -------------------------------------------------------------------------------- /src/it/mojo-1438-transform/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/mojo-1438-transform/pom.xml -------------------------------------------------------------------------------- /src/it/mojo-1438-transform/src/main/dtd/sample.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/mojo-1438-transform/src/main/dtd/sample.dtd -------------------------------------------------------------------------------- /src/it/mojo-1438-transform/src/main/xml/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/mojo-1438-transform/src/main/xml/catalog.xml -------------------------------------------------------------------------------- /src/it/mojo-1438-transform/src/main/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/mojo-1438-transform/src/main/xml/doc1.xml -------------------------------------------------------------------------------- /src/it/mojo-1438-transform/src/main/xsl/it10.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/mojo-1438-transform/src/main/xsl/it10.xsl -------------------------------------------------------------------------------- /src/it/mojo-1438-validate/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/mojo-1438-validate/invoker.properties -------------------------------------------------------------------------------- /src/it/mojo-1438-validate/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/mojo-1438-validate/pom.xml -------------------------------------------------------------------------------- /src/it/mojo-1438-validate/src/main/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/mojo-1438-validate/src/main/catalog.xml -------------------------------------------------------------------------------- /src/it/mojo-1438-validate/src/main/dtd/sample.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/mojo-1438-validate/src/main/dtd/sample.dtd -------------------------------------------------------------------------------- /src/it/mojo-1438-validate/src/main/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/mojo-1438-validate/src/main/xml/doc1.xml -------------------------------------------------------------------------------- /src/it/mojo-1438-validate/src/main/xsd/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/mojo-1438-validate/src/main/xsd/schema.xsd -------------------------------------------------------------------------------- /src/it/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/settings.xml -------------------------------------------------------------------------------- /src/it/xinclude-xsd/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = clean xml:validate -------------------------------------------------------------------------------- /src/it/xinclude-xsd/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/xinclude-xsd/pom.xml -------------------------------------------------------------------------------- /src/it/xinclude-xsd/src/main/xml/book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/xinclude-xsd/src/main/xml/book.xml -------------------------------------------------------------------------------- /src/it/xinclude-xsd/src/main/xml/chapter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/xinclude-xsd/src/main/xml/chapter.xml -------------------------------------------------------------------------------- /src/it/xinclude-xsd/src/main/xml/section.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/xinclude-xsd/src/main/xml/section.xml -------------------------------------------------------------------------------- /src/it/xinclude-xsd/src/main/xsd/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/xinclude-xsd/src/main/xsd/schema.xsd -------------------------------------------------------------------------------- /src/it/xinclude-xsl/invoker.properties: -------------------------------------------------------------------------------- 1 | invoker.goals = clean xml:transform -------------------------------------------------------------------------------- /src/it/xinclude-xsl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/xinclude-xsl/pom.xml -------------------------------------------------------------------------------- /src/it/xinclude-xsl/src/main/xml/book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/xinclude-xsl/src/main/xml/book.xml -------------------------------------------------------------------------------- /src/it/xinclude-xsl/src/main/xml/chapter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/xinclude-xsl/src/main/xml/chapter.xml -------------------------------------------------------------------------------- /src/it/xinclude-xsl/src/main/xml/section.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/xinclude-xsl/src/main/xml/section.xml -------------------------------------------------------------------------------- /src/it/xinclude-xsl/src/main/xsl/copy.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/xinclude-xsl/src/main/xsl/copy.xsl -------------------------------------------------------------------------------- /src/it/xinclude-xsl/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/it/xinclude-xsl/verify.groovy -------------------------------------------------------------------------------- /src/main/checkstyle/maven-eclipse-codestyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/main/checkstyle/maven-eclipse-codestyle.xml -------------------------------------------------------------------------------- /src/main/checkstyle/maven-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/main/checkstyle/maven-header.txt -------------------------------------------------------------------------------- /src/main/java/org/codehaus/mojo/xml/AbstractXmlMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/main/java/org/codehaus/mojo/xml/AbstractXmlMojo.java -------------------------------------------------------------------------------- /src/main/java/org/codehaus/mojo/xml/CheckFormatMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/main/java/org/codehaus/mojo/xml/CheckFormatMojo.java -------------------------------------------------------------------------------- /src/main/java/org/codehaus/mojo/xml/LSInputImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/main/java/org/codehaus/mojo/xml/LSInputImpl.java -------------------------------------------------------------------------------- /src/main/java/org/codehaus/mojo/xml/Resolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/main/java/org/codehaus/mojo/xml/Resolver.java -------------------------------------------------------------------------------- /src/main/java/org/codehaus/mojo/xml/TransformMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/main/java/org/codehaus/mojo/xml/TransformMojo.java -------------------------------------------------------------------------------- /src/main/java/org/codehaus/mojo/xml/ValidateMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/main/java/org/codehaus/mojo/xml/ValidateMojo.java -------------------------------------------------------------------------------- /src/main/java/org/codehaus/mojo/xml/format/FormatFileSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/main/java/org/codehaus/mojo/xml/format/FormatFileSet.java -------------------------------------------------------------------------------- /src/main/java/org/codehaus/mojo/xml/format/IndentCheckSaxHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/main/java/org/codehaus/mojo/xml/format/IndentCheckSaxHandler.java -------------------------------------------------------------------------------- /src/main/java/org/codehaus/mojo/xml/format/XmlFormatViolation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/main/java/org/codehaus/mojo/xml/format/XmlFormatViolation.java -------------------------------------------------------------------------------- /src/main/java/org/codehaus/mojo/xml/format/XmlFormatViolationHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/main/java/org/codehaus/mojo/xml/format/XmlFormatViolationHandler.java -------------------------------------------------------------------------------- /src/main/java/org/codehaus/mojo/xml/transformer/NameValuePair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/main/java/org/codehaus/mojo/xml/transformer/NameValuePair.java -------------------------------------------------------------------------------- /src/main/java/org/codehaus/mojo/xml/transformer/TransformationSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/main/java/org/codehaus/mojo/xml/transformer/TransformationSet.java -------------------------------------------------------------------------------- /src/main/java/org/codehaus/mojo/xml/validation/ValidationErrorHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/main/java/org/codehaus/mojo/xml/validation/ValidationErrorHandler.java -------------------------------------------------------------------------------- /src/main/java/org/codehaus/mojo/xml/validation/ValidationSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/main/java/org/codehaus/mojo/xml/validation/ValidationSet.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/main/resources/META-INF/m2e/lifecycle-mapping-metadata.xml -------------------------------------------------------------------------------- /src/site/apt/common-properties.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/site/apt/common-properties.apt -------------------------------------------------------------------------------- /src/site/apt/examples/catalog.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/site/apt/examples/catalog.apt -------------------------------------------------------------------------------- /src/site/apt/examples/transform-basic.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/site/apt/examples/transform-basic.apt -------------------------------------------------------------------------------- /src/site/apt/examples/transform-change-extension.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/site/apt/examples/transform-change-extension.apt -------------------------------------------------------------------------------- /src/site/apt/examples/transform-change-regexp.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/site/apt/examples/transform-change-regexp.apt -------------------------------------------------------------------------------- /src/site/apt/examples/transform-outputProperties.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/site/apt/examples/transform-outputProperties.apt -------------------------------------------------------------------------------- /src/site/apt/examples/transform-parameters.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/site/apt/examples/transform-parameters.apt -------------------------------------------------------------------------------- /src/site/apt/examples/transform-saxon.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/site/apt/examples/transform-saxon.apt -------------------------------------------------------------------------------- /src/site/apt/examples/validate-relaxng.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/site/apt/examples/validate-relaxng.apt -------------------------------------------------------------------------------- /src/site/apt/examples/validate-schema.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/site/apt/examples/validate-schema.apt -------------------------------------------------------------------------------- /src/site/apt/examples/validate-well-formedness.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/site/apt/examples/validate-well-formedness.apt -------------------------------------------------------------------------------- /src/site/apt/index.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/site/apt/index.apt -------------------------------------------------------------------------------- /src/site/apt/transformation.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/site/apt/transformation.apt -------------------------------------------------------------------------------- /src/site/apt/usage.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/site/apt/usage.apt -------------------------------------------------------------------------------- /src/site/apt/validation.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/site/apt/validation.apt -------------------------------------------------------------------------------- /src/site/fml/faq.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/site/fml/faq.fml -------------------------------------------------------------------------------- /src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/site/site.xml -------------------------------------------------------------------------------- /src/test/it1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it1/pom.xml -------------------------------------------------------------------------------- /src/test/it1/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it1/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/it10/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it10/pom.xml -------------------------------------------------------------------------------- /src/test/it10/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it10/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/it11/it11.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it11/it11.xsl -------------------------------------------------------------------------------- /src/test/it11/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it11/pom.xml -------------------------------------------------------------------------------- /src/test/it11/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it11/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/it12/catalogue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it12/catalogue.xml -------------------------------------------------------------------------------- /src/test/it12/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it12/pom.xml -------------------------------------------------------------------------------- /src/test/it12/xml/DoRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it12/xml/DoRequest.xml -------------------------------------------------------------------------------- /src/test/it12/xsd/messages.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it12/xsd/messages.xsd -------------------------------------------------------------------------------- /src/test/it12/xsd/simpletypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it12/xsd/simpletypes.xsd -------------------------------------------------------------------------------- /src/test/it13/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it13/catalog.xml -------------------------------------------------------------------------------- /src/test/it13/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it13/pom.xml -------------------------------------------------------------------------------- /src/test/it13/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it13/schema.xsd -------------------------------------------------------------------------------- /src/test/it13/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it13/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/it14/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it14/pom.xml -------------------------------------------------------------------------------- /src/test/it14/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it14/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/it15/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it15/catalog.xml -------------------------------------------------------------------------------- /src/test/it15/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it15/pom.xml -------------------------------------------------------------------------------- /src/test/it15/schema.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it15/schema.rnc -------------------------------------------------------------------------------- /src/test/it15/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it15/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/it16/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it16/catalog.xml -------------------------------------------------------------------------------- /src/test/it16/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it16/pom.xml -------------------------------------------------------------------------------- /src/test/it16/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it16/schema.xsd -------------------------------------------------------------------------------- /src/test/it16/xml/test-schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it16/xml/test-schema.xsd -------------------------------------------------------------------------------- /src/test/it17/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it17/catalog.xml -------------------------------------------------------------------------------- /src/test/it17/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it17/pom.xml -------------------------------------------------------------------------------- /src/test/it17/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it17/schema.xsd -------------------------------------------------------------------------------- /src/test/it17/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it17/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/it18/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it18/pom.xml -------------------------------------------------------------------------------- /src/test/it18/schema.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it18/schema.rnc -------------------------------------------------------------------------------- /src/test/it18/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it18/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/it19/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it19/catalog.xml -------------------------------------------------------------------------------- /src/test/it19/dtd/sample.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it19/dtd/sample.dtd -------------------------------------------------------------------------------- /src/test/it19/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it19/pom.xml -------------------------------------------------------------------------------- /src/test/it19/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it19/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/it2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it2/pom.xml -------------------------------------------------------------------------------- /src/test/it2/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it2/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/it20/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it20/catalog.xml -------------------------------------------------------------------------------- /src/test/it20/dtd/sample.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it20/dtd/sample.dtd -------------------------------------------------------------------------------- /src/test/it20/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it20/pom.xml -------------------------------------------------------------------------------- /src/test/it20/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it20/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/it3/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it3/catalog.xml -------------------------------------------------------------------------------- /src/test/it3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it3/pom.xml -------------------------------------------------------------------------------- /src/test/it3/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it3/schema.xsd -------------------------------------------------------------------------------- /src/test/it3/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it3/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/it4/it4.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it4/it4.xsl -------------------------------------------------------------------------------- /src/test/it4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it4/pom.xml -------------------------------------------------------------------------------- /src/test/it4/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it4/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/it5/it5.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it5/it5.xsl -------------------------------------------------------------------------------- /src/test/it5/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it5/pom.xml -------------------------------------------------------------------------------- /src/test/it5/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it5/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/it6/it4.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it6/it4.xsl -------------------------------------------------------------------------------- /src/test/it6/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it6/pom.xml -------------------------------------------------------------------------------- /src/test/it6/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it6/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/it7/it7.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it7/it7.xsl -------------------------------------------------------------------------------- /src/test/it7/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it7/pom.xml -------------------------------------------------------------------------------- /src/test/it7/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it7/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/it8/it8.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it8/it8.xsl -------------------------------------------------------------------------------- /src/test/it8/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it8/pom.xml -------------------------------------------------------------------------------- /src/test/it8/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it8/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/it9/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it9/pom.xml -------------------------------------------------------------------------------- /src/test/it9/xml/doc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/it9/xml/doc1.xml -------------------------------------------------------------------------------- /src/test/java/org/codehaus/mojo/xml/ResolverTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/java/org/codehaus/mojo/xml/ResolverTest.java -------------------------------------------------------------------------------- /src/test/java/org/codehaus/mojo/xml/test/AbstractXmlMojoTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/java/org/codehaus/mojo/xml/test/AbstractXmlMojoTestCase.java -------------------------------------------------------------------------------- /src/test/java/org/codehaus/mojo/xml/test/TransformMojoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/java/org/codehaus/mojo/xml/test/TransformMojoTest.java -------------------------------------------------------------------------------- /src/test/java/org/codehaus/mojo/xml/test/ValidateMojoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/java/org/codehaus/mojo/xml/test/ValidateMojoTest.java -------------------------------------------------------------------------------- /src/test/multimodule/xsd-import/catalog/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/multimodule/xsd-import/catalog/pom.xml -------------------------------------------------------------------------------- /src/test/multimodule/xsd-import/catalog/src/main/resources/catalogue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/multimodule/xsd-import/catalog/src/main/resources/catalogue.xml -------------------------------------------------------------------------------- /src/test/multimodule/xsd-import/catalog/src/main/resources/xsd: -------------------------------------------------------------------------------- 1 | ../../../../../../it12/xsd -------------------------------------------------------------------------------- /src/test/multimodule/xsd-import/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/multimodule/xsd-import/pom.xml -------------------------------------------------------------------------------- /src/test/multimodule/xsd-import/validation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/multimodule/xsd-import/validation/pom.xml -------------------------------------------------------------------------------- /src/test/multimodule/xsd-import/validation/src/main/resources/xml: -------------------------------------------------------------------------------- 1 | ../../../../../../it12/xml -------------------------------------------------------------------------------- /src/test/multimodule/xsd-import/validation/xsd-classpath-catalog-0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/multimodule/xsd-import/validation/xsd-classpath-catalog-0.1.jar -------------------------------------------------------------------------------- /src/test/resources/org/codehaus/mojo/xml/test/it10a.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/resources/org/codehaus/mojo/xml/test/it10a.xsl -------------------------------------------------------------------------------- /src/test/resources/org/codehaus/mojo/xml/test/it9a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/resources/org/codehaus/mojo/xml/test/it9a.xml -------------------------------------------------------------------------------- /src/test/xinclude-xsd/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/xinclude-xsd/pom.xml -------------------------------------------------------------------------------- /src/test/xinclude-xsd/xml/book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/xinclude-xsd/xml/book.xml -------------------------------------------------------------------------------- /src/test/xinclude-xsd/xml/chapter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/xinclude-xsd/xml/chapter.xml -------------------------------------------------------------------------------- /src/test/xinclude-xsd/xml/section.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/xinclude-xsd/xml/section.xml -------------------------------------------------------------------------------- /src/test/xinclude-xsd/xsd/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/xinclude-xsd/xsd/schema.xsd -------------------------------------------------------------------------------- /src/test/xinclude-xsl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/xinclude-xsl/pom.xml -------------------------------------------------------------------------------- /src/test/xinclude-xsl/xml/book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/xinclude-xsl/xml/book.xml -------------------------------------------------------------------------------- /src/test/xinclude-xsl/xml/chapter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/xinclude-xsl/xml/chapter.xml -------------------------------------------------------------------------------- /src/test/xinclude-xsl/xml/section.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/xinclude-xsl/xml/section.xml -------------------------------------------------------------------------------- /src/test/xinclude-xsl/xsl/copy.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/xml-maven-plugin/HEAD/src/test/xinclude-xsl/xsl/copy.xsl --------------------------------------------------------------------------------