mda-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.boozallen.aissemble</groupId> <artifactId>mda-maven-plugin</artifactId> <version>1.12.1</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.boozallen.aissemble</groupId> <artifactId>foundation-maven-plugins</artifactId> <version>1.12.1</version> </parent> <artifactId>mda-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <name>aiSSEMBLE::Foundation::Maven Plugins::MDA Maven Plugin</name> <description> MDA Maven is a plugin for deriving dependencies from MDA models. </description> <properties> <!-- versions for plugin specific dependencies--> <version.mojo.executor>2.4.0</version.mojo.executor> <version.testing.harness>3.3.0</version.testing.harness> <version.aether>1.1.0</version.aether> </properties> <dependencies> <!-- Explicitly declared due to breaking change for Maven 3.9.0 https://maven.apache.org/docs/3.9.0/release-notes.html --> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>${version.plexus.util}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${version.maven.core}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${version.maven.core}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${version.plugin.plugin}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <version>${version.testing.harness}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-compat</artifactId> <version>${version.maven.core}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.technologybrewery.fermenter</groupId> <artifactId>fermenter-mda</artifactId> <version>${version.fermenter}</version> </dependency> <dependency> <groupId>com.boozallen.aissemble</groupId> <artifactId>foundation-mda</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.twdata.maven</groupId> <artifactId>mojo-executor</artifactId> <version>${version.mojo.executor}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> </dependency> <!-- Test dependencies: --> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-java</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-connector-basic</artifactId> <version>${version.aether}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-transport-http</artifactId> <version>${version.aether}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <extensions>true</extensions> </plugin> <!--Adds a pipeline jar file to the local repository for testing the plugin--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <executions> <execution> <id>install-test-pipeline-jar</id> <phase>generate-test-resources</phase> <goals> <goal>install-file</goal> </goals> <configuration> <file>src/test/resources/pipelines/data-flow/data-delivery-spark-pipeline/data-delivery-spark-pipeline.jar</file> <groupId>${project.groupId}</groupId> <artifactId>data-delivery-spark-pipeline</artifactId> <version>TEST</version> <packaging>jar</packaging> <generatePom>true</generatePom> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build> </project>