Skip to content

Commit

Permalink
Merge pull request quarkusio#44874 from loicmathieu/fix/mongodb-split…
Browse files Browse the repository at this point in the history
…-packages

Avoid split packages in MongoDB with Panache deployment
  • Loading branch information
geoand authored Dec 2, 2024
2 parents ae27925 + a919157 commit 85201cd
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 85201cd

Please sign in to comment.