diff --git a/symphony-bdk-http/symphony-bdk-http-jersey2/build.gradle b/symphony-bdk-http/symphony-bdk-http-jersey2/build.gradle index 5b69b64e9..570458b33 100644 --- a/symphony-bdk-http/symphony-bdk-http-jersey2/build.gradle +++ b/symphony-bdk-http/symphony-bdk-http-jersey2/build.gradle @@ -1,7 +1,11 @@ +plugins { + id 'java-library' +} + description = 'Symphony Java BDK Core Http Jersey2' dependencies { - implementation project(':symphony-bdk-http:symphony-bdk-http-api') + api project(':symphony-bdk-http:symphony-bdk-http-api') implementation 'org.apiguardian:apiguardian-api' implementation 'io.jsonwebtoken:jjwt' diff --git a/symphony-bdk-http/symphony-bdk-http-webclient/build.gradle b/symphony-bdk-http/symphony-bdk-http-webclient/build.gradle index fb4c0cf01..52079b5a6 100644 --- a/symphony-bdk-http/symphony-bdk-http-webclient/build.gradle +++ b/symphony-bdk-http/symphony-bdk-http-webclient/build.gradle @@ -1,3 +1,7 @@ +plugins { + id 'java-library' +} + description = 'Symphony Java BDK Core Http Spring WebClient' jacocoTestCoverageVerification { @@ -14,7 +18,7 @@ jacocoTestCoverageVerification { } dependencies { - implementation project(':symphony-bdk-http:symphony-bdk-http-api') + api project(':symphony-bdk-http:symphony-bdk-http-api') implementation 'org.apiguardian:apiguardian-api' implementation 'org.springframework.boot:spring-boot-starter-webflux' diff --git a/symphony-bdk-template/symphony-bdk-template-freemarker/build.gradle b/symphony-bdk-template/symphony-bdk-template-freemarker/build.gradle index 28c8009d1..e42adab3a 100644 --- a/symphony-bdk-template/symphony-bdk-template-freemarker/build.gradle +++ b/symphony-bdk-template/symphony-bdk-template-freemarker/build.gradle @@ -1,7 +1,11 @@ +plugins { + id 'java-library' +} + description = 'Symphony Java BDK Template Freemarker Module' dependencies { - implementation project(':symphony-bdk-template:symphony-bdk-template-api') + api project(':symphony-bdk-template:symphony-bdk-template-api') implementation 'org.apiguardian:apiguardian-api' implementation 'org.freemarker:freemarker'