buildplan-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codehaus.mojo</groupId> <artifactId>buildplan-maven-plugin</artifactId> <version>2.2.2</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.codehaus.mojo</groupId> <artifactId>mojo-parent</artifactId> <version>70</version> </parent> <artifactId>buildplan-maven-plugin</artifactId> <version>2.2.2</version> <packaging>maven-plugin</packaging> <name>BuildPlan Maven Plugin</name> <description>The BuildPlan Plugin can inspect your project lifecycle.</description> <url>https://www.mojohaus.org/buildplan-maven-plugin/</url> <inceptionYear>2012</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <prerequisites> <maven>3.2.5</maven> </prerequisites> <scm> <connection>scm:git:https://github.com/mojohaus/buildplan-maven-plugin.git</connection> <developerConnection>scm:git:ssh://git@github.com/mojohaus/buildplan-maven-plugin.git</developerConnection> <tag>v2.2.2</tag> <url>https://github.com/mojohaus/buildplan-maven-plugin/tree/${project.scm.tag}</url> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/mojohaus/buildplan-maven-plugin/issues</url> </issueManagement> <properties> <mojo.java.target>1.8</mojo.java.target> <project.build.outputTimestamp>2023-01-25T11:02:32Z</project.build.outputTimestamp> <jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version> <doxia.version>1.11.1</doxia.version> <maven-reporting.version>3.1.0</maven-reporting.version> <itf.version>0.11.0</itf.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>5.9.1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.24.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.soebes.itf.jupiter.extension</groupId> <artifactId>itf-jupiter-extension</artifactId> <version>${itf.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.soebes.itf.jupiter.extension</groupId> <artifactId>itf-assertj</artifactId> <version>${itf.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.15.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.fusesource.jansi</groupId> <artifactId>jansi</artifactId> <version>2.4.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${project.prerequisites.maven}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>${project.prerequisites.maven}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-sink-api</artifactId> <version>${doxia.version}</version> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-site-renderer</artifactId> <version>${doxia.version}</version> </dependency> <dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-impl</artifactId> <version>${maven-reporting.version}</version> </dependency> <dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-api</artifactId> <version>${maven-reporting.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <executions> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> <execution> <id>help-goal</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>4.1</version> <configuration> <header>com/mycila/licenses/APACHE-2</header> <properties> <owner>Jean-Christophe Gay</owner> <year>${project.inceptionYear}</year> <email>contact@jeanchristophegay.com</email> </properties> <excludes> <exclude>**/README</exclude> <exclude>LICENSE</exclude> <exclude>pom.xml</exclude> <exclude>src/test/resources/**</exclude> <exclude>src/main/resources/**</exclude> <exclude>src/site/**</exclude> <exclude>.editorconfig</exclude> <exclude>etc/*</exclude> <exclude>src/it/**</exclude> <exclude>src/test/resources-its/**</exclude> <exclude>.github/**</exclude> <exclude>jreleaser.yml</exclude> <exclude>.gitpod.yml</exclude> </excludes> </configuration> <dependencies> <dependency> <groupId>com.mycila</groupId> <artifactId>licenses</artifactId> <version>1</version> </dependency> </dependencies> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven-plugin.version}</version> <executions> <execution> <id>prepare-argument-for-test-runner</id> <goals> <goal>prepare-agent</goal> <goal>prepare-agent-integration</goal> </goals> <configuration> <append>true</append> </configuration> </execution> <execution> <id>merge-unit-and-integration-tests-executions</id> <goals> <goal>merge</goal> </goals> <phase>verify</phase> <configuration> <fileSets> <fileSet> <directory>${project.build.directory}</directory> <includes> <include>*.exec</include> </includes> </fileSet> </fileSets> <destFile>${project.build.directory}/jacoco-merge.exec</destFile> </configuration> </execution> <execution> <goals> <goal>report</goal> </goals> <configuration> <dataFile>${project.build.directory}/jacoco-merge.exec</dataFile> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> <localCheckout>true</localCheckout> </configuration> </plugin> <plugin> <groupId>com.soebes.itf.jupiter.extension</groupId> <artifactId>itf-maven-plugin</artifactId> <version>${itf.version}</version> <executions> <execution> <id>installing</id> <goals> <goal>install</goal> <goal>resources-its</goal> </goals> <phase>pre-integration-test</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <systemProperties> <maven.version>${maven.version}</maven.version> <maven.home>${maven.home}</maven.home> </systemProperties> <environmentVariables> <MAVEN_OPTS>${argLine}</MAVEN_OPTS> </environmentVariables> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>2.27.2</version> <configuration> <java> <importOrder /> <removeUnusedImports /> <palantirJavaFormat /> <formatAnnotations /> </java> <pom> <sortPom> <nrOfIndentSpace>4</nrOfIndentSpace> <expandEmptyElements>false</expandEmptyElements> <spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement> </sortPom> </pom> <markdown> <includes> <include>**/*.md</include> </includes> <flexmark /> </markdown> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven-plugin.version}</version> </plugin> </plugins> </reporting> <profiles> <profile> <id>compile-release</id> <activation> <jdk>!1.8</jdk> </activation> <properties> <maven.compiler.release>8</maven.compiler.release> </properties> </profile> </profiles> </project>