├── .asf.yaml ├── .github ├── ISSUE_TEMPLATE │ ├── BUG.yml │ ├── FEATURE.yml │ └── config.yml ├── dependabot.yml ├── pull_request_template.md ├── release-drafter.yml └── workflows │ ├── maven-verify.yml │ ├── pr-automation.yml │ ├── release-drafter.yml │ └── stale.yml ├── .gitignore ├── Jenkinsfile ├── LICENSE ├── README.md ├── deploySite.sh ├── pom.xml └── src ├── it ├── MANTRUN-172 │ ├── build.xml │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── MANTRUN-178 │ ├── build.xml │ ├── invoker.properties │ └── pom.xml ├── MANTRUN-179 │ ├── pom.xml │ └── verify.bsh ├── MANTRUN-192 │ └── pom.xml ├── MANTRUN-208 │ ├── pom.xml │ └── verify.bsh ├── MANTRUN-221 │ ├── build.xml │ ├── invoker.properties │ ├── package.json │ └── pom.xml ├── ant-1.7-features │ ├── pom.xml │ └── verify.bsh ├── antrun-default-test │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── attach-artifact-from-ant-task │ ├── build.xml │ ├── invoker.properties │ ├── pom.xml │ ├── test.txt │ └── verify.bsh ├── attach-artifact-test-with-prefix-antlib │ ├── invoker.properties │ ├── pom.xml │ ├── test.txt │ └── verify.bsh ├── attach-artifact-test-with-prefix-antrun │ ├── invoker.properties │ ├── pom.xml │ ├── test.txt │ └── verify.bsh ├── attach-artifact-test-with-prefix-unknown │ ├── invoker.properties │ ├── pom.xml │ └── test.txt ├── attach-artifact-test │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── classpath-ref-test │ ├── build.xml │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── Test.java ├── classpath-test-scope-test │ └── pom.xml ├── copy-fail-test │ ├── invoker.properties │ ├── pom.xml │ └── stuff │ │ ├── test1.txt │ │ └── test2.txt ├── custom-ant-target-attributes │ ├── pom.xml │ └── verify.groovy ├── custom-task-test │ ├── build.xml │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── TestTask.java ├── env-var-test │ ├── build.xml │ └── pom.xml ├── export-ant-properties │ ├── invoker.properties │ └── pom.xml ├── filesets-test │ ├── invoker.properties │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── Test.java │ └── verify.bsh ├── local-repo-prop-test │ ├── invoker.properties │ └── pom.xml ├── multiple-phase-test │ ├── invoker.properties │ ├── pom.xml │ └── verify.bsh ├── never-fail-test │ ├── invoker.properties │ └── pom.xml ├── plugin-classpath-test │ ├── build.xml │ ├── calc.g │ └── pom.xml ├── properties-attributes-test │ ├── build.xml │ └── pom.xml ├── properties-test │ ├── build.xml │ ├── invoker.properties │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── Test.java ├── settings.xml ├── task-encoding-test │ └── pom.xml └── tasksattributes-test │ ├── pom.xml │ ├── test.properties │ └── verify.bsh ├── main ├── java │ └── org │ │ └── apache │ │ └── maven │ │ ├── ant │ │ └── tasks │ │ │ ├── AttachArtifactTask.java │ │ │ ├── DependencyFilesetsTask.java │ │ │ └── support │ │ │ ├── SpecificScopesArtifactFilter.java │ │ │ ├── TypesArtifactFilter.java │ │ │ └── VersionMapper.java │ │ └── plugins │ │ └── antrun │ │ ├── AntRunMojo.java │ │ ├── AntrunXmlPlexusConfigurationWriter.java │ │ ├── MavenAntRunProject.java │ │ └── MavenLogger.java ├── mdo │ └── antrun.mdo └── resources │ └── org │ └── apache │ └── maven │ └── ant │ └── tasks │ └── antlib.xml ├── site ├── apt │ ├── examples │ │ ├── classpaths.apt.vm │ │ ├── customTasks.apt.vm │ │ └── tasksAttributes.apt.vm │ ├── index.apt.vm │ ├── tasks │ │ ├── attachArtifact.apt.vm │ │ ├── dependencyFilesets.apt.vm │ │ ├── tasks.apt.vm │ │ └── versionMapper.apt.vm │ └── usage.apt.vm ├── fml │ └── faq.fml ├── resources │ └── download.cgi ├── site.xml └── xdoc │ └── download.xml.vm └── test ├── java └── org │ └── apache │ └── maven │ └── plugins │ └── antrun │ └── AntrunXmlPlexusConfigurationWriterTest.java └── resources └── configuration-writer ├── basic.xml ├── combine-attributes.xml ├── custom-task-prefix.xml └── empty-target.xml /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/.github/ISSUE_TEMPLATE/BUG.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/.github/ISSUE_TEMPLATE/FEATURE.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/maven-verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/.github/workflows/maven-verify.yml -------------------------------------------------------------------------------- /.github/workflows/pr-automation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/.github/workflows/pr-automation.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/README.md -------------------------------------------------------------------------------- /deploySite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/deploySite.sh -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/it/MANTRUN-172/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/MANTRUN-172/build.xml -------------------------------------------------------------------------------- /src/it/MANTRUN-172/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/MANTRUN-172/invoker.properties -------------------------------------------------------------------------------- /src/it/MANTRUN-172/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/MANTRUN-172/pom.xml -------------------------------------------------------------------------------- /src/it/MANTRUN-172/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/MANTRUN-172/verify.bsh -------------------------------------------------------------------------------- /src/it/MANTRUN-178/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/MANTRUN-178/build.xml -------------------------------------------------------------------------------- /src/it/MANTRUN-178/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/MANTRUN-178/invoker.properties -------------------------------------------------------------------------------- /src/it/MANTRUN-178/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/MANTRUN-178/pom.xml -------------------------------------------------------------------------------- /src/it/MANTRUN-179/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/MANTRUN-179/pom.xml -------------------------------------------------------------------------------- /src/it/MANTRUN-179/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/MANTRUN-179/verify.bsh -------------------------------------------------------------------------------- /src/it/MANTRUN-192/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/MANTRUN-192/pom.xml -------------------------------------------------------------------------------- /src/it/MANTRUN-208/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/MANTRUN-208/pom.xml -------------------------------------------------------------------------------- /src/it/MANTRUN-208/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/MANTRUN-208/verify.bsh -------------------------------------------------------------------------------- /src/it/MANTRUN-221/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/MANTRUN-221/build.xml -------------------------------------------------------------------------------- /src/it/MANTRUN-221/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/MANTRUN-221/invoker.properties -------------------------------------------------------------------------------- /src/it/MANTRUN-221/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/MANTRUN-221/package.json -------------------------------------------------------------------------------- /src/it/MANTRUN-221/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/MANTRUN-221/pom.xml -------------------------------------------------------------------------------- /src/it/ant-1.7-features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/ant-1.7-features/pom.xml -------------------------------------------------------------------------------- /src/it/ant-1.7-features/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/ant-1.7-features/verify.bsh -------------------------------------------------------------------------------- /src/it/antrun-default-test/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/antrun-default-test/invoker.properties -------------------------------------------------------------------------------- /src/it/antrun-default-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/antrun-default-test/pom.xml -------------------------------------------------------------------------------- /src/it/antrun-default-test/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/antrun-default-test/verify.bsh -------------------------------------------------------------------------------- /src/it/attach-artifact-from-ant-task/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-from-ant-task/build.xml -------------------------------------------------------------------------------- /src/it/attach-artifact-from-ant-task/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-from-ant-task/invoker.properties -------------------------------------------------------------------------------- /src/it/attach-artifact-from-ant-task/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-from-ant-task/pom.xml -------------------------------------------------------------------------------- /src/it/attach-artifact-from-ant-task/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-from-ant-task/test.txt -------------------------------------------------------------------------------- /src/it/attach-artifact-from-ant-task/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-from-ant-task/verify.bsh -------------------------------------------------------------------------------- /src/it/attach-artifact-test-with-prefix-antlib/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-test-with-prefix-antlib/invoker.properties -------------------------------------------------------------------------------- /src/it/attach-artifact-test-with-prefix-antlib/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-test-with-prefix-antlib/pom.xml -------------------------------------------------------------------------------- /src/it/attach-artifact-test-with-prefix-antlib/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-test-with-prefix-antlib/test.txt -------------------------------------------------------------------------------- /src/it/attach-artifact-test-with-prefix-antlib/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-test-with-prefix-antlib/verify.bsh -------------------------------------------------------------------------------- /src/it/attach-artifact-test-with-prefix-antrun/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-test-with-prefix-antrun/invoker.properties -------------------------------------------------------------------------------- /src/it/attach-artifact-test-with-prefix-antrun/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-test-with-prefix-antrun/pom.xml -------------------------------------------------------------------------------- /src/it/attach-artifact-test-with-prefix-antrun/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-test-with-prefix-antrun/test.txt -------------------------------------------------------------------------------- /src/it/attach-artifact-test-with-prefix-antrun/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-test-with-prefix-antrun/verify.bsh -------------------------------------------------------------------------------- /src/it/attach-artifact-test-with-prefix-unknown/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-test-with-prefix-unknown/invoker.properties -------------------------------------------------------------------------------- /src/it/attach-artifact-test-with-prefix-unknown/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-test-with-prefix-unknown/pom.xml -------------------------------------------------------------------------------- /src/it/attach-artifact-test-with-prefix-unknown/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-test-with-prefix-unknown/test.txt -------------------------------------------------------------------------------- /src/it/attach-artifact-test/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-test/invoker.properties -------------------------------------------------------------------------------- /src/it/attach-artifact-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-test/pom.xml -------------------------------------------------------------------------------- /src/it/attach-artifact-test/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/attach-artifact-test/verify.bsh -------------------------------------------------------------------------------- /src/it/classpath-ref-test/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/classpath-ref-test/build.xml -------------------------------------------------------------------------------- /src/it/classpath-ref-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/classpath-ref-test/pom.xml -------------------------------------------------------------------------------- /src/it/classpath-ref-test/src/main/java/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/classpath-ref-test/src/main/java/Test.java -------------------------------------------------------------------------------- /src/it/classpath-test-scope-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/classpath-test-scope-test/pom.xml -------------------------------------------------------------------------------- /src/it/copy-fail-test/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/copy-fail-test/invoker.properties -------------------------------------------------------------------------------- /src/it/copy-fail-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/copy-fail-test/pom.xml -------------------------------------------------------------------------------- /src/it/copy-fail-test/stuff/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/copy-fail-test/stuff/test1.txt -------------------------------------------------------------------------------- /src/it/copy-fail-test/stuff/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/copy-fail-test/stuff/test2.txt -------------------------------------------------------------------------------- /src/it/custom-ant-target-attributes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/custom-ant-target-attributes/pom.xml -------------------------------------------------------------------------------- /src/it/custom-ant-target-attributes/verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/custom-ant-target-attributes/verify.groovy -------------------------------------------------------------------------------- /src/it/custom-task-test/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/custom-task-test/build.xml -------------------------------------------------------------------------------- /src/it/custom-task-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/custom-task-test/pom.xml -------------------------------------------------------------------------------- /src/it/custom-task-test/src/main/java/TestTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/custom-task-test/src/main/java/TestTask.java -------------------------------------------------------------------------------- /src/it/env-var-test/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/env-var-test/build.xml -------------------------------------------------------------------------------- /src/it/env-var-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/env-var-test/pom.xml -------------------------------------------------------------------------------- /src/it/export-ant-properties/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/export-ant-properties/invoker.properties -------------------------------------------------------------------------------- /src/it/export-ant-properties/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/export-ant-properties/pom.xml -------------------------------------------------------------------------------- /src/it/filesets-test/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/filesets-test/invoker.properties -------------------------------------------------------------------------------- /src/it/filesets-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/filesets-test/pom.xml -------------------------------------------------------------------------------- /src/it/filesets-test/src/main/java/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/filesets-test/src/main/java/Test.java -------------------------------------------------------------------------------- /src/it/filesets-test/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/filesets-test/verify.bsh -------------------------------------------------------------------------------- /src/it/local-repo-prop-test/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/local-repo-prop-test/invoker.properties -------------------------------------------------------------------------------- /src/it/local-repo-prop-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/local-repo-prop-test/pom.xml -------------------------------------------------------------------------------- /src/it/multiple-phase-test/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/multiple-phase-test/invoker.properties -------------------------------------------------------------------------------- /src/it/multiple-phase-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/multiple-phase-test/pom.xml -------------------------------------------------------------------------------- /src/it/multiple-phase-test/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/multiple-phase-test/verify.bsh -------------------------------------------------------------------------------- /src/it/never-fail-test/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/never-fail-test/invoker.properties -------------------------------------------------------------------------------- /src/it/never-fail-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/never-fail-test/pom.xml -------------------------------------------------------------------------------- /src/it/plugin-classpath-test/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/plugin-classpath-test/build.xml -------------------------------------------------------------------------------- /src/it/plugin-classpath-test/calc.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/plugin-classpath-test/calc.g -------------------------------------------------------------------------------- /src/it/plugin-classpath-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/plugin-classpath-test/pom.xml -------------------------------------------------------------------------------- /src/it/properties-attributes-test/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/properties-attributes-test/build.xml -------------------------------------------------------------------------------- /src/it/properties-attributes-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/properties-attributes-test/pom.xml -------------------------------------------------------------------------------- /src/it/properties-test/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/properties-test/build.xml -------------------------------------------------------------------------------- /src/it/properties-test/invoker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/properties-test/invoker.properties -------------------------------------------------------------------------------- /src/it/properties-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/properties-test/pom.xml -------------------------------------------------------------------------------- /src/it/properties-test/src/main/java/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/properties-test/src/main/java/Test.java -------------------------------------------------------------------------------- /src/it/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/settings.xml -------------------------------------------------------------------------------- /src/it/task-encoding-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/task-encoding-test/pom.xml -------------------------------------------------------------------------------- /src/it/tasksattributes-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/tasksattributes-test/pom.xml -------------------------------------------------------------------------------- /src/it/tasksattributes-test/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/tasksattributes-test/test.properties -------------------------------------------------------------------------------- /src/it/tasksattributes-test/verify.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/it/tasksattributes-test/verify.bsh -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/ant/tasks/AttachArtifactTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/main/java/org/apache/maven/ant/tasks/AttachArtifactTask.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/ant/tasks/DependencyFilesetsTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/main/java/org/apache/maven/ant/tasks/DependencyFilesetsTask.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/ant/tasks/support/SpecificScopesArtifactFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/main/java/org/apache/maven/ant/tasks/support/SpecificScopesArtifactFilter.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/ant/tasks/support/TypesArtifactFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/main/java/org/apache/maven/ant/tasks/support/TypesArtifactFilter.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/ant/tasks/support/VersionMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/main/java/org/apache/maven/ant/tasks/support/VersionMapper.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/plugins/antrun/AntRunMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/main/java/org/apache/maven/plugins/antrun/AntRunMojo.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/plugins/antrun/AntrunXmlPlexusConfigurationWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/main/java/org/apache/maven/plugins/antrun/AntrunXmlPlexusConfigurationWriter.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/plugins/antrun/MavenAntRunProject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/main/java/org/apache/maven/plugins/antrun/MavenAntRunProject.java -------------------------------------------------------------------------------- /src/main/java/org/apache/maven/plugins/antrun/MavenLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/main/java/org/apache/maven/plugins/antrun/MavenLogger.java -------------------------------------------------------------------------------- /src/main/mdo/antrun.mdo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/main/mdo/antrun.mdo -------------------------------------------------------------------------------- /src/main/resources/org/apache/maven/ant/tasks/antlib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/main/resources/org/apache/maven/ant/tasks/antlib.xml -------------------------------------------------------------------------------- /src/site/apt/examples/classpaths.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/site/apt/examples/classpaths.apt.vm -------------------------------------------------------------------------------- /src/site/apt/examples/customTasks.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/site/apt/examples/customTasks.apt.vm -------------------------------------------------------------------------------- /src/site/apt/examples/tasksAttributes.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/site/apt/examples/tasksAttributes.apt.vm -------------------------------------------------------------------------------- /src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/site/apt/index.apt.vm -------------------------------------------------------------------------------- /src/site/apt/tasks/attachArtifact.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/site/apt/tasks/attachArtifact.apt.vm -------------------------------------------------------------------------------- /src/site/apt/tasks/dependencyFilesets.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/site/apt/tasks/dependencyFilesets.apt.vm -------------------------------------------------------------------------------- /src/site/apt/tasks/tasks.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/site/apt/tasks/tasks.apt.vm -------------------------------------------------------------------------------- /src/site/apt/tasks/versionMapper.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/site/apt/tasks/versionMapper.apt.vm -------------------------------------------------------------------------------- /src/site/apt/usage.apt.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/site/apt/usage.apt.vm -------------------------------------------------------------------------------- /src/site/fml/faq.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/site/fml/faq.fml -------------------------------------------------------------------------------- /src/site/resources/download.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/site/resources/download.cgi -------------------------------------------------------------------------------- /src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/site/site.xml -------------------------------------------------------------------------------- /src/site/xdoc/download.xml.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/site/xdoc/download.xml.vm -------------------------------------------------------------------------------- /src/test/java/org/apache/maven/plugins/antrun/AntrunXmlPlexusConfigurationWriterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/test/java/org/apache/maven/plugins/antrun/AntrunXmlPlexusConfigurationWriterTest.java -------------------------------------------------------------------------------- /src/test/resources/configuration-writer/basic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/test/resources/configuration-writer/basic.xml -------------------------------------------------------------------------------- /src/test/resources/configuration-writer/combine-attributes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/test/resources/configuration-writer/combine-attributes.xml -------------------------------------------------------------------------------- /src/test/resources/configuration-writer/custom-task-prefix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/test/resources/configuration-writer/custom-task-prefix.xml -------------------------------------------------------------------------------- /src/test/resources/configuration-writer/empty-target.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-antrun-plugin/HEAD/src/test/resources/configuration-writer/empty-target.xml --------------------------------------------------------------------------------