Skip to content

Commit

Permalink
Avoid split packages in MongoDB with Panache deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Dec 2, 2024
1 parent 21e2179 commit a919157
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.quarkus.mongodb.panache.deployment;
package io.quarkus.mongodb.panache.common.deployment;

import static io.quarkus.deployment.util.JandexUtil.resolveTypeParameters;
import static org.jboss.jandex.DotName.createSimple;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.quarkus.mongodb.panache.deployment;
package io.quarkus.mongodb.panache.common.deployment;

import org.jboss.jandex.ClassInfo;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.quarkus.mongodb.panache.deployment;
package io.quarkus.mongodb.panache.common.deployment;

import java.util.HashSet;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.quarkus.mongodb.panache.deployment;
package io.quarkus.mongodb.panache.common.deployment;

import io.quarkus.builder.item.MultiBuildItem;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
import io.quarkus.deployment.builditem.CombinedIndexBuildItem;
import io.quarkus.deployment.builditem.FeatureBuildItem;
import io.quarkus.deployment.builditem.nativeimage.ReflectiveClassBuildItem;
import io.quarkus.mongodb.panache.deployment.BasePanacheMongoResourceProcessor;
import io.quarkus.mongodb.panache.deployment.PropertyMappingClassBuildStep;
import io.quarkus.mongodb.panache.common.deployment.BasePanacheMongoResourceProcessor;
import io.quarkus.mongodb.panache.common.deployment.PropertyMappingClassBuildStep;
import io.quarkus.panache.common.deployment.MetamodelInfo;
import io.quarkus.panache.common.deployment.PanacheCompanionEnhancer;
import io.quarkus.panache.common.deployment.PanacheEntityEnhancer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import io.quarkus.deployment.annotations.BuildStep;
import io.quarkus.deployment.builditem.CombinedIndexBuildItem;
import io.quarkus.deployment.builditem.FeatureBuildItem;
import io.quarkus.mongodb.panache.common.deployment.BasePanacheMongoResourceProcessor;
import io.quarkus.panache.common.deployment.MetamodelInfo;
import io.quarkus.panache.common.deployment.PanacheEntityEnhancer;
import io.quarkus.panache.common.deployment.PanacheMethodCustomizer;
Expand Down

0 comments on commit a919157

Please sign in to comment.