Skip to content

Commit

Permalink
Bump pmd from 7.0.0-SNAPSHOT to 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adangel committed Mar 25, 2024
1 parent 1a6deb6 commit c9dc68b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion custom-rules/maven-java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ The result is a zip file: `target/pmd-java-bin-1.0.0-SNAPSHOT.zip`.

```xml
<properties>
<pmd.version>7.0.0-SNAPSHOT</pmd.version>
<pmd.version>7.0.0</pmd.version>
</properties>
...
<plugin>
Expand Down
4 changes: 2 additions & 2 deletions custom-rules/maven-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>8</java.version>
<maven.compiler.release>${java.version}</maven.compiler.release>
<pmd.version>7.0.0-SNAPSHOT</pmd.version>
<pmd-designer.version>7.0.0-SNAPSHOT</pmd-designer.version>
<pmd.version>7.0.0</pmd.version>
<pmd-designer.version>7.0.0</pmd-designer.version>
</properties>

<repositories>
Expand Down
4 changes: 2 additions & 2 deletions custom-rules/maven-plsql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>8</java.version>
<maven.compiler.release>${java.version}</maven.compiler.release>
<pmd.version>7.0.0-SNAPSHOT</pmd.version>
<pmd-designer.version>7.0.0-SNAPSHOT</pmd-designer.version>
<pmd.version>7.0.0</pmd.version>
<pmd-designer.version>7.0.0</pmd-designer.version>
</properties>

<repositories>
Expand Down
2 changes: 1 addition & 1 deletion custom-rules/plain-java/.ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
set -e
java -version

PMD_VERSION=7.0.0-SNAPSHOT
PMD_VERSION=7.0.0

echo
echo "======================================================="
Expand Down
2 changes: 1 addition & 1 deletion gradle/simple-project/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ tasks.named('test') {
}

pmd {
toolVersion = "7.0.0-SNAPSHOT"
toolVersion = "7.0.0"
consoleOutput = true

//ruleSets = ["category/java/errorprone.xml"] // default
Expand Down
2 changes: 1 addition & 1 deletion maven/simple-project/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<pmd.plugin.version>3.21.2</pmd.plugin.version>
<pmd.version>7.0.0-SNAPSHOT</pmd.version>
<pmd.version>7.0.0</pmd.version>
</properties>

<build>
Expand Down

0 comments on commit c9dc68b

Please sign in to comment.