| 
									
										
										
										
											2023-08-29 08:32:19 +02:00
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							|  |  |  | <project xmlns="http://maven.apache.org/POM/4.0.0" | 
					
						
							| 
									
										
										
										
											2023-10-19 15:24:46 +05:30
										 |  |  |     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 08:32:19 +02: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 22:41:22 +03:30
										 |  |  |     <dependencies> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.bouncycastle</groupId> | 
					
						
							| 
									
										
										
										
											2023-11-12 17:46:52 +02:00
										 |  |  |             <artifactId>bcpkix-jdk18on</artifactId> | 
					
						
							| 
									
										
										
										
											2023-09-10 22:41:22 +03:30
										 |  |  |             <version>${bouncycastle.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.cryptacular</groupId> | 
					
						
							|  |  |  |             <artifactId>cryptacular</artifactId> | 
					
						
							|  |  |  |             <version>${cryptacular.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |     </dependencies> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <properties> | 
					
						
							| 
									
										
										
										
											2023-11-12 17:46:52 +02:00
										 |  |  |         <bouncycastle.version>1.76</bouncycastle.version> | 
					
						
							| 
									
										
										
										
											2023-09-10 22:41:22 +03:30
										 |  |  |         <cryptacular.version>1.2.6</cryptacular.version> | 
					
						
							|  |  |  |     </properties> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-09 06:08:14 +03: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 08:32:19 +02:00
										 |  |  | </project> |