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
Dataset
Commits
42b10b72
Commit
42b10b72
authored
Dec 20, 2021
by
David Diederich
Browse files
Creating Release Commit
parent
b865c464
Pipeline
#83754
failed with stages
in 50 minutes and 41 seconds
Changes
13
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
42b10b72
...
...
@@ -30,39 +30,39 @@ variables:
include
:
-
project
:
"
osdu/platform/ci-cd-pipelines"
file
:
"
standard-setup.yml"
ref
:
release/
0.12
ref
:
v
0.12
.2
-
project
:
"
osdu/platform/ci-cd-pipelines"
file
:
"
build/maven.yml"
ref
:
release/
0.12
ref
:
v
0.12
.2
-
project
:
"
osdu/platform/ci-cd-pipelines"
file
:
"
scanners/fossa-maven.yml"
ref
:
release/
0.12
ref
:
v
0.12
.2
-
project
:
'
osdu/platform/ci-cd-pipelines'
file
:
'
cloud-providers/aws-global.yml'
ref
:
release/
0.12
ref
:
v
0.12
.2
-
project
:
'
osdu/platform/ci-cd-pipelines'
file
:
'
cloud-providers/aws-maven.yml'
ref
:
release/
0.12
ref
:
v
0.12
.2
-
project
:
'
osdu/platform/ci-cd-pipelines'
file
:
'
cloud-providers/azure.yml'
ref
:
release/
0.12
ref
:
v
0.12
.2
-
project
:
"
osdu/platform/ci-cd-pipelines"
file
:
"
cloud-providers/ibm.yml"
ref
:
release/
0.12
ref
:
v
0.12
.2
-
project
:
"
osdu/platform/ci-cd-pipelines"
file
:
"
scanners/gitlab-ultimate.yml"
ref
:
release/
0.12
ref
:
v
0.12
.2
-
project
:
'
osdu/platform/ci-cd-pipelines'
file
:
'
cloud-providers/osdu-gcp-gke.yml'
ref
:
release/
0.12
ref
:
v
0.12
.2
# disable the eslint scanner
# I think this is being generated from the presence of an HTML file, but there
...
...
dataset-core/pom.xml
View file @
42b10b72
...
...
@@ -19,14 +19,14 @@
<modelVersion>
4.0.0
</modelVersion>
<groupId>
org.opengroup.osdu
</groupId>
<artifactId>
dataset-core
</artifactId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<description>
Core project for the Dataset Registry service
</description>
<packaging>
jar
</packaging>
<parent>
<groupId>
org.opengroup.osdu
</groupId>
<artifactId>
os-dataset
</artifactId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<relativePath>
../pom.xml
</relativePath>
</parent>
...
...
pom.xml
View file @
42b10b72
...
...
@@ -17,7 +17,7 @@
<modelVersion>
4.0.0
</modelVersion>
<groupId>
org.opengroup.osdu
</groupId>
<artifactId>
os-dataset
</artifactId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<description>
Root Dataset Registry Service project
</description>
<properties>
...
...
provider/dataset-aws/pom.xml
View file @
42b10b72
...
...
@@ -21,20 +21,20 @@
<parent>
<artifactId>
os-dataset
</artifactId>
<groupId>
org.opengroup.osdu
</groupId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<relativePath>
../..
</relativePath>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
dataset-aws
</artifactId>
<description>
Dataset Registry service on AWS
</description>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<packaging>
jar
</packaging>
<properties>
<aws.version>
1.11.1018
</aws.version>
<deployment.environment>
dev
</deployment.environment>
<version.number>
0.12.2
-SNAPSHOT
</version.number>
<version.number>
0.12.2
</version.number>
</properties>
<dependencyManagement>
...
...
provider/dataset-azure/pom.xml
View file @
42b10b72
...
...
@@ -22,13 +22,13 @@
<parent>
<artifactId>
os-dataset
</artifactId>
<groupId>
org.opengroup.osdu
</groupId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<relativePath>
../../pom.xml
</relativePath>
</parent>
<artifactId>
dataset-azure
</artifactId>
<description>
Azure implementation of Dataset service APIs
</description>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<packaging>
jar
</packaging>
<name>
dataset-azure
</name>
...
...
provider/dataset-gcp/pom.xml
View file @
42b10b72
...
...
@@ -20,21 +20,21 @@
<parent>
<artifactId>
os-dataset
</artifactId>
<groupId>
org.opengroup.osdu
</groupId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<relativePath>
../../pom.xml
</relativePath>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
dataset-gcp
</artifactId>
<description>
Dataset Registry service on GCP
</description>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<packaging>
jar
</packaging>
<dependencies>
<dependency>
<groupId>
org.opengroup.osdu
</groupId>
<artifactId>
dataset-core
</artifactId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<exclusions>
<exclusion>
<groupId>
org.powermock
</groupId>
...
...
provider/dataset-ibm/pom.xml
View file @
42b10b72
...
...
@@ -4,18 +4,18 @@
<parent>
<artifactId>
os-dataset
</artifactId>
<groupId>
org.opengroup.osdu
</groupId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<relativePath>
../../pom.xml
</relativePath>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
dataset-ibm
</artifactId>
<description>
Dataset Registry service on IBM
</description>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<packaging>
jar
</packaging>
<properties>
<version.number>
0.12.2
-SNAPSHOT
</version.number>
<version.number>
0.12.2
</version.number>
<os-core-lib-ibm.version>
0.12.2
</os-core-lib-ibm.version>
<start-class>
org.opengroup.osdu.dataset.provider.ibm.IBMDatasetRegistry
</start-class>
<log4j2.version>
2.17.0
</log4j2.version>
...
...
testing/dataset-test-aws/pom.xml
View file @
42b10b72
...
...
@@ -20,13 +20,13 @@
<parent>
<groupId>
org.opengroup.osdu
</groupId>
<artifactId>
os-dataset-testing
</artifactId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<relativePath>
../pom.xml
</relativePath>
</parent>
<groupId>
org.opengroup.osdu.storage
</groupId>
<artifactId>
dataset-test-aws
</artifactId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<packaging>
jar
</packaging>
<properties>
...
...
@@ -52,7 +52,7 @@
<dependency>
<groupId>
org.opengroup.osdu.storage
</groupId>
<artifactId>
dataset-test-core
</artifactId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
</dependency>
<dependency>
...
...
testing/dataset-test-azure/pom.xml
View file @
42b10b72
...
...
@@ -4,7 +4,7 @@
<parent>
<groupId>
org.opengroup.osdu
</groupId>
<artifactId>
os-dataset-testing
</artifactId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<relativePath>
../pom.xml
</relativePath>
</parent>
...
...
@@ -25,7 +25,7 @@
<dependency>
<groupId>
org.opengroup.osdu.storage
</groupId>
<artifactId>
dataset-test-core
</artifactId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
</dependency>
<dependency>
<groupId>
com.sun.jersey
</groupId>
...
...
testing/dataset-test-core/pom.xml
View file @
42b10b72
...
...
@@ -21,13 +21,13 @@
<parent>
<groupId>
org.opengroup.osdu
</groupId>
<artifactId>
os-dataset-testing
</artifactId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<relativePath>
../pom.xml
</relativePath>
</parent>
<groupId>
org.opengroup.osdu.storage
</groupId>
<artifactId>
dataset-test-core
</artifactId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<packaging>
jar
</packaging>
<properties>
<maven.compiler.target>
1.8
</maven.compiler.target>
...
...
testing/dataset-test-gcp/pom.xml
View file @
42b10b72
...
...
@@ -20,13 +20,13 @@
<parent>
<artifactId>
os-dataset-testing
</artifactId>
<groupId>
org.opengroup.osdu
</groupId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<relativePath>
../pom.xml
</relativePath>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
dataset-test-gcp
</artifactId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<packaging>
jar
</packaging>
<properties>
...
...
@@ -40,7 +40,7 @@
<dependency>
<groupId>
org.opengroup.osdu.storage
</groupId>
<artifactId>
dataset-test-core
</artifactId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
</dependency>
<dependency>
<groupId>
org.projectlombok
</groupId>
...
...
testing/dataset-test-ibm/pom.xml
View file @
42b10b72
...
...
@@ -12,7 +12,7 @@
<parent>
<groupId>
org.opengroup.osdu
</groupId>
<artifactId>
os-dataset-testing
</artifactId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<relativePath>
../pom.xml
</relativePath>
</parent>
...
...
@@ -32,7 +32,7 @@
<dependency>
<groupId>
org.opengroup.osdu.storage
</groupId>
<artifactId>
dataset-test-core
</artifactId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
</dependency>
<dependency>
<groupId>
org.opengroup.osdu
</groupId>
...
...
testing/pom.xml
View file @
42b10b72
...
...
@@ -19,7 +19,7 @@
<modelVersion>
4.0.0
</modelVersion>
<groupId>
org.opengroup.osdu
</groupId>
<artifactId>
os-dataset-testing
</artifactId>
<version>
0.12.2
-SNAPSHOT
</version>
<version>
0.12.2
</version>
<description>
Dataset integration testing code
</description>
<packaging>
pom
</packaging>
...
...
Write
Preview
Markdown
is supported
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