Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Open Subsurface Data Universe Software
Platform
System
Partition
Commits
e152b516
Commit
e152b516
authored
Dec 28, 2021
by
Marc Burnie [AWS]
Browse files
mongo fix
parent
423d14b2
Changes
2
Hide whitespace changes
Inline
Side-by-side
provider/partition-aws/pom.xml
View file @
e152b516
...
...
@@ -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>
...
...
provider/partition-aws/src/main/java/org/opengroup/osdu/partition/provider/aws/PartitionApplication.java
View file @
e152b516
...
...
@@ -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
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment