maven-reporting-exec
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-exec</artifactId> <version>2.0.0-M1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>maven-shared-components</artifactId> <groupId>org.apache.maven.shared</groupId> <version>34</version> <relativePath>pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-exec</artifactId> <name>Apache Maven Reporting Executor</name> <version>2.0.0-M1</version> <description>Classes to manage report plugin executions with Maven 3.</description> <issueManagement> <system>jira</system> <url>https://issues.apache.org/jira/browse/MSHARED/component/12326449</url> </issueManagement> <ciManagement> <system>Jenkins</system> <url>https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-reporting-exec/</url> </ciManagement> <scm> <connection>scm:git:https://gitbox.apache.org/repos/asf/maven-reporting-exec.git</connection> <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-reporting-exec.git</developerConnection> <tag>maven-reporting-exec-2.0.0-M1</tag> <url>https://github.com/apache/maven-reporting-exec/tree/${project.scm.tag}</url> </scm> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <configuration> <detectLinks>false</detectLinks> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>org.codehaus.plexus:plexus-utils</include> </includes> </artifactSet> <filters> <filter> <artifact>org.codehaus.plexus:plexus-utils</artifact> <includes> <include>org/codehaus/plexus/util/xml/Xpp3DomUtils.class</include> </includes> </filter> </filters> <relocations> <relocation> <pattern>org.codehaus.plexus.util.xml.Xpp3DomUtils</pattern> <shadedPattern>org.apache.maven.reporting.exec.xml.Xpp3DomUtils</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <localRepository>${settings.localRepository}</localRepository> <mavenHome>${env.M2_HOME}</mavenHome> </systemPropertyVariables> </configuration> </plugin> <plugin> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-component-metadata</artifactId> <executions> <execution> <goals> <goal>generate-metadata</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>ensure-no-container-api</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <bannedDependencies> <excludes> <exclude>org.codehaus.plexus:plexus-component-api</exclude> <exclude>org.codehaus.plexus:plexus-container-default</exclude> </excludes> <message>The new containers are not supported. You probably added a dependency that is missing the exclusions.</message> </bannedDependencies> </rules> <fail>true</fail> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-invoker-plugin</artifactId> <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> <configuration> <debug>true</debug> <projectsDirectory>src/it</projectsDirectory> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> <preBuildHookScript>setup</preBuildHookScript> <postBuildHookScript>verify</postBuildHookScript> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <settingsFile>src/it/settings.xml</settingsFile> <ignoreFailures>false</ignoreFailures> <pomIncludes> <pomInclude>*/pom.xml</pomInclude> </pomIncludes> <properties> <maven.compiler.source>${maven.compiler.source}</maven.compiler.source> <maven.compiler.target>${maven.compiler.target}</maven.compiler.target> </properties> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-api</artifactId> <version>4.0.0-M1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>3.2.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.2.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>3.2.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.2.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-settings</artifactId> <version>3.2.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-settings-builder</artifactId> <version>3.2.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-shared-utils</artifactId> <version>3.3.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-component-annotations</artifactId> <version>2.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-sink-api</artifactId> <version>2.0.0-M2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.36</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-api</artifactId> <version>1.0.0.v20140518</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-util</artifactId> <version>1.0.0.v20140518</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <version>3.3.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>plexus-container-default</artifactId> <groupId>org.codehaus.plexus</groupId> </exclusion> <exclusion> <artifactId>plexus-archiver</artifactId> <groupId>org.codehaus.plexus</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.36</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-compat</artifactId> <version>3.2.5</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>wagon-provider-api</artifactId> <groupId>org.apache.maven.wagon</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-embedder</artifactId> <version>3.2.5</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>commons-cli</artifactId> <groupId>commons-cli</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-aether-provider</artifactId> <version>3.2.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-classworlds</artifactId> <version>2.5.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-connector-basic</artifactId> <version>1.0.0.v20140518</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-transport-http</artifactId> <version>1.0.0.v20140518</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>httpclient</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>jcl-over-slf4j</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-site-renderer</artifactId> <version>2.0.0-M2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>velocity</artifactId> <groupId>org.apache.velocity</groupId> </exclusion> <exclusion> <artifactId>doxia-core</artifactId> <groupId>org.apache.maven.doxia</groupId> </exclusion> <exclusion> <artifactId>doxia-decoration-model</artifactId> <groupId>org.apache.maven.doxia</groupId> </exclusion> <exclusion> <artifactId>doxia-skin-model</artifactId> <groupId>org.apache.maven.doxia</groupId> </exclusion> <exclusion> <artifactId>doxia-module-xhtml</artifactId> <groupId>org.apache.maven.doxia</groupId> </exclusion> <exclusion> <artifactId>doxia-module-xhtml5</artifactId> <groupId>org.apache.maven.doxia</groupId> </exclusion> <exclusion> <artifactId>plexus-velocity</artifactId> <groupId>org.codehaus.plexus</groupId> </exclusion> <exclusion> <artifactId>velocity-tools</artifactId> <groupId>org.apache.velocity</groupId> </exclusion> <exclusion> <artifactId>commons-lang3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.eclipse.sisu</groupId> <artifactId>org.eclipse.sisu.plexus</artifactId> <version>0.3.5</version> <scope>provided</scope> </dependency> </dependencies> <distributionManagement> <site> <id>apache.website</id> <url>scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path}</url> </site> </distributionManagement> <properties> <slf4jVersion>1.7.36</slf4jVersion> <javaVersion>8</javaVersion> <sitePluginVersion>3.12.0</sitePluginVersion> <projectInfoReportsPluginVersion>3.2.2</projectInfoReportsPluginVersion> <aetherVersion>1.0.0.v20140518</aetherVersion> <project.build.outputTimestamp>2022-04-23T19:16:49Z</project.build.outputTimestamp> <mavenVersion>3.2.5</mavenVersion> </properties> </project>