Skip to content
Snippets Groups Projects
Commit 30e714af authored by Harsheet Shah's avatar Harsheet Shah
Browse files

PBI-6584: Upgrade spring boot dependencies. Spring boot dependencies are...

PBI-6584: Upgrade spring boot dependencies. Spring boot dependencies are inherited from os-common-core.
parent da31574f
No related branches found
No related tags found
2 merge requests!346Merge branch 'aws-integration' into 'master',!300PBI-6584: Upgrade spring boot dependencies. Spring boot dependencies are...
Pipeline #102262 canceled
package org.opengroup.osdu.indexer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.actuate.autoconfigure.elasticsearch.ElasticSearchRestHealthContributorAutoConfiguration;
import org.springframework.boot.actuate.autoconfigure.security.servlet.ManagementWebSecurityAutoConfiguration;
import org.springframework.boot.actuate.elasticsearch.ElasticsearchRestHealthIndicator;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
......@@ -10,7 +10,7 @@ import org.springframework.context.annotation.Configuration;
@Configuration
@ComponentScan({"org.opengroup.osdu.core.common","org.opengroup.osdu.indexer", "org.opengroup.osdu.is"})
@SpringBootApplication(exclude = {ElasticsearchRestHealthIndicator.class, SecurityAutoConfiguration.class, ManagementWebSecurityAutoConfiguration.class})
@SpringBootApplication(exclude = {ElasticSearchRestHealthContributorAutoConfiguration.class, SecurityAutoConfiguration.class, ManagementWebSecurityAutoConfiguration.class})
public class IndexerApplication {
public static void main( String[] args )
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment