pmd-dist
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sourceforge.pmd</groupId> <artifactId>pmd-dist</artifactId> <version>7.12.0</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> <artifactId>pmd-dist</artifactId> <name>PMD Distribution Packages</name> <packaging>jar</packaging> <parent> <groupId>net.sourceforge.pmd</groupId> <artifactId>pmd</artifactId> <version>7.12.0</version> <relativePath>../pom.xml</relativePath> </parent> <properties> <pmd.dist.bin.baseDirectory>pmd-bin-${project.version}</pmd.dist.bin.baseDirectory> </properties> <build> <plugins> <plugin> <groupId>org.cyclonedx</groupId> <artifactId>cyclonedx-maven-plugin</artifactId> <configuration> <outputName>pmd-${project.version}-cyclonedx</outputName> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-resources</id> <phase>prepare-package</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/target/extra-resources</outputDirectory> <resources> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <appendAssemblyId>true</appendAssemblyId> <attach>false</attach> <archiverConfig> <defaultDirectoryMode>493</defaultDirectoryMode> <!-- 0755 --> </archiverConfig> </configuration> <executions> <execution> <id>build-bin-dist</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/resources/assemblies/pmd-bin.xml</descriptor> </descriptors> </configuration> </execution> <execution> <id>build-src-dist</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/resources/assemblies/pmd-src.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-ant</id> <phase>pre-integration-test</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>${ant.version}</version> </artifactItem> <artifactItem> <groupId>org.apache.ant</groupId> <artifactId>ant-launcher</artifactId> <version>${ant.version}</version> </artifactItem> </artifactItems> <outputDirectory>${project.build.directory}/ant</outputDirectory> <stripVersion>true</stripVersion> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <id>failsafe-default</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.sourceforge.pmd</groupId> <artifactId>pmd-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>net.sourceforge.pmd</groupId> <artifactId>pmd-cli</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>net.sourceforge.pmd</groupId> <artifactId>pmd-ant</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>net.sourceforge.pmd</groupId> <artifactId>pmd-designer</artifactId> <version>${pmd-designer.version}</version> </dependency> <dependency> <groupId>net.sourceforge.pmd</groupId> <artifactId>pmd-languages-deps</artifactId> <version>${project.version}</version> <type>pom</type> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.27.1</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>jdk8-compat-it</id> <activation> <property> <name>java8.home</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <id>jdk8-compat-it</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <configuration> <environmentVariables> <JAVA_HOME>${java8.home}</JAVA_HOME> <PATH>${java8.home}/bin:${env.PATH}</PATH> </environmentVariables> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jdk17-compat-it</id> <activation> <property> <name>java17.home</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <id>jdk17-compat-it</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <configuration> <environmentVariables> <JAVA_HOME>${java17.home}</JAVA_HOME> <PATH>${java17.home}/bin:${env.PATH}</PATH> </environmentVariables> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jdk21-compat-it</id> <activation> <property> <name>java21.home</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <id>jdk21-compat-it</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <configuration> <environmentVariables> <JAVA_HOME>${java21.home}</JAVA_HOME> <PATH>${java21.home}/bin:${env.PATH}</PATH> </environmentVariables> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>