We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 596d9ae + ac93aff commit 5aa5ca2Copy full SHA for 5aa5ca2
extensions/liquibase/runtime/src/main/java/io/quarkus/liquibase/runtime/graal/SubstituteEnvironmentValueProvider.java
@@ -0,0 +1,20 @@
1
+package io.quarkus.liquibase.runtime.graal;
2
+
3
+import java.util.Map;
4
5
+import com.oracle.svm.core.annotate.Delete;
6
+import com.oracle.svm.core.annotate.Substitute;
7
+import com.oracle.svm.core.annotate.TargetClass;
8
9
+@TargetClass(className = "liquibase.configuration.core.EnvironmentValueProvider")
10
+final class SubstituteEnvironmentValueProvider {
11
12
+ @Delete
13
+ private Map<String, String> environment;
14
15
+ @Substitute
16
+ protected Map<?, ?> getMap() {
17
+ return System.getenv();
18
+ }
19
20
+}
0 commit comments