File tree Expand file tree Collapse file tree 3 files changed +25
-9
lines changed Expand file tree Collapse file tree 3 files changed +25
-9
lines changed Original file line number Diff line number Diff line change 5
5
<artifactId >simple-spreadsheet-extractor</artifactId >
6
6
<name >POI Based Spreadsheet parser</name >
7
7
<description >Simple command line app that translates a Spreadsheet file to an XML document</description >
8
- <version >0.18.0 </version >
8
+ <version >0.18.1 </version >
9
9
<dependencies >
10
10
<dependency >
11
11
<groupId >org.apache.poi</groupId >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <Configuration >
3
+ <Properties >
4
+ <Property name =" pattern" >
5
+ [%d{yyyy-MM-dd HH:mm:ss.SSS}][%highlight{%-5level}][%t][%logger] %msg%n
6
+ </Property >
7
+ </Properties >
8
+ <Appenders >
9
+ <Console name =" stdout" target =" SYSTEM_OUT" >
10
+ <PatternLayout pattern =" ${pattern}" />
11
+ <ThresholdFilter level =" ERROR" onMatch =" DENY" onMismatch =" ACCEPT" />
12
+ </Console >
13
+ <Console name =" stderr" target =" SYSTEM_ERR" > <!-- 2 -->
14
+ <PatternLayout pattern =" ${pattern}" />
15
+ <ThresholdFilter level =" ERROR" onMatch =" ACCEPT" onMismatch =" DENY" />
16
+ </Console >
17
+ </Appenders >
18
+ <Loggers >
19
+ <Root level =" ERROR" >
20
+ <AppenderRef ref =" stdout" />
21
+ <AppenderRef ref =" stderr" />
22
+ </Root >
23
+ </Loggers >
24
+ </Configuration >
You can’t perform that action at this time.
0 commit comments