2023-08-29 02:32:19 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2023-10-19 05:54:46 -04:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2023-08-29 02:32:19 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>core-java-security-4</artifactId>
|
|
|
|
<name>core-java-security-4</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.core-java-modules</groupId>
|
|
|
|
<artifactId>core-java-modules</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
2023-09-10 15:11:22 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
2023-11-12 10:46:52 -05:00
|
|
|
<artifactId>bcpkix-jdk18on</artifactId>
|
2023-09-10 15:11:22 -04:00
|
|
|
<version>${bouncycastle.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.cryptacular</groupId>
|
|
|
|
<artifactId>cryptacular</artifactId>
|
|
|
|
<version>${cryptacular.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
2023-11-12 10:46:52 -05:00
|
|
|
<bouncycastle.version>1.76</bouncycastle.version>
|
2023-09-10 15:11:22 -04:00
|
|
|
<cryptacular.version>1.2.6</cryptacular.version>
|
|
|
|
</properties>
|
|
|
|
|
2024-01-08 22:08:14 -05:00
|
|
|
<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>
|
|
|
|
|
2023-08-29 02:32:19 -04:00
|
|
|
</project>
|