Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
Schema
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSDU
OSDU Data Platform
System
Schema
Commits
8613682f
Commit
8613682f
authored
2 years ago
by
Abhishek Kumar (SLB)
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/master' into slb-nested-ref-validation
parents
4c1be934
11e6be32
Branches
Branches containing commit
Tags
Tags containing commit
3 merge requests
!338
Update core lib version
,
!330
Slb nested ref validation
,
!321
Slb nested ref validation
Pipeline
#117889
failed
2 years ago
Stage: review
Stage: build
Stage: coverage
Stage: containerize
Stage: scan
Stage: deploy
Stage: bootstrap
Stage: integration
Changes
3
Pipelines
4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
provider/schema-aws/pom.xml
+18
-0
18 additions, 0 deletions
provider/schema-aws/pom.xml
schema-core/pom.xml
+13
-15
13 additions, 15 deletions
schema-core/pom.xml
testing/schema-test-core/pom.xml
+18
-0
18 additions, 0 deletions
testing/schema-test-core/pom.xml
with
49 additions
and
15 deletions
provider/schema-aws/pom.xml
+
18
−
0
View file @
8613682f
...
...
@@ -28,6 +28,8 @@
<properties>
<aws.version>
1.11.1018
</aws.version>
<jackson-databind.version>
2.13.2.2
</jackson-databind.version>
<jackson.version>
2.13.2
</jackson.version>
</properties>
<dependencyManagement>
...
...
@@ -81,6 +83,22 @@
<version>
0.14.0-rc2
</version>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-core
</artifactId>
<version>
${jackson.version}
</version>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-databind
</artifactId>
<version>
${jackson-databind.version}
</version>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-annotations
</artifactId>
<version>
${jackson.version}
</version>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
...
...
This diff is collapsed.
Click to expand it.
schema-core/pom.xml
+
13
−
15
View file @
8613682f
...
...
@@ -13,6 +13,8 @@
<properties>
<springfox-version>
2.7.0
</springfox-version>
<jackson-databind.version>
2.13.2.2
</jackson-databind.version>
<jackson.version>
2.13.2
</jackson.version>
</properties>
<dependencyManagement>
...
...
@@ -100,6 +102,17 @@
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-core
</artifactId>
<version>
${jackson.version}
</version>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-databind
</artifactId>
<version>
${jackson-databind.version}
</version>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-annotations
</artifactId>
<version>
${jackson.version}
</version>
</dependency>
<dependency>
...
...
@@ -155,21 +168,6 @@
<artifactId>
javax.json
</artifactId>
<version>
1.1.2
</version>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-databind
</artifactId>
<version>
2.13.3
</version>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-core
</artifactId>
<version>
2.13.3
</version>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-annotations
</artifactId>
<version>
2.13.3
</version>
</dependency>
</dependencies>
<build>
...
...
This diff is collapsed.
Click to expand it.
testing/schema-test-core/pom.xml
+
18
−
0
View file @
8613682f
...
...
@@ -16,6 +16,8 @@
<maven.compiler.target>
1.8
</maven.compiler.target>
<maven.compiler.source>
1.8
</maven.compiler.source>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<jackson-databind.version>
2.13.2.2
</jackson-databind.version>
<jackson.version>
2.13.2
</jackson.version>
</properties>
<dependencies>
...
...
@@ -64,6 +66,22 @@
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-core
</artifactId>
<version>
${jackson.version}
</version>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-databind
</artifactId>
<version>
${jackson-databind.version}
</version>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-annotations
</artifactId>
<version>
${jackson.version}
</version>
</dependency>
<dependency>
<groupId>
com.google.inject
</groupId>
<artifactId>
guice
</artifactId>
...
...
This diff is collapsed.
Click to expand it.
Abhishek Kumar (SLB)
@akumar290
mentioned in commit
14aefe44
·
2 years ago
mentioned in commit
14aefe44
mentioned in commit 14aefe44385079333361e50b62e1bf0409d20be5
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment