Skip to content

Commit

Permalink
Upgrade quarkus version (#26)
Browse files Browse the repository at this point in the history
* upgrade quarkus version

* upgrade quarkus version
  • Loading branch information
ismailsimsek committed Oct 13, 2021
1 parent 1c85d87 commit 3fab5c4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ public class ConfigSource extends TestConfigSource {
public static final String S3_BUCKET = "test-bucket";
public static final Path HISTORY_FILE = Testing.Files.createTestingPath("dbhistory.txt").toAbsolutePath();

@Override
public int getOrdinal() {
// Configuration property precedence is based on ordinal values and since we override the
// properties in TestConfigSource, we should give this a higher priority.
return super.getOrdinal() + 1;
}

public ConfigSource() {
config.put("quarkus.profile", "postgresql");
// common sink conf
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<version.debezium>1.7.0.Final</version.debezium>
<version.mysql.driver>8.0.26</version.mysql.driver>
<!-- Quarkus -->
<version.quarkus>2.0.3.Final</version.quarkus>
<version.quarkus>2.2.3.Final</version.quarkus>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit 3fab5c4

Please sign in to comment.