Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update tooling dependencies #358

Merged
merged 3 commits into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Note that CI is configured throw [GitHub Actions](https://github.com/IGNF/valida

It relies on [.github/workflows/main.yml](.github/workflows/main.yml) which :

* Install OpenJDK 11 and maven
* Install Java and maven
* Install ogr2ogr
* Run tests through [.ci/build-openjdk11.sh](.ci/build-openjdk11.sh)

Expand Down
10 changes: 6 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,12 @@
<!-- Testing -->
<junit.version>4.13.2</junit.version>
<jsonassert.version>1.5.3</jsonassert.version>
<mockito.version>4.11.0</mockito.version>
<mockito.version>5.12.0</mockito.version>
<!-- Build and deploy -->
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
<maven-surefire-plugin.version>3.3.1</maven-surefire-plugin.version>
<maven-release-plugin.version>3.1.1</maven-release-plugin.version>
<jacoco-maven-plugin.version>0.8.12</jacoco-maven-plugin.version>
<!-- JDK 8 features -->
<javax.annotation.version>1.3.2</javax.annotation.version>
<javax.activation.version>1.1.1</javax.activation.version>
Expand Down Expand Up @@ -360,7 +362,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<version>${maven-release-plugin.version}</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
Expand All @@ -381,7 +383,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.12</version>
<version>${jacoco-maven-plugin.version}</version>
</plugin>

</plugins>
Expand Down
2 changes: 1 addition & 1 deletion validator-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<version>3.6.0</version>
<executions>
<execution>
<phase>package</phase>
Expand Down