From 95615f505da52358c0c611b8860753cab191d4e4 Mon Sep 17 00:00:00 2001 From: Artem Dobrynin <Artem_Dobrynin@epam.com> Date: Tue, 10 Nov 2020 20:14:42 +0400 Subject: [PATCH] GONRG-744: Move search.Config out of os-core-common. Search, Indexer, Indexer-Queue [publish] https://jiraeu.epam.com/browse/GONRG-744 * Changed @Value usage to @ConfigurationProperties * Added Indexer Config * Updated os-core-common to the version without search config --- .../osdu/indexer/config/IndexerConfigurationProperties.java | 1 + 1 file changed, 1 insertion(+) diff --git a/indexer-core/src/main/java/org/opengroup/osdu/indexer/config/IndexerConfigurationProperties.java b/indexer-core/src/main/java/org/opengroup/osdu/indexer/config/IndexerConfigurationProperties.java index e9c31a8a0..a139637e7 100644 --- a/indexer-core/src/main/java/org/opengroup/osdu/indexer/config/IndexerConfigurationProperties.java +++ b/indexer-core/src/main/java/org/opengroup/osdu/indexer/config/IndexerConfigurationProperties.java @@ -9,6 +9,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.context.annotation.Configuration; @Configuration +@ConfigurationProperties @Getter @Setter public class IndexerConfigurationProperties { -- GitLab