From 3f0ebf0afe99a281546847e9ebc69c84902d6001 Mon Sep 17 00:00:00 2001 From: Yiftach Kaplan Date: Tue, 12 Dec 2023 10:42:25 +0000 Subject: [PATCH] CORE-18548: Add link manager boot configuration path --- .../main/java/net/corda/schema/configuration/BootConfig.java | 1 + gradle.properties | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/data/config-schema/src/main/java/net/corda/schema/configuration/BootConfig.java b/data/config-schema/src/main/java/net/corda/schema/configuration/BootConfig.java index 219239b23d..555cdaec4f 100644 --- a/data/config-schema/src/main/java/net/corda/schema/configuration/BootConfig.java +++ b/data/config-schema/src/main/java/net/corda/schema/configuration/BootConfig.java @@ -48,4 +48,5 @@ private BootConfig() { public static final String UNIQUENESS_WORKER_REST_ENDPOINT = BOOT_WORKER_SERVICE + ".endpoints.uniqueness"; public static final String PERSISTENCE_WORKER_REST_ENDPOINT = BOOT_WORKER_SERVICE + ".endpoints.persistence"; public static final String TOKEN_SELECTION_WORKER_REST_ENDPOINT = BOOT_WORKER_SERVICE + ".endpoints.tokenSelection"; + public static final String P2P_LINK_MANAGER_WORKER_REST_ENDPOINT = BOOT_WORKER_SERVICE + ".endpoints.p2pLinkManager"; } diff --git a/gradle.properties b/gradle.properties index 6040cba2d1..3383b4e9c0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ cordaProductVersion = 5.2.0 # NOTE: update this each time this module contains a breaking change ## NOTE: currently this is a top level revision, so all API versions will line up, but this could be moved to ## a per module property in which case module versions can change independently. -cordaApiRevision = 12 +cordaApiRevision = 15 # Main kotlinVersion = 1.8.21 @@ -34,4 +34,4 @@ org.gradle.caching = true gradleEnterpriseUrl = https://gradle.dev.r3.com # Kotlin build -kotlin.build.report.output=file,build_scan \ No newline at end of file +kotlin.build.report.output=file,build_scan