File tree Expand file tree Collapse file tree 2 files changed +13
-9
lines changed Expand file tree Collapse file tree 2 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -307,9 +307,11 @@ description about how to apply this feature can be found
307
307
Stacktraces can be logged within one log message. Further details can be found
308
308
[ here] ( https://github.com/SAP/cf-java-logging-support/wiki/Logging-Stack-Traces ) .
309
309
310
- ## Sample Application
310
+ ## Sample Applications
311
311
312
- In order to illustrate how the different features are used, this repository includes a simple application in the [ ./sample folder] ( ./sample ) .
312
+ In order to illustrate how the different features are used, this repository includes two sample applications:
313
+ * a Jersey implementation in the [ ./sample folder] ( ./sample )
314
+ * a Spring Boot implementaiton in the [ ./sample-spring-boot folder] ( ./sample-spring-boot )
313
315
314
316
## Documentation
315
317
Original file line number Diff line number Diff line change 105
105
<filtering >true</filtering >
106
106
</resource >
107
107
<resource >
108
- <directory >${project.build.directory} /generated-resources/keystore</directory >
108
+ <directory >${basedir} /target /generated-resources/keystore</directory >
109
109
</resource >
110
110
</resources >
111
111
130
130
<id >initialze-keystore</id >
131
131
<activation >
132
132
<file >
133
- <missing >${project.build.directory} /generated-resources/keystore/token_keystore.jks
134
- </missing >
133
+ <missing >${basedir} /target/generated-resources/keystore/token_keystore.jks</missing >
135
134
</file >
136
135
</activation >
137
136
<build >
150
149
</execution >
151
150
</executions >
152
151
<configuration >
153
- <keystore >${project.build.directory} /generated-resources/keystore/token_keystore.jks
154
- </keystore >
152
+ <keystore >${basedir} /target/generated-resources/keystore/token_keystore.jks</keystore >
155
153
<storepass >${keystore.token.store_password} </storepass >
156
154
<keypass >${keystore.token.key_password} </keypass >
157
155
<alias >${keystore.token.key_alias} </alias >
169
167
<profile >
170
168
<id >logback</id >
171
169
<activation >
172
- <activeByDefault >true</activeByDefault >
170
+ <property >
171
+ <name >!log4j2</name >
172
+ </property >
173
173
</activation >
174
174
<dependencies >
175
175
<dependency >
186
186
<profile >
187
187
<id >log4j2</id >
188
188
<activation >
189
- <activeByDefault >false</activeByDefault >
189
+ <property >
190
+ <name >log4j2</name >
191
+ </property >
190
192
</activation >
191
193
<dependencies >
192
194
<dependency >
You can’t perform that action at this time.
0 commit comments