GH-766 Initial support to expose FunctionCatalog as actuator endpoint

This commit is contained in:
Oleg Zhurakousky
2021-11-30 18:53:58 +01:00
parent 56092df2c5
commit 24847cfffa
7 changed files with 148 additions and 12 deletions

View File

@@ -43,9 +43,9 @@
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-kotlin</artifactId>
<optional>true</optional>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-kotlin</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
@@ -69,7 +69,7 @@
<exclusions>
<exclusion>
<groupId>com.vaadin.external.google</groupId>
<artifactId>android-json</artifactId>
<artifactId>android-json</artifactId>
</exclusion>
</exclusions>
</dependency>
@@ -83,7 +83,7 @@
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<!-- KOTLIN -->
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
@@ -109,10 +109,17 @@
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.cloudevents</groupId>
<artifactId>cloudevents-spring</artifactId>
<version>2.2.0</version>
<optional>true</optional>
<groupId>io.cloudevents</groupId>
<artifactId>cloudevents-spring</artifactId>
<version>2.2.0</version>
<optional>true</optional>
</dependency>
<!-- Actuator -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<build>