2022-08-08 09:26:55 -04: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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-08-19 02:34:58 -04:00
|
|
|
<artifactId>core-java-concurrency-simple</artifactId>
|
|
|
|
<name>core-java-concurrency-simple</name>
|
2022-08-08 09:26:55 -04:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.core-java-modules</groupId>
|
|
|
|
<artifactId>core-java-modules</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
2023-09-25 23:05:04 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.wiremock</groupId>
|
|
|
|
<artifactId>wiremock</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2022-08-08 09:26:55 -04:00
|
|
|
<build>
|
2022-08-19 02:34:58 -04:00
|
|
|
<finalName>core-java-concurrency-simple</finalName>
|
2022-08-08 09:26:55 -04:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2022-10-06 11:13:29 -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.version}</source>
|
|
|
|
<target>${maven.compiler.target.version}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2022-08-08 09:26:55 -04:00
|
|
|
</build>
|
|
|
|
|
2022-10-06 11:13:29 -04:00
|
|
|
<properties>
|
|
|
|
<maven.compiler.source.version>17</maven.compiler.source.version>
|
|
|
|
<maven.compiler.target.version>17</maven.compiler.target.version>
|
|
|
|
</properties>
|
|
|
|
|
2022-08-08 09:26:55 -04:00
|
|
|
</project>
|