Skip to content

fix: update dependencies #28

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

Merged
merged 1 commit into from
Jan 4, 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
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ stages:
if: tag IS present

before_install:
# Need to install this key to avoid GPG errors during `apt update`
# because the perforce key pre-installed in the travis build image expired on 8/14/2023.
# Reference: https://www.perforce.com/manuals/p4sag/Content/P4SAG/install.linux.packages.install.html
- wget -qO - https://package.perforce.com/perforce.pubkey | sudo apt-key add -
- sudo apt-get update
- echo -e "machine github.ibm.com\n login $GITHUB_ACCESS_TOKEN" > ~/.netrc

Expand Down
45 changes: 20 additions & 25 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,27 +29,27 @@
<!-- >>> Replace this with the name of your SDK's github repository -->
<git-repository-name>ibm-iae-java-sdk</git-repository-name>

<testng-version>7.7.1</testng-version>
<okhttp3-version>4.10.0</okhttp3-version>
<surefire-version>3.0.0-M7</surefire-version>
<jacoco-plugin-version>0.8.8</jacoco-plugin-version>
<maven-deploy-plugin-version>3.0.0</maven-deploy-plugin-version>
<testng-version>7.8.0</testng-version>
<okhttp3-version>4.11.0</okhttp3-version>
<surefire-version>3.1.2</surefire-version>
<jacoco-plugin-version>0.8.10</jacoco-plugin-version>
<maven-deploy-plugin-version>3.1.1</maven-deploy-plugin-version>
<nexus-staging-plugin-version>1.6.13</nexus-staging-plugin-version>
<maven-gpg-plugin-version>3.0.1</maven-gpg-plugin-version>
<maven-source-plugin-version>3.2.1</maven-source-plugin-version>
<maven-shade-plugin-version>3.3.0</maven-shade-plugin-version>
<maven-jar-plugin-version>3.2.2</maven-jar-plugin-version>
<maven-javadoc-plugin-version>3.4.1</maven-javadoc-plugin-version>
<maven-compiler-plugin-version>3.10.1</maven-compiler-plugin-version>
<maven-site-plugin-version>3.12.1</maven-site-plugin-version>
<maven-checkstyle-plugin-version>3.2.0</maven-checkstyle-plugin-version>
<checkstyle-version>8.41</checkstyle-version>
<maven-reports-plugin-version>3.4.1</maven-reports-plugin-version>
<maven-failsafe-plugin-version>3.0.0-M7</maven-failsafe-plugin-version>
<maven-buildnumber-plugin-version>3.0.0</maven-buildnumber-plugin-version>
<slf4j-version>2.0.6</slf4j-version>

<maven-enforcer-version>3.1.0</maven-enforcer-version>
<maven-gpg-plugin-version>3.1.0</maven-gpg-plugin-version>
<maven-source-plugin-version>3.3.0</maven-source-plugin-version>
<maven-shade-plugin-version>3.5.1</maven-shade-plugin-version>
<maven-jar-plugin-version>3.3.0</maven-jar-plugin-version>
<maven-javadoc-plugin-version>3.6.0</maven-javadoc-plugin-version>
<maven-compiler-plugin-version>3.11.0</maven-compiler-plugin-version>
<maven-site-plugin-version>4.0.0-M9</maven-site-plugin-version>
<maven-checkstyle-plugin-version>3.3.0</maven-checkstyle-plugin-version>
<checkstyle-version>10.12.3</checkstyle-version>
<maven-reports-plugin-version>3.4.5</maven-reports-plugin-version>
<maven-failsafe-plugin-version>3.1.2</maven-failsafe-plugin-version>
<maven-buildnumber-plugin-version>3.2.0</maven-buildnumber-plugin-version>
<slf4j-version>2.0.9</slf4j-version>

<maven-enforcer-version>3.4.1</maven-enforcer-version>
<min-jdk-version>11</min-jdk-version>
<min-maven-version>3.5.0</min-maven-version>

Expand Down Expand Up @@ -307,11 +307,6 @@
</goals>
</execution>
</executions>
<configuration>
<systemPropertyVariables>
<jacoco-agent.destfile>${project.build.directory}</jacoco-agent.destfile>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down