Skip to content

Commit

Permalink
Update commons-lang3 to 3.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
manofthepeace committed Aug 29, 2024
1 parent 844a541 commit 8b0d72f
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 7 deletions.
9 changes: 8 additions & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@
<name>Quarkus - BOM</name>
<packaging>pom</packaging>

<repositories>
<repository>
<id>snapshots</id>
<url>https://repository.apache.org/content/repositories/snapshots</url>
</repository>
</repositories>

<properties>
<angus-activation.version>2.0.2</angus-activation.version>
<bouncycastle.version>1.78.1</bouncycastle.version>
Expand Down Expand Up @@ -95,7 +102,7 @@
<gizmo.version>1.8.0</gizmo.version>
<jackson-bom.version>2.17.2</jackson-bom.version>
<commons-logging-jboss-logging.version>1.0.0.Final</commons-logging-jboss-logging.version>
<commons-lang3.version>3.14.0</commons-lang3.version>
<commons-lang3.version>3.17.0-SNAPSHOT</commons-lang3.version>
<commons-codec.version>1.17.1</commons-codec.version>
<classmate.version>1.7.0</classmate.version>
<!-- See root POM for hibernate-orm.version, hibernate-reactive.version, hibernate-validator.version,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ protected NativeImageBuildContainerRunner(NativeConfig nativeConfig) {

this.baseContainerRuntimeArgs = new String[] { "--env", "LANG=C", "--rm" };

containerName = "build-native-" + RandomStringUtils.random(5, true, false);
containerName = "build-native-" + RandomStringUtils.insecure().next(5, true, false);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ private boolean runUpxInContainer(NativeImageBuildItem nativeImage, NativeConfig
commandLine.add("--rm");
commandLine.add("--entrypoint=upx");

String containerName = "upx-" + RandomStringUtils.random(5, true, false);
String containerName = "upx-" + RandomStringUtils.insecure().next(5, true, false);
commandLine.add("--name");
commandLine.add(containerName);

Expand Down
11 changes: 10 additions & 1 deletion independent-projects/bootstrap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,15 @@
<developerConnection>scm:git:git@github.com:quarkusio/quarkus.git</developerConnection>
<tag>HEAD</tag>
</scm>

<repositories>
<repository>
<id>snapshots</id>
<url>https://repository.apache.org/content/repositories/snapshots</url>
</repository>
</repositories>


<properties>
<angus-activation.version>1.0.0</angus-activation.version>
<expressly.version>5.0.0</expressly.version>
Expand Down Expand Up @@ -56,7 +65,7 @@
<jakarta.inject-api.version>2.0.1</jakarta.inject-api.version>
<commons-codec.version>1.17.1</commons-codec.version>
<commons-io.version>2.16.1</commons-io.version>
<commons-lang.version>3.16.0</commons-lang.version>
<commons-lang.version>3.17.0-SNAPSHOT</commons-lang.version>
<guava.version>33.3.0-jre</guava.version>
<guava.failureaccess.version>1.0.1</guava.failureaccess.version><!-- keep in sync with guava.version -->
<j2objc.annotations.version>2.8</j2objc.annotations.version><!-- keep in sync with guava.version -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static class RabbitMQResource implements QuarkusTestResourceLifecycleMana
@Override
public Map<String, String> start() {
String username = "tester";
String password = RandomStringUtils.random(10);
String password = RandomStringUtils.insecure().next(10);

rabbit = new RabbitMQContainer(DockerImageName.parse("rabbitmq:3.12-management"))
.withNetwork(Network.SHARED)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class DefaultDockerContainerLauncher implements DockerContainerArtifactLa
private Map<String, String> labels;
private final Map<String, String> systemProps = new HashMap<>();
private boolean isSsl;
private final String containerName = "quarkus-integration-test-" + RandomStringUtils.random(5, true, false);
private final String containerName = "quarkus-integration-test-" + RandomStringUtils.insecure().next(5, true, false);
private String containerRuntimeBinaryName;
private final ExecutorService executorService = Executors.newSingleThreadExecutor();
private Optional<String> entryPoint;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ public void accept(String s, String s2) {
if (networkIdOpt.isPresent()) {
networkId = networkIdOpt.get();
} else {
networkId = "quarkus-integration-test-" + RandomStringUtils.random(5, true, false);
networkId = "quarkus-integration-test-" + RandomStringUtils.insecure().next(5, true, false);
manageNetwork = true;
}
}
Expand Down

0 comments on commit 8b0d72f

Please sign in to comment.