File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed
extensions/flyway/runtime/src/main/java/io/quarkus/flyway/runtime/graal Expand file tree Collapse file tree 2 files changed +4
-8
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.13.1 </flyway .version>
163
+ <flyway .version>11.13.2 </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 2
2
3
3
import org .flywaydb .core .api .Location ;
4
4
import org .flywaydb .core .api .configuration .Configuration ;
5
- import org .flywaydb .core .internal .scanner .LocationScannerCache ;
6
- import org .flywaydb .core .internal .scanner .ResourceNameCache ;
7
5
import org .flywaydb .core .internal .scanner .Scanner ;
8
6
9
7
import com .oracle .svm .core .annotate .Substitute ;
16
14
public final class ScannerSubstitutions <I > {
17
15
18
16
@ Substitute
19
- public ScannerSubstitutions (Class <I > implementedInterface ,
20
- ResourceNameCache resourceNameCache ,
21
- LocationScannerCache locationScannerCache ,
22
- Configuration configuration ,
23
- Location [] locations ) {
17
+ public ScannerSubstitutions (final Class <? extends I > implementedInterface ,
18
+ final Configuration configuration ,
19
+ final Location [] locations ) {
24
20
throw new IllegalStateException ("'org.flywaydb.core.internal.scanner.Scanner' is never used in Quarkus" );
25
21
}
26
22
}
You can’t perform that action at this time.
0 commit comments