File tree Expand file tree Collapse file tree 5 files changed +17
-9
lines changed Expand file tree Collapse file tree 5 files changed +17
-9
lines changed Original file line number Diff line number Diff line change 5
5
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
6
6
<maven .compiler.source>1.8</maven .compiler.source>
7
7
<maven .compiler.target>1.8</maven .compiler.target>
8
- <maven .scope>compile </maven .scope>
8
+ <maven .scope>provided </maven .scope>
9
9
<maven .version>3.6.0</maven .version>
10
10
<maven .plugin.version>3.10.2</maven .plugin.version>
11
11
<additionalparam >-Xdoclint:none</additionalparam >
139
139
<dependency >
140
140
<groupId >org.apache.commons</groupId >
141
141
<artifactId >commons-compress</artifactId >
142
- <version >1.25.0</version >
142
+ <version >1.26.0</version >
143
+ </dependency >
144
+ <dependency >
145
+ <groupId >commons-codec</groupId >
146
+ <artifactId >commons-codec</artifactId >
147
+ <version >1.16.1</version >
143
148
</dependency >
144
149
<dependency >
145
150
<groupId >org.bouncycastle</groupId >
449
454
</plugin >
450
455
451
456
457
+ <!-- FIXME
452
458
<plugin>
453
459
<groupId>org.apache.maven.plugins</groupId>
454
460
<artifactId>maven-invoker-plugin</artifactId>
474
480
</execution>
475
481
</executions>
476
482
</plugin>
483
+ -->
477
484
478
485
</plugins >
479
486
</build >
Original file line number Diff line number Diff line change 9
9
<properties >
10
10
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
11
11
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
12
- <maven .compiler.source>1.7 </maven .compiler.source>
13
- <maven .compiler.target>1.7 </maven .compiler.target>
12
+ <maven .compiler.source>1.8 </maven .compiler.source>
13
+ <maven .compiler.target>1.8 </maven .compiler.target>
14
14
</properties >
15
15
<build >
16
16
<extensions >
Original file line number Diff line number Diff line change 8
8
<properties >
9
9
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
10
10
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
11
- <maven .compiler.source>1.7 </maven .compiler.source>
12
- <maven .compiler.target>1.7 </maven .compiler.target>
11
+ <maven .compiler.source>1.8 </maven .compiler.source>
12
+ <maven .compiler.target>1.8 </maven .compiler.target>
13
13
</properties >
14
14
<build >
15
15
<plugins >
Original file line number Diff line number Diff line change 9
9
<properties >
10
10
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
11
11
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
12
- <maven .compiler.source>1.7 </maven .compiler.source>
13
- <maven .compiler.target>1.7 </maven .compiler.target>
12
+ <maven .compiler.source>1.8 </maven .compiler.source>
13
+ <maven .compiler.target>1.8 </maven .compiler.target>
14
14
</properties >
15
15
<build >
16
16
<plugins >
Original file line number Diff line number Diff line change @@ -62,7 +62,8 @@ public String toString() {
62
62
63
63
DataBuilder (Console console , Long outputTimestampMs ) {
64
64
this .console = console ;
65
- this .encoding = ZipEncodingHelper .getZipEncoding (null );
65
+ String empty = null ;
66
+ this .encoding = ZipEncodingHelper .getZipEncoding (empty );
66
67
this .outputTimestampMs = outputTimestampMs ;
67
68
}
68
69
You can’t perform that action at this time.
0 commit comments