Skip to content

Commit

Permalink
Update dependencies and plugins
Browse files Browse the repository at this point in the history
- Update the gradle-tooling-api dependency to 8.12.1
- Update the github-api dependency to 1.327
- Update the bridge-method-annotation dependency to 1.30
- Update the junit-jupiter dependency to 5.12.0
- Update the maven-compiler-plugin plugin to 3.14.0
- Update pmd-core and pmd-java dependencies to 7.10.0
  • Loading branch information
AlexisJehan committed Feb 24, 2025
1 parent 780bfa6 commit 0c993df
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 67 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,14 @@
## 1.8.0 (unreleased)

### Notes
- Update the `gradle-tooling-api` dependency to `8.12.1`
- Update the `github-api` dependency to `1.327`
- Update the `bridge-method-annotation` dependency to `1.30`
- Update the `junit-jupiter` dependency to `5.12.0`
- Update the `assertj-core` dependency to `3.27.3`
- Update `mockito-core` and `mockito-junit-jupiter` dependencies to `5.15.2`
- Update `pmd-core` and `pmd-java` dependencies to `7.9.0`
- Update the `maven-compiler-plugin` plugin to `3.14.0`
- Update `pmd-core` and `pmd-java` dependencies to `7.10.0`

## [1.7.1](https://github.com/AlexisJehan/MvnCheck/releases/tag/v1.7.1) (2024-12-23)

Expand Down
128 changes: 63 additions & 65 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,23 +82,23 @@
<dependency>
<groupId>org.gradle</groupId>
<artifactId>gradle-tooling-api</artifactId> <!-- From the "gradle" repository -->
<version>8.12</version>
<version>8.12.1</version>
</dependency>
<dependency>
<groupId>org.kohsuke</groupId>
<artifactId>github-api</artifactId>
<version>1.326</version>
<version>1.327</version>
</dependency>
<dependency>
<groupId>com.infradna.tool</groupId>
<artifactId>bridge-method-annotation</artifactId> <!-- From the "jenkins" repository -->
<version>1.29</version> <!-- Based on "org.kohsuke:github-api:1.326" -->
<version>1.30</version> <!-- Based on "org.kohsuke:github-api:1.327" -->
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
<version>4.8.6</version> <!-- Based on "org.kohsuke:github-api:1.326" -->
<version>4.8.6</version> <!-- Based on "org.kohsuke:github-api:1.327" -->
<scope>provided</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -138,7 +138,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.11.4</version>
<version>5.12.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -185,65 +185,6 @@
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>4.6</version>
<configuration>
<licenseSets>
<licenseSet>
<header>LICENSE.txt</header>
<includes>
<includes>src/**/*.java</includes>
</includes>
</licenseSet>
</licenseSets>
<mapping>
<java>SLASHSTAR_STYLE</java>
</mapping>
</configuration>
<executions>
<execution>
<id>license-check</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.26.0</version>
<configuration>
<excludeFromFailureFile>${project.basedir}/exclude-pmd.properties</excludeFromFailureFile>
<linkXRef>false</linkXRef>
<includeTests>true</includeTests>
<verbose>true</verbose>
</configuration>
<executions>
<execution>
<id>pmd-check</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>7.9.0</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>7.9.0</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
Expand All @@ -260,7 +201,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<version>3.14.0</version>
<configuration>
<showDeprecation>true</showDeprecation>
<compilerArgs>
Expand Down Expand Up @@ -462,6 +403,63 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>4.6</version>
<configuration>
<licenseSets>
<licenseSet>
<header>LICENSE.txt</header>
<includes>
<includes>src/**/*.java</includes>
</includes>
</licenseSet>
</licenseSets>
<mapping>
<java>SLASHSTAR_STYLE</java>
</mapping>
</configuration>
<executions>
<execution>
<id>license-check</id>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.26.0</version>
<configuration>
<excludeFromFailureFile>${project.basedir}/exclude-pmd.properties</excludeFromFailureFile>
<linkXRef>false</linkXRef>
<includeTests>true</includeTests>
<verbose>true</verbose>
</configuration>
<executions>
<execution>
<id>pmd-check</id>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>7.10.0</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>7.10.0</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* Enumeration of <i>Gradle</i> artifact types.
*
* <p><b>Note</b>: Based on {@code org.gradle:gradle-tooling-api:8.12}.</p>
* <p><b>Note</b>: Based on {@code org.gradle:gradle-tooling-api:8.12.1}.</p>
* @see <a href="https://docs.gradle.org/current/userguide/java_plugin.html#sec:java_plugin_and_dependency_management">https://docs.gradle.org/current/userguide/java_plugin.html#sec:java_plugin_and_dependency_management</a>
* @see <a href="https://docs.gradle.org/current/userguide/java_library_plugin.html#sec:java_library_configurations_graph">https://docs.gradle.org/current/userguide/java_library_plugin.html#sec:java_library_configurations_graph</a>
* @since 1.0.0
Expand Down

0 comments on commit 0c993df

Please sign in to comment.