BAEL-7340 Using Custom TrustStore in Java (#15562)
* BAEL-6953 implemented * BAEL-6953 added live test * Fixed test * BAEL-7340 Using Custom TrustStore in Java * BAEL-7340 Added explicit --add-exports statement for core-java-security-4
This commit is contained in:
committed by
GitHub
parent
b467eb65f6
commit
7a14fcdb32
@@ -31,4 +31,30 @@
|
||||
<cryptacular.version>1.2.6</cryptacular.version>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<configuration>
|
||||
<argLine>--add-opens java.base/sun.security.x509=ALL-UNNAMED</argLine>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<configuration>
|
||||
<target>17</target>
|
||||
<source>17</source>
|
||||
<compilerArgs>
|
||||
<arg>--add-exports</arg>
|
||||
<arg>java.base/sun.security.x509=ALL-UNNAMED</arg>
|
||||
</compilerArgs>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
Reference in New Issue
Block a user