diff --git a/quarkus/extensions/pom.xml b/quarkus/extensions/pom.xml
index 16516b173b..a1417fcda4 100644
--- a/quarkus/extensions/pom.xml
+++ b/quarkus/extensions/pom.xml
@@ -32,6 +32,10 @@
+
+ org.keycloak
+ keycloak-server-spi-private
+
org.keycloak
keycloak-services
diff --git a/quarkus/extensions/src/main/java/org/keycloak/provider/quarkus/JsonConfigProviderFactory.java b/quarkus/extensions/src/main/java/org/keycloak/provider/quarkus/JsonConfigProviderFactory.java
new file mode 100644
index 0000000000..1b59e8dc9c
--- /dev/null
+++ b/quarkus/extensions/src/main/java/org/keycloak/provider/quarkus/JsonConfigProviderFactory.java
@@ -0,0 +1,22 @@
+/*
+ * Copyright 2019 Red Hat, Inc. and/or its affiliates
+ * and other contributors as indicated by the @author tags.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.keycloak.provider.quarkus;
+
+public class JsonConfigProviderFactory extends org.keycloak.services.util.JsonConfigProviderFactory {
+
+}
diff --git a/quarkus/extensions/src/main/resources/META-INF/services/org.keycloak.config.ConfigProviderFactory b/quarkus/extensions/src/main/resources/META-INF/services/org.keycloak.config.ConfigProviderFactory
new file mode 100644
index 0000000000..9923d616ef
--- /dev/null
+++ b/quarkus/extensions/src/main/resources/META-INF/services/org.keycloak.config.ConfigProviderFactory
@@ -0,0 +1,18 @@
+#
+# Copyright 2019 Red Hat, Inc. and/or its affiliates
+# and other contributors as indicated by the @author tags.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+org.keycloak.provider.quarkus.JsonConfigProviderFactory