Skip to content

Commit

Permalink
setup
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaswoehlke committed Dec 30, 2022
1 parent 1d4a82d commit aefe5b3
Showing 1 changed file with 72 additions and 1 deletion.
73 changes: 72 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -511,13 +511,64 @@
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
</exclusion>
<exclusion>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd</artifactId>
</exclusion>
<exclusion>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
</exclusion>
<exclusion>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
</exclusion>
<exclusion>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-javascript</artifactId>
</exclusion>
<exclusion>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-jsp</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
<version>1.82</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd</artifactId>
<version>${version.maven-pmd-plugin.pmd}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>${version.maven-pmd-plugin.pmd}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>${version.maven-pmd-plugin.pmd}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-javascript</artifactId>
<version>${version.maven-pmd-plugin.pmd}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-jsp</artifactId>
<version>${version.maven-pmd-plugin.pmd}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down Expand Up @@ -787,6 +838,26 @@
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-javascript</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-jsp</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down Expand Up @@ -924,7 +995,7 @@
<dependencies>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd</artifactId>
<artifactId>pmd-core</artifactId>
<version>${version.maven-pmd-plugin.pmd}</version>
</dependency>
</dependencies>
Expand Down

0 comments on commit aefe5b3

Please sign in to comment.