Skip to content
Snippets Groups Projects
Commit eecc4617 authored by Zhenzhen Liu's avatar Zhenzhen Liu
Browse files

Merge branch 'main' into OZG-6716

parents 57b8bf3a 965ec8ca
No related branches found
No related tags found
1 merge request!1Ozg 6716 add service_monitor
...@@ -83,7 +83,6 @@ pipeline { ...@@ -83,7 +83,6 @@ pipeline {
} }
configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) { configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) {
sh 'mvn --no-transfer-progress -s $MAVEN_SETTINGS -DskipTests deploy -Dmaven.wagon.http.retryHandler.count=3' sh 'mvn --no-transfer-progress -s $MAVEN_SETTINGS -DskipTests deploy -Dmaven.wagon.http.retryHandler.count=3'
sh "mvn -s $MAVEN_SETTINGS versions:revert"
} }
} }
...@@ -99,6 +98,7 @@ pipeline { ...@@ -99,6 +98,7 @@ pipeline {
dir('bayernid-proxy-impl') { dir('bayernid-proxy-impl') {
sh 'mvn --no-transfer-progress -s $MAVEN_SETTINGS spring-boot:build-image -DskipTests -Dmaven.wagon.http.retryHandler.count=3' sh 'mvn --no-transfer-progress -s $MAVEN_SETTINGS spring-boot:build-image -DskipTests -Dmaven.wagon.http.retryHandler.count=3'
} }
sh "mvn -s $MAVEN_SETTINGS versions:revert"
} }
} }
} }
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
<parent> <parent>
<groupId>de.ozgcloud.nachrichten</groupId> <groupId>de.ozgcloud.nachrichten</groupId>
<artifactId>nachrichten-bayernid-proxy</artifactId> <artifactId>nachrichten-bayernid-proxy</artifactId>
<version>0.7.0-SNAPSHOT</version> <version>0.8.0-SNAPSHOT</version>
<relativePath>../</relativePath> <relativePath>../</relativePath>
</parent> </parent>
...@@ -96,7 +96,10 @@ ...@@ -96,7 +96,10 @@
<groupId>io.grpc</groupId> <groupId>io.grpc</groupId>
<artifactId>grpc-inprocess</artifactId> <artifactId>grpc-inprocess</artifactId>
</dependency> </dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-census</artifactId>
</dependency>
<!-- aspectJ --> <!-- aspectJ -->
<dependency> <dependency>
<groupId>org.aspectj</groupId> <groupId>org.aspectj</groupId>
......
net.devh.boot.grpc.common.autoconfigure.GrpcCommonCodecAutoConfiguration net.devh.boot.grpc.common.autoconfigure.GrpcCommonCodecAutoConfiguration
net.devh.boot.grpc.common.autoconfigure.GrpcCommonTraceAutoConfiguration
net.devh.boot.grpc.server.autoconfigure.GrpcAdviceAutoConfiguration net.devh.boot.grpc.server.autoconfigure.GrpcAdviceAutoConfiguration
net.devh.boot.grpc.server.autoconfigure.GrpcHealthServiceAutoConfiguration net.devh.boot.grpc.server.autoconfigure.GrpcHealthServiceAutoConfiguration
net.devh.boot.grpc.server.autoconfigure.GrpcMetadataConsulConfiguration net.devh.boot.grpc.server.autoconfigure.GrpcMetadataConsulConfiguration
...@@ -11,4 +10,3 @@ net.devh.boot.grpc.server.autoconfigure.GrpcServerAutoConfiguration ...@@ -11,4 +10,3 @@ net.devh.boot.grpc.server.autoconfigure.GrpcServerAutoConfiguration
net.devh.boot.grpc.server.autoconfigure.GrpcServerFactoryAutoConfiguration net.devh.boot.grpc.server.autoconfigure.GrpcServerFactoryAutoConfiguration
net.devh.boot.grpc.server.autoconfigure.GrpcServerMetricAutoConfiguration net.devh.boot.grpc.server.autoconfigure.GrpcServerMetricAutoConfiguration
net.devh.boot.grpc.server.autoconfigure.GrpcServerSecurityAutoConfiguration net.devh.boot.grpc.server.autoconfigure.GrpcServerSecurityAutoConfiguration
net.devh.boot.grpc.server.autoconfigure.GrpcServerTraceAutoConfiguration
...@@ -54,7 +54,6 @@ import net.devh.boot.grpc.client.autoconfigure.GrpcClientAutoConfiguration; ...@@ -54,7 +54,6 @@ import net.devh.boot.grpc.client.autoconfigure.GrpcClientAutoConfiguration;
import net.devh.boot.grpc.client.autoconfigure.GrpcClientHealthAutoConfiguration; import net.devh.boot.grpc.client.autoconfigure.GrpcClientHealthAutoConfiguration;
import net.devh.boot.grpc.client.autoconfigure.GrpcClientMetricAutoConfiguration; import net.devh.boot.grpc.client.autoconfigure.GrpcClientMetricAutoConfiguration;
import net.devh.boot.grpc.client.autoconfigure.GrpcClientSecurityAutoConfiguration; import net.devh.boot.grpc.client.autoconfigure.GrpcClientSecurityAutoConfiguration;
import net.devh.boot.grpc.client.autoconfigure.GrpcClientTraceAutoConfiguration;
import net.devh.boot.grpc.client.autoconfigure.GrpcDiscoveryClientAutoConfiguration; import net.devh.boot.grpc.client.autoconfigure.GrpcDiscoveryClientAutoConfiguration;
import net.devh.boot.grpc.client.inject.GrpcClient; import net.devh.boot.grpc.client.inject.GrpcClient;
...@@ -162,7 +161,6 @@ class BayernIdProxyGrpcServiceITCase { ...@@ -162,7 +161,6 @@ class BayernIdProxyGrpcServiceITCase {
GrpcClientHealthAutoConfiguration.class, GrpcClientHealthAutoConfiguration.class,
GrpcClientMetricAutoConfiguration.class, GrpcClientMetricAutoConfiguration.class,
GrpcClientSecurityAutoConfiguration.class, GrpcClientSecurityAutoConfiguration.class,
GrpcClientTraceAutoConfiguration.class,
GrpcDiscoveryClientAutoConfiguration.class GrpcDiscoveryClientAutoConfiguration.class
}) })
static class TestConfig { static class TestConfig {
......
...@@ -30,13 +30,13 @@ ...@@ -30,13 +30,13 @@
<parent> <parent>
<groupId>de.ozgcloud.common</groupId> <groupId>de.ozgcloud.common</groupId>
<artifactId>ozgcloud-common-dependencies</artifactId> <artifactId>ozgcloud-common-dependencies</artifactId>
<version>4.3.1</version> <version>4.5.0-SNAPSHOT</version>
<relativePath/> <relativePath/>
</parent> </parent>
<groupId>de.ozgcloud.nachrichten</groupId> <groupId>de.ozgcloud.nachrichten</groupId>
<artifactId>bayernid-proxy-interface</artifactId> <artifactId>bayernid-proxy-interface</artifactId>
<version>0.7.0-SNAPSHOT</version> <version>0.8.0-SNAPSHOT</version>
<name>OZG-Cloud BayernID Proxy Interface</name> <name>OZG-Cloud BayernID Proxy Interface</name>
<description>Interface (gRPC) for BayernID Proxy Service</description> <description>Interface (gRPC) for BayernID Proxy Service</description>
...@@ -80,6 +80,7 @@ ...@@ -80,6 +80,7 @@
<goal>run</goal> <goal>run</goal>
</goals> </goals>
<configuration> <configuration>
<protocVersion>${protobuf.version}</protocVersion>
<includeMavenTypes>direct</includeMavenTypes> <includeMavenTypes>direct</includeMavenTypes>
<outputTargets> <outputTargets>
<outputTarget> <outputTarget>
......
...@@ -31,13 +31,13 @@ ...@@ -31,13 +31,13 @@
<parent> <parent>
<groupId>de.ozgcloud.common</groupId> <groupId>de.ozgcloud.common</groupId>
<artifactId>ozgcloud-common-parent</artifactId> <artifactId>ozgcloud-common-parent</artifactId>
<version>4.3.1</version> <version>4.5.0-SNAPSHOT</version>
<relativePath/> <relativePath/>
</parent> </parent>
<groupId>de.ozgcloud.nachrichten</groupId> <groupId>de.ozgcloud.nachrichten</groupId>
<artifactId>nachrichten-bayernid-proxy</artifactId> <artifactId>nachrichten-bayernid-proxy</artifactId>
<version>0.7.0-SNAPSHOT</version> <version>0.8.0-SNAPSHOT</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>OZG-Cloud BayernID Proxy</name> <name>OZG-Cloud BayernID Proxy</name>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment