Skip to content

Commit

Permalink
Upgrade to smallrye-common-annotation 1.12.0 with correct module info
Browse files Browse the repository at this point in the history
  • Loading branch information
jponge committed May 19, 2022
1 parent 94c4809 commit aa97228
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ private static class AlwaysTrueBooleanSupplier implements BooleanSupplier {
private static final AlwaysTrueBooleanSupplier INSTANCE = new AlwaysTrueBooleanSupplier();

@Override
public boolean getAsBoolean() {
public boolean getAsBoolean() {
return true;
}
}
Expand Down
2 changes: 1 addition & 1 deletion implementation/src/main/module/module-info.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
open module io.smallrye.mutiny {

requires transitive org.reactivestreams;
requires transitive smallrye.common.annotation;
requires transitive io.smallrye.common.annotation;

exports io.smallrye.mutiny;
exports io.smallrye.mutiny.groups;
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<microprofile-context-propagation.version>1.3</microprofile-context-propagation.version>
<smallrye-context-propagation.version>1.2.2</smallrye-context-propagation.version>
<smallrye-config.version>1.10.0</smallrye-config.version>
<smallrye-common-annotation.version>1.11.0</smallrye-common-annotation.version>
<smallrye-common-annotation.version>1.12.0</smallrye-common-annotation.version>

<junit.version>5.8.2</junit.version>
<assertj-core.version>3.22.0</assertj-core.version>
Expand Down

0 comments on commit aa97228

Please sign in to comment.