Skip to content

Commit

Permalink
Merge pull request #31457 from quarkusio/dependabot/maven/smallrye-co…
Browse files Browse the repository at this point in the history
…ntext-propagation.version-2.1.0

Bump smallrye-context-propagation.version from 2.0.0 to 2.1.0
  • Loading branch information
gsmet committed Mar 29, 2023
2 parents 1dce0d1 + b7717a4 commit 2d2e1cf
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<smallrye-opentracing.version>3.0.3</smallrye-opentracing.version>
<smallrye-fault-tolerance.version>6.2.1</smallrye-fault-tolerance.version>
<smallrye-jwt.version>4.2.0</smallrye-jwt.version>
<smallrye-context-propagation.version>2.0.0</smallrye-context-propagation.version>
<smallrye-context-propagation.version>2.1.0</smallrye-context-propagation.version>
<smallrye-reactive-streams-operators.version>1.0.13</smallrye-reactive-streams-operators.version>
<smallrye-reactive-types-converter.version>3.0.0</smallrye-reactive-types-converter.version>
<smallrye-mutiny-vertx-binding.version>3.2.0</smallrye-mutiny-vertx-binding.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-websockets</artifactId>
</dependency>
<dependency>
<groupId>io.smallrye.common</groupId>
<artifactId>smallrye-common-cpu</artifactId>
<version>1.13.2</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>jquery-ui</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ private String assertMultiRelease() {
try {
//this class is only present in multi release jars
//for fast-jar we need to make sure it is loaded correctly
Class<?> clazz = this.getClass().getClassLoader().loadClass("io.smallrye.context.Jdk9CompletableFutureWrapper");
Class<?> clazz = this.getClass().getClassLoader().loadClass("io.smallrye.common.cpu.ProcessorInfo");
if (clazz.getClassLoader() == getClass().getClassLoader()) {
return SUCCESS;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-smallrye-context-propagation</artifactId>
</dependency>
<dependency>
<groupId>io.smallrye.common</groupId>
<artifactId>smallrye-common-cpu</artifactId>
<version>1.13.2</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ private String assertMultiRelease() {
try {
//this class is only present in multi release jars
//for fast-jar we need to make sure it is loaded correctly
Class<?> clazz = this.getClass().getClassLoader().loadClass("io.smallrye.context.Jdk9CompletableFutureWrapper");
Class<?> clazz = this.getClass().getClassLoader().loadClass("io.smallrye.common.cpu.ProcessorInfo");
if (clazz.getClassLoader() == getClass().getClassLoader()) {
return SUCCESS;
}
Expand Down

0 comments on commit 2d2e1cf

Please sign in to comment.