Skip to content

Commit

Permalink
ArC: fix binary compatibility problem with ManagedContext
Browse files Browse the repository at this point in the history
- follow-up to quarkusio#34310
  • Loading branch information
mkouba committed Aug 29, 2023
1 parent 1347a17 commit 7070a02
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions independent-projects/arc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
<version.jandex>3.1.2</version.jandex>
<version.jboss-logging>3.5.3.Final</version.jboss-logging>
<version.mutiny>2.2.0</version.mutiny>
<version.bridger>1.6.Final</version.bridger>
<!-- test versions -->
<version.assertj>3.24.2</version.assertj>
<version.junit5>5.9.3</version.junit5>
Expand Down
19 changes: 19 additions & 0 deletions independent-projects/arc/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,24 @@
</dependency>

</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.jboss.bridger</groupId>
<artifactId>bridger</artifactId>
<version>${version.bridger}</version>
<executions>
<execution>
<id>weave</id>
<phase>process-classes</phase>
<goals>
<goal>transform</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ default ContextState activate() {
return activate(null);
}

// Maintain binary compatibility with Quarkus 3.2
default void activate$$bridge() {
activate(null);
}

/**
* Activate the context.
* <p>
Expand Down

0 comments on commit 7070a02

Please sign in to comment.