2023-10-26 02:18:01 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>core-java-string-operations-7</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2024-03-15 17:54:51 -04:00
|
|
|
<name>core-java-string-operations-7</name>
|
2023-10-26 02:18:01 -04:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.core-java-modules</groupId>
|
|
|
|
<artifactId>core-java-modules</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>${apache.commons.lang3.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-text</artifactId>
|
|
|
|
<version>${commons-text.version}</version>
|
|
|
|
</dependency>
|
2024-01-14 07:46:57 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
|
|
|
<version>${apache.commons.collection.version}</version>
|
2023-10-26 02:18:01 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<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>
|
2024-04-21 17:29:58 -04:00
|
|
|
|
2023-10-26 02:18:01 -04:00
|
|
|
<apache.commons.lang3.version>3.13.0</apache.commons.lang3.version>
|
2024-01-14 07:46:57 -05:00
|
|
|
<apache.commons.collection.version>4.4</apache.commons.collection.version>
|
2023-12-21 21:07:48 -05:00
|
|
|
<apache.tika.version>2.9.1</apache.tika.version>
|
2023-10-26 02:18:01 -04:00
|
|
|
<commons-text.version>1.10.0</commons-text.version>
|
2023-12-21 21:07:48 -05:00
|
|
|
<icu4j.version>74.1</icu4j.version>
|
2023-10-26 02:18:01 -04:00
|
|
|
</properties>
|
|
|
|
|
2023-10-15 18:25:13 -04:00
|
|
|
</project>
|