mule-module-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mule.tools.maven</groupId> <artifactId>mule-module-maven-plugin</artifactId> <version>1.0.0-rc</version> </dependency>
<?xml version='1.0' encoding='UTF-8'?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.mule.tools.maven</groupId> <artifactId>mule-module-maven-plugin</artifactId> <version>1.0.0-rc</version> <packaging>maven-plugin</packaging> <name>Mule Module Analyzer Plugin</name> <description>Provides utility goals to work with mule modules.</description> <url>http://github.com/mulesoft/mule-module-maven-plugin</url> <inceptionYear>2016</inceptionYear> <licenses> <license> <name>CPAL v1.0</name> <url>http://www.mulesoft.com/CPAL</url> </license> </licenses> <organization> <name>MuleSoft, Inc.</name> <url>https://www.mulesoft.com</url> </organization> <prerequisites> <maven>${mavenVersion}</maven> </prerequisites> <developers> <developer> <id>canoasan</id> <name>Matias Baldini</name> <email>matias.baldini@mulesoft.com</email> <roles> <role>Project Manager</role> </roles> </developer> <developer> <id>pablokraan</id> <name>Pablo Kraan</name> </developer> </developers> <properties> <maven>3.0.4</maven> <mavenVersion>2.2.1</mavenVersion> <doxiaVersion>1.4</doxiaVersion> <pluginTestingVersion>2.1</pluginTestingVersion> <maven.surefire.plugin.version>2.18.1</maven.surefire.plugin.version> <maven-plugin-plugin.version>3.3</maven-plugin-plugin.version> <maven.api.version>3.0.4</maven.api.version> <takari.test.version>2.8.0</takari.test.version> <publisher.version>v2-rev13-1.19.0</publisher.version> <asm.version>5.0.4</asm.version> <jdk.version>1.8</jdk.version> <license.path>LICENSE_HEADER.txt</license.path> <javaFormatter.plugin.version>2.0.1</javaFormatter.plugin.version> <license.maven.plugin.version>2.11</license.maven.plugin.version> <formatterGoal>validate</formatterGoal> <formatterConfigPath>formatter.xml</formatterConfigPath> <skipVerifications>false</skipVerifications> <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding> <maven.enforcer.plugin.version>1.4.1</maven.enforcer.plugin.version> </properties> <scm> <connection>scm:git:git://github.com/mulesoft/mule-module-maven-plugin.git </connection> <developerConnection> scm:git:git@github.com:mulesoft/mule-module-maven-plugin.git </developerConnection> <url>https://github.com/mulesoft/mule-module-maven-plugin</url> </scm> <dependencies> <!-- maven --> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>${maven.api.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-compat</artifactId> <version>${maven.api.version}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${maven.api.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact-manager</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-repository-metadata</artifactId> <version>${mavenVersion}</version> </dependency> <!-- shared --> <dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-api</artifactId> <version>3.0</version> </dependency> <dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-impl</artifactId> <version>2.2</version> </dependency> <!-- doxia --> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-sink-api</artifactId> <version>${doxiaVersion}</version> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-site-renderer</artifactId> <version>${doxiaVersion}</version> </dependency> <!-- plexus --> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-archiver</artifactId> <version>3.0.1</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>3.0.22</version> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>file-management</artifactId> <version>1.2.1</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-io</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>5.0.2</version> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-dependency-tree</artifactId> <version>2.2</version> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-common-artifact-filters</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-invoker</artifactId> <version>2.1.1</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.1</version> </dependency> <dependency> <groupId>classworlds</groupId> <artifactId>classworlds</artifactId> <version>1.1</version> </dependency> <!-- dependencies to annotations --> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${maven-plugin-plugin.version}</version> <scope>provided</scope> </dependency> <!-- test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <version>3.3.0</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-interpolation</artifactId> <version>1.21</version> <scope>test</scope> </dependency> <dependency> <groupId>io.takari.maven.plugins</groupId> <artifactId>takari-plugin-integration-testing</artifactId> <version>${takari.test.version}</version> <type>pom</type> <scope>test</scope> </dependency> </dependencies> <build> <defaultGoal>install</defaultGoal> <extensions> <!-- WebDAV for remote deployment --> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-webdav-jackrabbit</artifactId> <version>1.0-beta-7</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.5</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> <encoding>ISO-8859-1</encoding> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>1.0-alpha-4</version> <executions> <execution> <id>enforce-maven-version</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>[3.0.0,)</version> </requireMavenVersion> <requireJavaVersion> <version>[1.8.0,)</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.8.0</version> <configuration> <header>${license.path}</header> <excludes> <exclude>target/**</exclude> <exclude>.gitignore</exclude> <exclude>**/*.txt</exclude> <exclude>**/*.ftl</exclude> <exclude>**/build-number.txt</exclude> <exclude>**/*.ftl</exclude> <exclude>**/assets/**</exclude> <exclude>**/*.xsd</exclude> <exclude>**/*.properties</exclude> <exclude>**/*.xml</exclude> <exclude>**/archetype-resources/**</exclude> <exclude>**/src/main/java/package.html</exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>io.takari.maven.plugins</groupId> <artifactId>takari-lifecycle-plugin</artifactId> <version>1.10.0</version> <executions> <execution> <id>testProperties</id> <phase>process-test-resources</phase> <goals> <goal>testProperties</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <!-- Need of more heap space in order to run the unit tests !--> <argLine>-Xmx384m</argLine> <systemPropertyVariables> <maven.home>${maven.home}</maven.home> </systemPropertyVariables> </configuration> </plugin> <plugin> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-component-metadata</artifactId> <version>1.6</version> <executions> <execution> <goals> <goal>generate-metadata</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> <version>${javaFormatter.plugin.version}</version> <configuration> <compilerCompliance>${jdk.version}</compilerCompliance> <compilerSource>${jdk.version}</compilerSource> <compilerTargetPlatform>${jdk.version}</compilerTargetPlatform> <configFile>${basedir}/${formatterConfigPath}</configFile> <configJsFile>${basedir}/${formatterConfigPath}</configJsFile> <aggregator>false</aggregator> <executionRoot>true</executionRoot> </configuration> <executions> <execution> <id>apply-format</id> <phase>compile</phase> <goals> <goal>${formatterGoal}</goal> </goals> <configuration> <skipFormatting>${skipVerifications}</skipFormatting> </configuration> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <id>mule-releases</id> <name>MuleSoft Releases</name> <url>https://repository.mulesoft.org/nexus/content/repositories/releases</url> </repository> <repository> <id>mule-snapshots</id> <name>MuleSoft Snapshot Repository</name> <url>https://repository.mulesoft.org/nexus/content/repositories/snapshots/</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>mule-releases</id> <name>MuleSoft Release Repository</name> <url>https://repository.mulesoft.org/nexus/content/repositories/releases</url> </pluginRepository> <pluginRepository> <id>mule-snapshots</id> <name>MuleSoft Snapshot Repository</name> <url>https://repository.mulesoft.org/nexus/content/repositories/snapshots/</url> </pluginRepository> </pluginRepositories> <distributionManagement> <repository> <id>mule-releases</id> <name>Mule Release Repository</name> <url>https://repository-master.mulesoft.org/nexus/content/repositories/releases</url> </repository> <snapshotRepository> <id>mule-snapshots</id> <name>Mule Snapshot Repository</name> <url>https://repository-master.mulesoft.org/nexus/content/repositories/snapshots</url> <uniqueVersion>false</uniqueVersion> </snapshotRepository> </distributionManagement> <profiles> <profile> <id>release</id> <properties> <skipVerifications>false</skipVerifications> <skipGpg>false</skipGpg> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <skip>${skipGpg}</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven.enforcer.plugin.version}</version> <executions> <execution> <id>enforce-no-snapshots-in-deps</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireReleaseDeps> <message>No Snapshots Allowed in Deps!</message> </requireReleaseDeps> <requireReleaseVersion> <message>No Snapshots Allowed in Project Version!</message> </requireReleaseVersion> <requirePluginVersions> <message>Best Practice is to always define plugin versions!</message> <unCheckedPluginList> org.apache.maven.plugins:maven-plugin-plugin, org.apache.maven.plugins:maven-site-plugin, org.apache.maven.plugins:maven-resources-plugin, org.apache.maven.plugins:maven-jar-plugin, org.apache.maven.plugins:maven-clean-plugin, org.apache.maven.plugins:maven-install-plugin, org.apache.maven.plugins:maven-deploy-plugin </unCheckedPluginList> </requirePluginVersions> </rules> <skip>${skipNoSnapshotsEnforcerPluginRule}</skip> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>