Skip to content

Commit 21f9f80

Browse files
Upgraded Maven from 3.9.6 to 3.9.8
- Upgraded Maven Checkstyle Plugin from 3.3.0 to 3.4.0 - Upgraded Maven Clean Plugin from 3.3.2 to 3.4.0 - Upgraded Maven Compiler Plugin from 3.11.0 to 3.13.0 - Upgraded Maven Deploy Plugin from 3.1.1 to 3.1.2 - Upgraded Maven Install Plugin from 3.1.1 to 3.1.2 - Upgraded Maven Jar Plugin from 3.3.0 to 3.4.2 - Upgraded Maven Javadoc Plugin from 3.6.2 to 3.7.0 - Upgraded Maven PMD Plugin from 3.21.2 to 3.23.0 - Upgraded Maven Surefire Plugin from 3.2.5 to 3.3.1 - Upgraded Checkstyle from 10.12.7 to 10.17.0 - Upgraded JaCoCo from 0.8.11 to 0.8.12 - Upgraded JReleaser from 1.9.0 to 1.13.1 - Upgraded JUnit from 5.10.1 to 5.12.0 - Upgraded Mockito from 5.9.0 to 5.12.0 - Upgraded PMD from 6.55.0 to 7.4.0 - Upgraded SpotBugs Plugin from 4.7.3.5 to 4.8.6.2
1 parent a4fdce7 commit 21f9f80

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

.mvn/wrapper/maven-wrapper.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
18-
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
17+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip
18+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar

pom.xml

+16-16
Original file line numberDiff line numberDiff line change
@@ -45,24 +45,24 @@
4545
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4646
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
4747
<maven.compiler.release>8</maven.compiler.release>
48-
<maven.checkstyle.plugin.version>3.3.0</maven.checkstyle.plugin.version>
49-
<maven.clean.plugin.version>3.3.2</maven.clean.plugin.version>
50-
<maven.compiler.plugin.version>3.11.0</maven.compiler.plugin.version>
51-
<maven.deploy.plugin.version>3.1.1</maven.deploy.plugin.version>
52-
<maven.install.plugin.version>3.1.1</maven.install.plugin.version>
53-
<maven.jar.plugin.version>3.3.0</maven.jar.plugin.version>
54-
<maven.javadoc.plugin.version>3.6.2</maven.javadoc.plugin.version>
55-
<maven.pmd.plugin.version>3.21.2</maven.pmd.plugin.version>
48+
<maven.checkstyle.plugin.version>3.4.0</maven.checkstyle.plugin.version>
49+
<maven.clean.plugin.version>3.4.0</maven.clean.plugin.version>
50+
<maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version>
51+
<maven.deploy.plugin.version>3.1.2</maven.deploy.plugin.version>
52+
<maven.install.plugin.version>3.1.2</maven.install.plugin.version>
53+
<maven.jar.plugin.version>3.4.2</maven.jar.plugin.version>
54+
<maven.javadoc.plugin.version>3.7.0</maven.javadoc.plugin.version>
55+
<maven.pmd.plugin.version>3.23.0</maven.pmd.plugin.version>
5656
<maven.resources.plugin.version>3.3.1</maven.resources.plugin.version>
5757
<maven.source.plugin.version>3.3.0</maven.source.plugin.version>
58-
<maven.surefire.plugin.version>3.2.5</maven.surefire.plugin.version>
59-
<checkstyle.version>10.12.7</checkstyle.version>
60-
<jacoco.version>0.8.11</jacoco.version>
61-
<jreleaser.version>1.9.0</jreleaser.version>
62-
<junit.jupiter.version>5.10.1</junit.jupiter.version>
63-
<mockito.version>5.9.0</mockito.version>
64-
<pmd.version>6.55.0</pmd.version>
65-
<spotbugs.plugin.version>4.7.3.5</spotbugs.plugin.version>
58+
<maven.surefire.plugin.version>3.3.1</maven.surefire.plugin.version>
59+
<checkstyle.version>10.17.0</checkstyle.version>
60+
<jacoco.version>0.8.12</jacoco.version>
61+
<jreleaser.version>1.13.1</jreleaser.version>
62+
<junit.jupiter.version>5.10.3</junit.jupiter.version>
63+
<mockito.version>5.12.0</mockito.version>
64+
<pmd.version>7.4.0</pmd.version>
65+
<spotbugs.plugin.version>4.8.6.2</spotbugs.plugin.version>
6666
<altDeploymentRepository>local::file:./target/staging-deploy</altDeploymentRepository>
6767
<maven.central.url>https://s01.oss.sonatype.org</maven.central.url>
6868
</properties>

src/main/java/com/exceptionfactory/socketbroker/BrokeredSocket.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
/**
3333
* Brokered Socket encapsulates Proxy Socket connectivity and provides access to connected Socket properties
3434
*/
35-
public class BrokeredSocket extends Socket {
35+
public final class BrokeredSocket extends Socket {
3636
private static final int PORT_DISCONNECTED = 0;
3737

3838
private static final int TIMEOUT_DISABLED = 0;

0 commit comments

Comments
 (0)