2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-06 10:23:35 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2020-03-15 08:52:24 -04:00
|
|
|
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">
|
2019-10-30 18:09:06 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2019-12-05 09:56:52 -05:00
|
|
|
<artifactId>core-java-9-improvements</artifactId>
|
|
|
|
<name>core-java-9-improvements</name>
|
2019-10-30 18:09:06 -04:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2023-09-13 05:28:47 -04:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
2019-10-30 18:09:06 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.jayway.awaitility</groupId>
|
|
|
|
<artifactId>awaitility</artifactId>
|
|
|
|
<version>${awaitility.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>${guava.version}</version>
|
|
|
|
</dependency>
|
2020-05-19 16:24:05 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>${commons-io.version}</version>
|
|
|
|
</dependency>
|
2019-10-30 18:09:06 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.platform</groupId>
|
|
|
|
<artifactId>junit-platform-runner</artifactId>
|
2021-10-29 00:07:04 -04:00
|
|
|
<version>${junit-platform.version}</version>
|
2019-10-30 18:09:06 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2019-12-05 09:56:52 -05:00
|
|
|
<finalName>core-java-9-improvements</finalName>
|
2019-10-30 18:09:06 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
<target>${maven.compiler.target}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>apache.snapshots</id>
|
2020-07-07 07:18:10 -04:00
|
|
|
<url>https://repository.apache.org/snapshots/</url>
|
2019-10-30 18:09:06 -04:00
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<awaitility.version>1.7.0</awaitility.version>
|
|
|
|
<maven.compiler.source>1.9</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.9</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
2021-05-06 10:23:35 -04:00
|
|
|
</project>
|