Skip to content

Commit

Permalink
upgrade all the dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pschichtel committed May 10, 2024
1 parent 7c588bd commit 814eae1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.1/maven-wrapper-3.3.1.jar
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,6 @@ void testSendingToDifferentInterfaceResultsInBadFd() {
J1939Address bindAddr = new ImmutableJ1939Address(CAN_INTERFACE);
J1939Address destAddr = new ImmutableJ1939Address(LinuxNetworkDevice.fromDeviceIndex(CAN_INTERFACE.getIndex() + 1));


LinuxNativeOperationException e = assertThrows(LinuxNativeOperationException.class, () -> {
try (final J1939CanChannel channel = CanChannels.newJ1939Channel()) {
channel.bind(bindAddr);
Expand Down
33 changes: 15 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,12 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.outputTimestamp>1703813175</project.build.outputTimestamp>

<slf4j.version>2.0.9</slf4j.version>
<logback.version>1.3.14</logback.version>

<junit.minor>9.3</junit.minor>
<junit.minor>10.2</junit.minor>
<junit.version>5.${junit.minor}</junit.version>
<junit.runner.version>1.${junit.minor}</junit.runner.version>

<javacan.architecture>local</javacan.architecture>
<dockcross.default-tag>20240304-9e57d2b</dockcross.default-tag>
<dockcross.default-tag>20240418-88c04a4</dockcross.default-tag>
<dockcross.image>docker.io/dockcross/linux-x64:${dockcross.default-tag}</dockcross.image>
<dockcross.link-mode>dynamic</dockcross.link-mode>

Expand All @@ -88,20 +85,20 @@
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.annotation</artifactId>
<version>2.2.800</version>
<version>2.3.0</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<version>2.0.13</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
<version>1.3.14</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -134,7 +131,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.13.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand All @@ -156,22 +153,22 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.1</version>
<version>3.2.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<version>3.4.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>4.0.0-M12</version>
<version>4.0.0-M14</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -196,7 +193,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.2</version>
<version>3.6.3</version>
<configuration>
<javadocExecutable>${java.home}/../bin/javadoc</javadocExecutable>
<notimestamp>true</notimestamp>
Expand All @@ -205,7 +202,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
<version>3.1.2</version>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
Expand Down Expand Up @@ -245,12 +242,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.3</version>
<version>3.2.5</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit-platform</artifactId>
<version>3.2.3</version>
<version>3.2.5</version>
</dependency>
</dependencies>
</plugin>
Expand Down Expand Up @@ -330,7 +327,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down

0 comments on commit 814eae1

Please sign in to comment.