Skip to content
Snippets Groups Projects
Commit e152b516 authored by Marc Burnie [AWS]'s avatar Marc Burnie [AWS]
Browse files

mongo fix

parent 423d14b2
No related branches found
No related tags found
1 merge request!132partition mongo update
......@@ -57,7 +57,7 @@
<dependency>
<groupId>org.opengroup.osdu.core.aws</groupId>
<artifactId>os-core-lib-aws</artifactId>
<version>0.13.0-SNAPSHOT</version>
<version>0.13.0-rc2</version>
</dependency>
<dependency>
<groupId>org.opengroup.osdu</groupId>
......@@ -169,6 +169,10 @@
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
</dependencies>
<build>
......
......@@ -14,11 +14,15 @@
package org.opengroup.osdu.partition.provider.aws;
import org.opengroup.osdu.core.aws.mongodb.config.MongoDBAutoconfigExclude;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.FilterType;
@ComponentScan({"org.opengroup.osdu"})
@ComponentScan(
basePackages = {"org.opengroup.osdu"},
excludeFilters = {@ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE, value = MongoDBAutoconfigExclude.class)})
@SpringBootApplication
public class PartitionApplication {
......
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