| 
									
										
										
										
											2022-08-28 18:53:06 +02:00
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							|  |  |  | <project xmlns="http://maven.apache.org/POM/4.0.0" | 
					
						
							| 
									
										
										
										
											2022-11-18 00:26:06 +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"> | 
					
						
							| 
									
										
										
										
											2022-08-28 18:53:06 +02:00
										 |  |  |     <modelVersion>4.0.0</modelVersion> | 
					
						
							|  |  |  |     <artifactId>core-java-string-operations-5</artifactId> | 
					
						
							|  |  |  |     <name>core-java-string-operations-5</name> | 
					
						
							|  |  |  |     <packaging>jar</packaging> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <parent> | 
					
						
							|  |  |  |         <groupId>com.baeldung.core-java-modules</groupId> | 
					
						
							|  |  |  |         <artifactId>core-java-modules</artifactId> | 
					
						
							|  |  |  |         <version>0.0.1-SNAPSHOT</version> | 
					
						
							|  |  |  |     </parent> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-20 03:31:27 +02:00
										 |  |  |     <dependencies> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.apache.commons</groupId> | 
					
						
							|  |  |  |             <artifactId>commons-lang3</artifactId> | 
					
						
							|  |  |  |             <version>${apache.commons.lang3.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2022-11-27 19:28:44 -03:00
										 |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.apache.commons</groupId> | 
					
						
							|  |  |  |             <artifactId>commons-text</artifactId> | 
					
						
							|  |  |  |             <version>${commons-text.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2022-10-20 03:31:27 +02:00
										 |  |  |     </dependencies> | 
					
						
							| 
									
										
										
										
											2022-11-18 00:26:06 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-28 18:53:06 +02:00
										 |  |  |     <build> | 
					
						
							|  |  |  |         <plugins> | 
					
						
							|  |  |  |             <plugin> | 
					
						
							|  |  |  |                 <groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  |                 <artifactId>maven-compiler-plugin</artifactId> | 
					
						
							|  |  |  |                 <configuration> | 
					
						
							|  |  |  |                     <source>${maven.compiler.source}</source> | 
					
						
							|  |  |  |                     <target>${maven.compiler.target}</target> | 
					
						
							|  |  |  |                 </configuration> | 
					
						
							|  |  |  |             </plugin> | 
					
						
							|  |  |  |         </plugins> | 
					
						
							|  |  |  |     </build> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <properties> | 
					
						
							|  |  |  |         <maven.compiler.source>11</maven.compiler.source> | 
					
						
							|  |  |  |         <maven.compiler.target>11</maven.compiler.target> | 
					
						
							| 
									
										
										
										
											2022-10-20 03:31:27 +02:00
										 |  |  |         <apache.commons.lang3.version>3.12.0</apache.commons.lang3.version> | 
					
						
							| 
									
										
										
										
											2022-11-27 19:28:44 -03:00
										 |  |  |         <commons-text.version>1.10.0</commons-text.version> | 
					
						
							| 
									
										
										
										
											2022-08-28 18:53:06 +02:00
										 |  |  |     </properties> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </project> |