whitespace-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.hazendaz.maven</groupId>
<artifactId>whitespace-maven-plugin</artifactId>
<version>1.6.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
whitespace-maven-plugin (https://github.com/hazendaz/whitespace-maven-plugin)
Copyright 2011-2025 dantwining, Hazendaz.
All rights reserved. This program and the accompanying materials
are made available under the terms of The Apache Software License,
Version 2.0 which accompanies this distribution, and is available at
https://www.apache.org/licenses/LICENSE-2.0.txt
Contributors:
dantwining (dantwining).
Hazendaz (Jeremy Landis).
-->
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.hazendaz</groupId>
<artifactId>base-parent</artifactId>
<version>56</version>
<relativePath />
</parent>
<groupId>com.github.hazendaz.maven</groupId>
<artifactId>whitespace-maven-plugin</artifactId>
<version>1.6.0</version>
<packaging>maven-plugin</packaging>
<name>whitespace-maven-plugin</name>
<description>Maven plugin for stripping trailing whitespace errors from java source code</description>
<url>https://github.com/dantwining/whitespace-maven-plugin</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>dantwining</id>
<name>dantwining</name>
<email>twitter@dantwining</email>
</developer>
</developers>
<prerequisites>
<maven>3.6.3</maven>
</prerequisites>
<scm>
<connection>scm:git:git@github.com:hazendaz/whitespace-maven-plugin.git</connection>
<developerConnection>scm:git:git@github.com:hazendaz/whitespace-maven-plugin.git</developerConnection>
<tag>whitespace-maven-plugin-1.6.0</tag>
<url>https://github.com/hazendaz/whitespace-maven-plugin</url>
</scm>
<issueManagement>
<system>Github</system>
<url>https://github.com/hazendaz/whitespace-maven-plugin/issues</url>
</issueManagement>
<ciManagement>
<system>Github</system>
<url>https://github.com/hazendaz/whitespace-maven-plugin/actions</url>
</ciManagement>
<distributionManagement>
<site>
<id>gh-pages-scm</id>
<name>Whitespace Maven Plugin Site Pages</name>
<url>scm:git:ssh://git@github.com/hazendaz/whitespace-maven-plugin.git</url>
</site>
</distributionManagement>
<properties>
<!-- Java Runtime Requirements -->
<java.version>11</java.version>
<java.release.version>11</java.release.version>
<!-- Checkstyle -->
<checkstyle.config>checkstyle-4space.xml</checkstyle.config>
<!-- Coverage -->
<jacoco.minimum.coverage>0.16</jacoco.minimum.coverage>
<!-- Automatic Module Name -->
<module.name>com.github.hazendaz.maven.whitespace</module.name>
<!-- Reproducible Builds -->
<project.build.outputTimestamp>1765146662</project.build.outputTimestamp>
<!-- Maven Artifacts -->
<maven.version>3.9.11</maven.version>
<maven-plugin.version>3.15.2</maven-plugin.version>
<plexus-utils.version>4.0.2</plexus-utils.version>
<plexus-xml.version>3.0.2</plexus-xml.version>
<!-- Junit -->
<bytebuddy.version>1.18.2</bytebuddy.version>
<javabean-tester.version>2.11.2</javabean-tester.version>
<junit.version>6.0.1</junit.version>
<powermock.version>2.0.9</powermock.version>
<slf4j.version>2.0.17</slf4j.version>
<!-- Direct Dependencies -->
<io.version>2.21.0</io.version>
<lang3.version>3.20.0</lang3.version>
<!-- Skip formatting plugins that will break test cases and unnecessary in this case. -->
<spotless.apply.skip>true</spotless.apply.skip>
<whitespace.skip>true</whitespace.skip>
</properties>
<dependencyManagement>
<dependencies>
<!-- Byte Buddy to resolve older usage in powermock. -->
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>${bytebuddy.version}</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>${bytebuddy.version}</version>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Plexus -->
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>${plexus-utils.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-xml</artifactId>
<version>${plexus-xml.version}</version>
</dependency>
<!-- Slf4j -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- Maven -->
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${maven-plugin.version}</version>
<scope>provided</scope>
</dependency>
<!-- Junit -->
<dependency>
<groupId>com.github.hazendaz</groupId>
<artifactId>javabean-tester</artifactId>
<version>${javabean-tester.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-reflect</artifactId>
<version>${powermock.version}</version>
<scope>test</scope>
</dependency>
<!-- Direct Dependencies -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${io.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${lang3.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>${maven-plugin.version}</version>
<executions>
<execution>
<id>default-descriptor</id>
<goals>
<goal>descriptor</goal>
</goals>
</execution>
<execution>
<id>help-goal</id>
<goals>
<goal>helpmojo</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>check</id>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-report-plugin</artifactId>
<version>${maven-plugin.version}</version>
</plugin>
</plugins>
</reporting>
</project>