Skip to content

Commit

Permalink
SCRUM-4615: upgrade quarkus to 3.16.4
Browse files Browse the repository at this point in the history
  • Loading branch information
abecerra committed Nov 25, 2024
1 parent b5151a5 commit b46bbfa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<quarkus.platform.version>3.13.2</quarkus.platform.version>
<quarkus.platform.version>3.16.4</quarkus.platform.version>
<surefire-plugin.version>3.1.2</surefire-plugin.version>
</properties>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* that mint some identifiers
*/
@QuarkusIntegrationTest
@WithTestResource(value = PostgresResource.class, restrictToAnnotatedClass = false)
@WithTestResource(value = PostgresResource.class)
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
@Order(3)
public class AdminResourceITCase {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* for minting identifiers
*/
@QuarkusIntegrationTest
@WithTestResource(value = PostgresResource.class, restrictToAnnotatedClass = false)
@WithTestResource(value = PostgresResource.class)
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
@Order(2)
class IdentifierResourceITCase {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import static org.hamcrest.Matchers.is;

@QuarkusIntegrationTest
@WithTestResource(value = PostgresResource.class, restrictToAnnotatedClass = false)
@WithTestResource(value = PostgresResource.class)
@Order(1)
class SubdomainResourceITCase {

Expand Down

0 comments on commit b46bbfa

Please sign in to comment.