DBZ-1478 Avoiding split package between runtime and deployment modules

This commit is contained in:
Gunnar Morling 2020-01-15 10:44:33 +01:00
parent a86c148834
commit bf539c352a
4 changed files with 5 additions and 4 deletions

View File

@ -3,7 +3,7 @@
* *
* Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/ */
package io.debezium.outbox.quarkus; package io.debezium.outbox.quarkus.deployment;
import io.quarkus.runtime.annotations.ConfigItem; import io.quarkus.runtime.annotations.ConfigItem;
import io.quarkus.runtime.annotations.ConfigPhase; import io.quarkus.runtime.annotations.ConfigPhase;

View File

@ -3,7 +3,7 @@
* *
* Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/ */
package io.debezium.outbox.quarkus; package io.debezium.outbox.quarkus.deployment;
import org.jboss.jandex.Type; import org.jboss.jandex.Type;

View File

@ -3,7 +3,7 @@
* *
* Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/ */
package io.debezium.outbox.quarkus; package io.debezium.outbox.quarkus.deployment;
import static io.debezium.outbox.quarkus.internal.OutboxConstants.OUTBOX_ENTITY_FULLNAME; import static io.debezium.outbox.quarkus.internal.OutboxConstants.OUTBOX_ENTITY_FULLNAME;

View File

@ -3,7 +3,7 @@
* *
* Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/ */
package io.debezium.outbox.quarkus; package io.debezium.outbox.quarkus.deployment;
import static io.debezium.outbox.quarkus.internal.OutboxConstants.OUTBOX_ENTITY_HBMXML; import static io.debezium.outbox.quarkus.internal.OutboxConstants.OUTBOX_ENTITY_HBMXML;
@ -26,6 +26,7 @@
import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.JsonNode;
import io.debezium.outbox.quarkus.ExportedEvent;
import io.debezium.outbox.quarkus.internal.DebeziumOutboxRecorder; import io.debezium.outbox.quarkus.internal.DebeziumOutboxRecorder;
import io.debezium.outbox.quarkus.internal.DebeziumOutboxRuntimeConfig; import io.debezium.outbox.quarkus.internal.DebeziumOutboxRuntimeConfig;
import io.debezium.outbox.quarkus.internal.EventDispatcher; import io.debezium.outbox.quarkus.internal.EventDispatcher;