Skip to content

Commit 5b9f139

Browse files
committed
build: restore argLine to fix code coverage
Partially reverts da4fffc
1 parent da4fffc commit 5b9f139

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

pom.xml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

55
<groupId>de.stklcode.jvault</groupId>
@@ -43,13 +43,14 @@
4343

4444
<properties>
4545
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
46+
<argLine />
4647
</properties>
4748

4849
<dependencies>
4950
<dependency>
5051
<groupId>com.fasterxml.jackson.core</groupId>
5152
<artifactId>jackson-databind</artifactId>
52-
<version>2.19.1</version>
53+
<version>2.19.1</version>
5354
</dependency>
5455
<dependency>
5556
<groupId>com.fasterxml.jackson.datatype</groupId>
@@ -128,7 +129,9 @@
128129
<version>3.5.3</version>
129130
<configuration>
130131
<argLine>
131-
--add-opens de.stklcode.jvault.connector/de.stklcode.jvault.connector.test=com.fasterxml.jackson.databind
132+
@{argLine}
133+
--add-opens
134+
de.stklcode.jvault.connector/de.stklcode.jvault.connector.test=com.fasterxml.jackson.databind
132135
</argLine>
133136
</configuration>
134137
</plugin>
@@ -158,6 +161,7 @@
158161
<version>3.5.3</version>
159162
<configuration>
160163
<argLine>
164+
@{argLine}
161165
--add-opens java.base/java.util=ALL-UNNAMED
162166
</argLine>
163167
</configuration>

0 commit comments

Comments
 (0)