File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
extensions/flyway/runtime/src/main/java/io/quarkus/flyway/runtime/graal Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 160
160
<maven-invoker .version>3.2.0</maven-invoker .version>
161
161
<awaitility .version>4.3.0</awaitility .version>
162
162
<jboss-logmanager .version>3.1.2.Final</jboss-logmanager .version>
163
- <flyway .version>11.12 .0</flyway .version>
163
+ <flyway .version>11.13 .0</flyway .version>
164
164
<yasson .version>3.0.4</yasson .version>
165
165
<!-- liquibase-mongodb is not released everytime with liquibase anymore, but the two versions need to be compatible -->
166
166
<liquibase .version>4.33.0</liquibase .version>
Original file line number Diff line number Diff line change 1
1
package io .quarkus .flyway .runtime .graal ;
2
2
3
+ import org .flywaydb .core .api .Location ;
3
4
import org .flywaydb .core .api .configuration .Configuration ;
4
5
import org .flywaydb .core .internal .scanner .LocationScannerCache ;
5
6
import org .flywaydb .core .internal .scanner .ResourceNameCache ;
15
16
public final class ScannerSubstitutions <I > {
16
17
17
18
@ Substitute
18
- public ScannerSubstitutions (
19
- Class <I > implementedInterface ,
20
- boolean stream ,
19
+ public ScannerSubstitutions (Class <I > implementedInterface ,
21
20
ResourceNameCache resourceNameCache ,
22
21
LocationScannerCache locationScannerCache ,
23
- Configuration configuration ) {
22
+ Configuration configuration ,
23
+ Location [] locations ) {
24
24
throw new IllegalStateException ("'org.flywaydb.core.internal.scanner.Scanner' is never used in Quarkus" );
25
25
}
26
26
}
You can’t perform that action at this time.
0 commit comments