Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
albogdano committed Oct 28, 2024
1 parent b3f6db0 commit ac971bb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
import java.lang.reflect.Modifier;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
Expand Down Expand Up @@ -564,7 +563,7 @@ private Boolean isIgnoredDomain(String value) {
try {
var href = new URI(value).toURL();
return Arrays.binarySearch(Para.getConfig().markdownAllowFollowDomains(), href.getHost()) >= 0;
} catch (MalformedURLException | URISyntaxException e) {
} catch (Exception e) {
return false;
}
}
Expand Down Expand Up @@ -815,7 +814,7 @@ private static URL toURL(String url) {
URL u;
try {
u = new URI(url).toURL();
} catch (MalformedURLException | URISyntaxException e) {
} catch (Exception e) {
// the URL is not in a valid form
u = null;
}
Expand Down
26 changes: 13 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@
<skipTests>false</skipTests>
<skipITs>${skipTests}</skipITs>
<skipUTs>${skipTests}</skipUTs>
<deployPluginVer>3.1.1</deployPluginVer>
<slf4jVer>2.0.13</slf4jVer>
<deployPluginVer>3.1.3</deployPluginVer>
<slf4jVer>2.0.16</slf4jVer>
<logbackVer>1.5.3</logbackVer>
<awsJdkVer>[2.21.23,)</awsJdkVer>
<jerseyVer>3.1.6</jerseyVer>
Expand All @@ -88,7 +88,7 @@
<commonsCodecVer>1.16.1</commonsCodecVer>
<lucenePluginVer>1.48.1</lucenePluginVer>
<sqlPluginVer>1.48.1</sqlPluginVer>
<junitVer>5.10.2</junitVer>
<junitVer>5.11.2</junitVer>
<junitPlatformVer>1.10.2</junitPlatformVer>
</properties>

Expand All @@ -97,7 +97,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.11.0</version>
<version>5.14.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -119,7 +119,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.2.5</version>
<version>3.5.1</version>
<executions>
<execution>
<goals>
Expand All @@ -139,7 +139,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
<version>3.5.1</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
Expand Down Expand Up @@ -179,7 +179,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.1</version>
<version>3.1.1</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<mavenExecutorId>forked-path</mavenExecutorId>
Expand All @@ -192,7 +192,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<version>1.7.0</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
Expand All @@ -210,7 +210,7 @@
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.11.0.3922</version>
<version>4.0.0.4121</version>
</plugin>
</plugins>
</build>
Expand Down Expand Up @@ -243,7 +243,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<version>3.10.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand All @@ -266,7 +266,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.2</version>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down Expand Up @@ -294,7 +294,7 @@
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.4.2</version>
<version>1.17.0</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -333,7 +333,7 @@
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.4.2</version>
<version>1.17.0</version>
<reportSets>
<reportSet>
<reports>
Expand Down

0 comments on commit ac971bb

Please sign in to comment.