2022-01-16 07:07:09 -05:00
|
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>maven-to-gradle</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2022-11-17 13:56:06 -05:00
|
|
|
|
2022-01-16 07:07:09 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2022-11-17 13:56:06 -05:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>3.12.0</version>
|
2022-01-16 07:07:09 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2022-11-17 13:56:06 -05:00
|
|
|
|
2023-06-23 03:39:53 -04:00
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
2022-11-17 13:56:06 -05:00
|
|
|
</project>
|