Skip to content

Commit

Permalink
APP-3078: Add java-library plugin to http and template submodules (#261)
Browse files Browse the repository at this point in the history
* Add internal dependencies version to bom module

* Update missing dependencies

* Adding plugin to http and template submodule
  • Loading branch information
symphony-hong authored Oct 5, 2020
1 parent 0af8d95 commit f5c7df0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion symphony-bdk-http/symphony-bdk-http-jersey2/build.gradle
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
6 changes: 5 additions & 1 deletion symphony-bdk-http/symphony-bdk-http-webclient/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
plugins {
id 'java-library'
}

description = 'Symphony Java BDK Core Http Spring WebClient'

jacocoTestCoverageVerification {
Expand All @@ -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'
Expand Down
Original file line number Diff line number Diff line change
@@ -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'
Expand Down

0 comments on commit f5c7df0

Please sign in to comment.