| 
									
										
										
										
											2023-08-25 20:12:50 +03:00
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							|  |  |  | <project xmlns="http://maven.apache.org/POM/4.0.0" | 
					
						
							| 
									
										
										
										
											2023-11-09 16:48:02 +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-25 20:12:50 +03:00
										 |  |  |     <modelVersion>4.0.0</modelVersion> | 
					
						
							| 
									
										
										
										
											2023-11-09 16:48:02 +05:30
										 |  |  |     <artifactId>junit-5-basics-2</artifactId> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-25 20:12:50 +03:00
										 |  |  |     <parent> | 
					
						
							|  |  |  |         <groupId>com.baeldung</groupId> | 
					
						
							|  |  |  |         <artifactId>parent-modules</artifactId> | 
					
						
							|  |  |  |         <version>1.0.0-SNAPSHOT</version> | 
					
						
							|  |  |  |     </parent> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <dependencies> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>commons-cli</groupId> | 
					
						
							|  |  |  |             <artifactId>commons-cli</artifactId> | 
					
						
							|  |  |  |             <version>${commons-cli.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.junit.jupiter</groupId> | 
					
						
							|  |  |  |             <artifactId>junit-jupiter-api</artifactId> | 
					
						
							|  |  |  |             <version>${junit-jupiter-api.version}</version> | 
					
						
							|  |  |  |             <scope>test</scope> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.mockito</groupId> | 
					
						
							|  |  |  |             <artifactId>mockito-core</artifactId> | 
					
						
							|  |  |  |             <version>${mockito-core.version}</version> | 
					
						
							|  |  |  |             <scope>test</scope> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |     </dependencies> | 
					
						
							| 
									
										
										
										
											2023-11-09 16:48:02 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-25 20:12:50 +03:00
										 |  |  |     <build> | 
					
						
							|  |  |  |         <plugins> | 
					
						
							|  |  |  |             <plugin> | 
					
						
							|  |  |  |                 <groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  |                 <artifactId>maven-compiler-plugin</artifactId> | 
					
						
							|  |  |  |                 <configuration> | 
					
						
							|  |  |  |                     <source>11</source> | 
					
						
							|  |  |  |                     <target>11</target> | 
					
						
							|  |  |  |                 </configuration> | 
					
						
							|  |  |  |             </plugin> | 
					
						
							|  |  |  |         </plugins> | 
					
						
							|  |  |  |     </build> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <properties> | 
					
						
							|  |  |  |         <maven.compiler.source>11</maven.compiler.source> | 
					
						
							|  |  |  |         <maven.compiler.target>11</maven.compiler.target> | 
					
						
							|  |  |  |         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 
					
						
							|  |  |  |         <commons-cli.version>1.5.0</commons-cli.version> | 
					
						
							|  |  |  |         <junit-jupiter-api.version>5.10.0</junit-jupiter-api.version> | 
					
						
							| 
									
										
										
										
											2023-09-03 23:00:52 +03:00
										 |  |  |         <mockito-core.version>5.5.0</mockito-core.version> | 
					
						
							| 
									
										
										
										
											2023-08-25 20:12:50 +03:00
										 |  |  |     </properties> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </project> |