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

Merge branch 'dev' into helm

parents 0efec68a 085d7486
No related branches found
No related tags found
No related merge requests found
Showing
with 113 additions and 40 deletions
...@@ -90,9 +90,11 @@ The following software have components provided under the terms of this license: ...@@ -90,9 +90,11 @@ The following software have components provided under the terms of this license:
- ClassMate (from http://github.com/cowtowncoder/java-classmate) - ClassMate (from http://github.com/cowtowncoder/java-classmate)
- Cloud Key Management Service (KMS) API v1-rev20220407-1.32.1 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-cloudkms) - Cloud Key Management Service (KMS) API v1-rev20220407-1.32.1 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-cloudkms)
- Cloud Key Management Service (KMS) API v1-rev20220617-1.32.1 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-cloudkms) - Cloud Key Management Service (KMS) API v1-rev20220617-1.32.1 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-cloudkms)
- Cloud Key Management Service (KMS) API v1-rev20220701-1.32.1 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-cloudkms)
- Cloud Storage JSON API v1-rev20220604-1.32.1 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-storage) - Cloud Storage JSON API v1-rev20220604-1.32.1 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-storage)
- Cloud Storage JSON API v1-rev20220608-1.32.1 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-storage) - Cloud Storage JSON API v1-rev20220608-1.32.1 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-storage)
- Cloud Storage JSON API v1-rev20220705-1.32.1 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-storage) - Cloud Storage JSON API v1-rev20220705-1.32.1 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-storage)
- Cloud Storage JSON API v1-rev20220705-2.0.0 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-storage)
- Collections (from https://repo1.maven.org/maven2/commons-collections/commons-collections) - Collections (from https://repo1.maven.org/maven2/commons-collections/commons-collections)
- Commons Digester (from http://commons.apache.org/digester/) - Commons Digester (from http://commons.apache.org/digester/)
- Converter: Jackson (from https://github.com/square/retrofit, https://repo1.maven.org/maven2/com/squareup/retrofit2/converter-jackson) - Converter: Jackson (from https://github.com/square/retrofit, https://repo1.maven.org/maven2/com/squareup/retrofit2/converter-jackson)
...@@ -126,6 +128,8 @@ The following software have components provided under the terms of this license: ...@@ -126,6 +128,8 @@ The following software have components provided under the terms of this license:
- IBM COS SDK For Java (from https://github.com/ibm/ibm-cos-sdk-java) - IBM COS SDK For Java (from https://github.com/ibm/ibm-cos-sdk-java)
- IBM COS SDK for Java - Core (from https://github.com/ibm/ibm-cos-sdk-java) - IBM COS SDK for Java - Core (from https://github.com/ibm/ibm-cos-sdk-java)
- Identity and Access Management (IAM) API v2beta-rev20220421-1.32.1 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-iam) - Identity and Access Management (IAM) API v2beta-rev20220421-1.32.1 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-iam)
- Identity and Access Management (IAM) API v2beta-rev20220526-1.32.1 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-iam)
- Identity and Access Management (IAM) API v2beta-rev20220713-1.32.1 (from https://repo1.maven.org/maven2/com/google/apis/google-api-services-iam)
- J2ObjC Annotations (from https://github.com/google/j2objc/) - J2ObjC Annotations (from https://github.com/google/j2objc/)
- JBoss Jakarta Annotations API (from https://github.com/jboss/jboss-jakarta-annotations-api_spec) - JBoss Jakarta Annotations API (from https://github.com/jboss/jboss-jakarta-annotations-api_spec)
- JBoss Logging 3 (from http://www.jboss.org) - JBoss Logging 3 (from http://www.jboss.org)
...@@ -823,6 +827,8 @@ The following software have components provided under the terms of this license: ...@@ -823,6 +827,8 @@ The following software have components provided under the terms of this license:
- PostgreSQL JDBC Driver - PostgreSQL JDBC Driver
- Prometheus Java Simpleclient (from https://repo1.maven.org/maven2/io/prometheus/simpleclient) - Prometheus Java Simpleclient (from https://repo1.maven.org/maven2/io/prometheus/simpleclient)
- RabbitMQ Java Client (from http://www.rabbitmq.com, https://www.rabbitmq.com) - RabbitMQ Java Client (from http://www.rabbitmq.com, https://www.rabbitmq.com)
- Undertow Core (from https://repo1.maven.org/maven2/io/undertow/undertow-core)
- Undertow WebSockets JSR356 implementations (from https://repo1.maven.org/maven2/io/undertow/undertow-websockets-jsr)
- reactive-streams (from http://www.reactive-streams.org/) - reactive-streams (from http://www.reactive-streams.org/)
======================================================================== ========================================================================
......
...@@ -43,6 +43,10 @@ spec: ...@@ -43,6 +43,10 @@ spec:
- name: {{ .Chart.Name }} - name: {{ .Chart.Name }}
image: {{ .Values.image.repository }}/{{ .Chart.Name }}-{{ .Values.image.branch }}:{{ .Values.image.tag | default .Chart.AppVersion }} image: {{ .Values.image.repository }}/{{ .Chart.Name }}-{{ .Values.image.branch }}:{{ .Values.image.tag | default .Chart.AppVersion }}
imagePullPolicy: Always imagePullPolicy: Always
lifecycle:
preStop:
exec:
command: ["sleep","90"]
ports: ports:
- containerPort: 80 - containerPort: 80
readinessProbe: readinessProbe:
...@@ -107,3 +111,4 @@ spec: ...@@ -107,3 +111,4 @@ spec:
value: "false" value: "false"
- name: event_grid_enabled - name: event_grid_enabled
value: "true" value: "true"
terminationGracePeriodSeconds: 101
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>notification-core</artifactId> <artifactId>notification-core</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<name>notification-core</name> <name>notification-core</name>
<description>Core module for the notification service</description> <description>Core module for the notification service</description>
<packaging>jar</packaging> <packaging>jar</packaging>
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
<parent> <parent>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>os-notification</artifactId> <artifactId>os-notification</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>os-notification</artifactId> <artifactId>os-notification</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<description>Root Notification Service project</description> <description>Root Notification Service project</description>
<properties> <properties>
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>notification-aws</artifactId> <artifactId>notification-aws</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<name>notification-aws</name> <name>notification-aws</name>
<description>AWS implementation for Notification service</description> <description>AWS implementation for Notification service</description>
<packaging>jar</packaging> <packaging>jar</packaging>
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
<parent> <parent>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>os-notification</artifactId> <artifactId>os-notification</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
<dependency> <dependency>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>notification-core</artifactId> <artifactId>notification-core</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>notification-azure</artifactId> <artifactId>notification-azure</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<name>notification-azure</name> <name>notification-azure</name>
<description>Azure implementation for Notification service</description> <description>Azure implementation for Notification service</description>
<packaging>jar</packaging> <packaging>jar</packaging>
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
<parent> <parent>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>os-notification</artifactId> <artifactId>os-notification</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
<maven.compiler.target>${java.version}</maven.compiler.target> <maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.source>${java.version}</maven.compiler.source>
<jacoco-maven-plugin.version>0.8.2</jacoco-maven-plugin.version> <jacoco-maven-plugin.version>0.8.2</jacoco-maven-plugin.version>
<osdu.notification-core.version>0.16.0-SNAPSHOT</osdu.notification-core.version> <osdu.notification-core.version>0.17.0-SNAPSHOT</osdu.notification-core.version>
<springframework.version>4.3.0.RELEASE</springframework.version> <springframework.version>4.3.0.RELEASE</springframework.version>
<reactor.netty.version>0.11.0.RELEASE</reactor.netty.version> <reactor.netty.version>0.11.0.RELEASE</reactor.netty.version>
<reactor.core.version>3.3.0.RELEASE</reactor.core.version> <reactor.core.version>3.3.0.RELEASE</reactor.core.version>
......
...@@ -39,7 +39,7 @@ app.expireTime=300 ...@@ -39,7 +39,7 @@ app.expireTime=300
app.maxCacheSize=10 app.maxCacheSize=10
# Azure AD configuration # Azure AD configuration
azure.activedirectory.client-id=${aad_client_id} #azure.activedirectory.client-id=${aad_client_id}
azure.activedirectory.AppIdUri=api://${azure.activedirectory.client-id} azure.activedirectory.AppIdUri=api://${azure.activedirectory.client-id}
azure.activedirectory.session-stateless=true azure.activedirectory.session-stateless=true
azure.activedirectory.app-resource-id=${aad_client_id} azure.activedirectory.app-resource-id=${aad_client_id}
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>notification-gcp</artifactId> <artifactId>notification-gcp</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<name>notification-gcp</name> <name>notification-gcp</name>
<description>GCP implementation for Notification service</description> <description>GCP implementation for Notification service</description>
<packaging>jar</packaging> <packaging>jar</packaging>
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
<parent> <parent>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>os-notification</artifactId> <artifactId>os-notification</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
...@@ -34,6 +34,8 @@ ...@@ -34,6 +34,8 @@
<java.version>8</java.version> <java.version>8</java.version>
<maven.compiler.target>${java.version}</maven.compiler.target> <maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.source>${java.version}</maven.compiler.source>
<jackson-databind.version>2.13.2.2</jackson-databind.version>
<jackson.version>2.13.2</jackson.version>
</properties> </properties>
<dependencies> <dependencies>
...@@ -44,13 +46,13 @@ ...@@ -44,13 +46,13 @@
<dependency> <dependency>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>core-lib-gcp</artifactId> <artifactId>core-lib-gcp</artifactId>
<version>0.16.0-rc1</version> <version>0.16.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>notification-core</artifactId> <artifactId>notification-core</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>
...@@ -84,6 +86,21 @@ ...@@ -84,6 +86,21 @@
<version>4.12</version> <version>4.12</version>
<scope>test</scope> <scope>test</scope>
</dependency> </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-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
</dependencies> </dependencies>
<build> <build>
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>notification-ibm</artifactId> <artifactId>notification-ibm</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<name>notification-ibm</name> <name>notification-ibm</name>
<description>IBM implementation for Notification service</description> <description>IBM implementation for Notification service</description>
<packaging>jar</packaging> <packaging>jar</packaging>
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
<parent> <parent>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>os-notification</artifactId> <artifactId>os-notification</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
...@@ -32,8 +32,10 @@ ...@@ -32,8 +32,10 @@
<java.version>8</java.version> <java.version>8</java.version>
<maven.compiler.target>${java.version}</maven.compiler.target> <maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.source>${java.version}</maven.compiler.source>
<undertow-websockets-jsr.version>2.2.10.Final</undertow-websockets-jsr.version> <undertow-websockets-jsr.version>2.2.11.Final</undertow-websockets-jsr.version>
<jackson-dataformat-cbor.version>2.13.0</jackson-dataformat-cbor.version> <jackson-dataformat-cbor.version>2.13.0</jackson-dataformat-cbor.version>
<jackson-databind.version>2.13.2.2</jackson-databind.version>
<jackson.version>2.13.2</jackson.version>
</properties> </properties>
<dependencies> <dependencies>
...@@ -46,7 +48,7 @@ ...@@ -46,7 +48,7 @@
<dependency> <dependency>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>os-core-lib-ibm</artifactId> <artifactId>os-core-lib-ibm</artifactId>
<version>0.15.2</version> <version>0.16.0-rc1</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.apache.lucene</groupId> <groupId>org.apache.lucene</groupId>
...@@ -60,6 +62,10 @@ ...@@ -60,6 +62,10 @@
<groupId>com.fasterxml.jackson.dataformat</groupId> <groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-cbor</artifactId> <artifactId>jackson-dataformat-cbor</artifactId>
</exclusion> </exclusion>
<exclusion>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
</exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency> <dependency>
...@@ -67,6 +73,21 @@ ...@@ -67,6 +73,21 @@
<artifactId>jackson-dataformat-cbor</artifactId> <artifactId>jackson-dataformat-cbor</artifactId>
<version>${jackson-dataformat-cbor.version}</version> <version>${jackson-dataformat-cbor.version}</version>
</dependency> </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.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency> <dependency>
<groupId>org.yaml</groupId> <groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId> <artifactId>snakeyaml</artifactId>
...@@ -80,7 +101,7 @@ ...@@ -80,7 +101,7 @@
<dependency> <dependency>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>notification-core</artifactId> <artifactId>notification-core</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>io.netty</groupId> <groupId>io.netty</groupId>
...@@ -94,8 +115,32 @@ ...@@ -94,8 +115,32 @@
<groupId>io.undertow</groupId> <groupId>io.undertow</groupId>
<artifactId>undertow-core</artifactId> <artifactId>undertow-core</artifactId>
</exclusion> </exclusion>
<exclusion>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
</exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>5.3.8.RELEASE</version>
<exclusions>
<exclusion>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>5.3.8.RELEASE</version>
</dependency>
<dependency> <dependency>
<groupId>io.undertow</groupId> <groupId>io.undertow</groupId>
<artifactId>undertow-core</artifactId> <artifactId>undertow-core</artifactId>
......
...@@ -5,13 +5,13 @@ ...@@ -5,13 +5,13 @@
<parent> <parent>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>os-notification</artifactId> <artifactId>os-notification</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>notification-reference</artifactId> <artifactId>notification-reference</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<properties> <properties>
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
<dependency> <dependency>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>notification-core</artifactId> <artifactId>notification-core</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>
......
...@@ -21,12 +21,12 @@ ...@@ -21,12 +21,12 @@
<parent> <parent>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>os-notification-testing</artifactId> <artifactId>os-notification-testing</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>
<artifactId>notification-test-anthos</artifactId> <artifactId>notification-test-anthos</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<name>notification-test-anthos</name> <name>notification-test-anthos</name>
<description>Integration tests Anthos for notification</description> <description>Integration tests Anthos for notification</description>
<packaging>jar</packaging> <packaging>jar</packaging>
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
<dependency> <dependency>
<groupId>org.opengroup.osdu.notification</groupId> <groupId>org.opengroup.osdu.notification</groupId>
<artifactId>notification-test-core</artifactId> <artifactId>notification-test-core</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
......
...@@ -21,13 +21,13 @@ ...@@ -21,13 +21,13 @@
<parent> <parent>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>os-notification-testing</artifactId> <artifactId>os-notification-testing</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>notification-test-aws</artifactId> <artifactId>notification-test-aws</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<name>notification-test-aws</name> <name>notification-test-aws</name>
<description>AWS Integration tests for Notification Service</description> <description>AWS Integration tests for Notification Service</description>
<packaging>jar</packaging> <packaging>jar</packaging>
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
<dependency> <dependency>
<groupId>org.opengroup.osdu.notification</groupId> <groupId>org.opengroup.osdu.notification</groupId>
<artifactId>notification-test-core</artifactId> <artifactId>notification-test-core</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
......
...@@ -21,13 +21,13 @@ ...@@ -21,13 +21,13 @@
<parent> <parent>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>os-notification-testing</artifactId> <artifactId>os-notification-testing</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>notification-test-azure</artifactId> <artifactId>notification-test-azure</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<name>notification-test-azure</name> <name>notification-test-azure</name>
<description>Integration tests Azure for notification</description> <description>Integration tests Azure for notification</description>
<packaging>jar</packaging> <packaging>jar</packaging>
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
<dependency> <dependency>
<groupId>org.opengroup.osdu.notification</groupId> <groupId>org.opengroup.osdu.notification</groupId>
<artifactId>notification-test-core</artifactId> <artifactId>notification-test-core</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>
......
...@@ -21,13 +21,13 @@ ...@@ -21,13 +21,13 @@
<parent> <parent>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>os-notification-testing</artifactId> <artifactId>os-notification-testing</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.opengroup.osdu.notification</groupId> <groupId>org.opengroup.osdu.notification</groupId>
<artifactId>notification-test-core</artifactId> <artifactId>notification-test-core</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<name>notification-test-core</name> <name>notification-test-core</name>
<description>Integration tests core for notification</description> <description>Integration tests core for notification</description>
<packaging>jar</packaging> <packaging>jar</packaging>
......
...@@ -21,12 +21,12 @@ ...@@ -21,12 +21,12 @@
<parent> <parent>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>os-notification-testing</artifactId> <artifactId>os-notification-testing</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>
<artifactId>notification-test-gcp</artifactId> <artifactId>notification-test-gcp</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<name>notification-test-gcp</name> <name>notification-test-gcp</name>
<description>Integration tests GCP for notification</description> <description>Integration tests GCP for notification</description>
<packaging>jar</packaging> <packaging>jar</packaging>
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
<dependency> <dependency>
<groupId>org.opengroup.osdu.notification</groupId> <groupId>org.opengroup.osdu.notification</groupId>
<artifactId>notification-test-core</artifactId> <artifactId>notification-test-core</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
......
...@@ -18,13 +18,13 @@ ...@@ -18,13 +18,13 @@
<parent> <parent>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>os-notification-testing</artifactId> <artifactId>os-notification-testing</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>notification-test-ibm</artifactId> <artifactId>notification-test-ibm</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<name>notification-test-ibm</name> <name>notification-test-ibm</name>
<description>Integration tests IBM for notification</description> <description>Integration tests IBM for notification</description>
<packaging>jar</packaging> <packaging>jar</packaging>
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
<dependency> <dependency>
<groupId>org.opengroup.osdu.notification</groupId> <groupId>org.opengroup.osdu.notification</groupId>
<artifactId>notification-test-core</artifactId> <artifactId>notification-test-core</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>os-notification-testing</artifactId> <artifactId>os-notification-testing</artifactId>
<version>0.16.0-SNAPSHOT</version> <version>0.17.0-SNAPSHOT</version>
<description>Root Notification Service project</description> <description>Root Notification Service project</description>
<packaging>pom</packaging> <packaging>pom</packaging>
......
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