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

Sync dependencies with odlparent 12.0.8 #1588

Merged
merged 4 commits into from
Oct 23, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lighty-core/dependency-versions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
<version>3.13.0</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
Expand Down
2 changes: 1 addition & 1 deletion lighty-core/lighty-minimal-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.2.1</version>
<version>3.4.1</version>
<executions>
<execution>
<id>enforce-maven</id>
Expand Down
4 changes: 2 additions & 2 deletions lighty-core/lighty-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<!-- This should match the dependency management on com.puppycrawl.tools:checkstyle above -->
<version>10.11.0</version>
<version>10.12.3</version>
</dependency>
<dependency>
<groupId>com.github.sevntu-checkstyle</groupId>
Expand All @@ -210,7 +210,7 @@
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.7.3.4</version>
<version>4.7.3.6</version>
<dependencies>
<dependency>
<groupId>com.github.spotbugs</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ protected boolean stopProcedure() {
return true;
}

private static class AAAShiroProviderHandler {
private static final class AAAShiroProviderHandler {

AAALightyShiroProvider aaaLightyShiroProvider;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ private void assertCapabilitiesVersion(final String expectedGnmiVersion, final G
});
}

private static class TestGrpcServiceImpl extends gNMIGrpc.gNMIImplBase {
private static final class TestGrpcServiceImpl extends gNMIGrpc.gNMIImplBase {
private String gnmiVersion = null;

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public void onCompleted() {
}
}

private static class TestGnoiServiceImpl extends FileGrpc.FileImplBase {
private static final class TestGnoiServiceImpl extends FileGrpc.FileImplBase {

@Override
public void get(final gnoi.file.FileOuterClass.GetRequest request,
Expand Down