Skip to content

Commit

Permalink
Move config to @ConfigMapping
Browse files Browse the repository at this point in the history
  • Loading branch information
radcortez committed Aug 26, 2024
1 parent ce18d72 commit c80f79d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,16 @@
import io.smallrye.config.SmallRyeConfigBuilderCustomizer;

/**
* Fix things.
* Config customizer to ignore validation of unmapped properties between build-time and runtime.
*
* @author Michael J. Simons
* @see Neo4jOgmBuiltTimeProperties
* @see Neo4jOgmProperties
*/
public class CustomConfigBuilder implements SmallRyeConfigBuilderCustomizer {

@Override
public void configBuilder(final SmallRyeConfigBuilder builder) {

builder.withMappingIgnore("org.neo4j.ogm.**");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*
* @author Michael J. Simons
*/
@ConfigMapping(prefix = "quarkus.neo4j.ogm")
@ConfigMapping(prefix = "org.neo4j.ogm")
@ConfigRoot(phase = ConfigPhase.RUN_TIME)
public interface Neo4jOgmProperties {

Expand Down

0 comments on commit c80f79d

Please sign in to comment.