forked from finos/symphony-bdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
APP-3110 Handlebars template implementation (finos#260)
* APP-3110 Handlebars template engine implementation * APP-3110 doc * APP-3110 Post merge, updated getting-started guide * APP-3110 http and template implementations as runtime dependencies * APP-3110 reverted ./docs/index.md * APP-3110 Updates implementation selection * APP-3110 :symphony-bdk-http-api and :symphony-bdk-template-api as :symphony-bdk-core transitive dependencies
- Loading branch information
Showing
29 changed files
with
359 additions
and
409 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,20 @@ | ||
description = 'Symphony Java BDK Examples - Core' | ||
|
||
dependencies { | ||
|
||
implementation project(':symphony-bdk-core') | ||
implementation project(':symphony-bdk-template:symphony-bdk-template-api') | ||
implementation project(':symphony-bdk-http:symphony-bdk-http-api') | ||
implementation project(':symphony-bdk-http:symphony-bdk-http-webclient') | ||
implementation project(':symphony-bdk-template:symphony-bdk-template-freemarker') | ||
|
||
implementation 'org.slf4j:slf4j-api' | ||
runtimeOnly project(':symphony-bdk-http:symphony-bdk-http-webclient') | ||
runtimeOnly project(':symphony-bdk-template:symphony-bdk-template-freemarker') | ||
|
||
runtimeOnly 'ch.qos.logback:logback-classic' | ||
|
||
implementation 'org.slf4j:slf4j-api' | ||
implementation 'commons-io:commons-io' | ||
implementation 'org.apache.commons:commons-lang3' | ||
|
||
compileOnly 'org.projectlombok:lombok' | ||
annotationProcessor 'org.projectlombok:lombok' | ||
|
||
testCompileOnly 'org.projectlombok:lombok' | ||
testAnnotationProcessor 'org.projectlombok:lombok' | ||
} | ||
|
||
uploadArchives.enabled = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.