2022-02-20 22:51:08 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-05-08 16:36:25 +05:30
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2023-04-05 07:14:09 +05:30
|
|
|
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">
|
2022-02-20 22:51:08 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>multi-module-caching</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2022-02-25 09:54:42 +01:00
|
|
|
<description>Multi-module Maven caching example</description>
|
2022-02-20 22:51:08 +01:00
|
|
|
<packaging>pom</packaging>
|
2022-02-20 22:51:08 +01:00
|
|
|
|
2022-05-08 16:36:25 +05:30
|
|
|
<modules>
|
2023-04-15 10:01:14 +05:30
|
|
|
<module>runner-module</module>
|
|
|
|
<module>core-module</module>
|
2022-05-08 16:36:25 +05:30
|
|
|
</modules>
|
|
|
|
|
2022-02-20 22:51:08 +01:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2022-05-15 08:53:05 +02:00
|
|
|
<version>${guava.version}</version>
|
2022-02-20 22:51:08 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2022-02-20 22:51:08 +01:00
|
|
|
<properties>
|
2023-11-12 18:10:31 +02:00
|
|
|
<guava.version>32.1.3-jre</guava.version>
|
2022-02-20 22:51:08 +01:00
|
|
|
</properties>
|
|
|
|
|
2022-05-08 16:36:25 +05:30
|
|
|
</project>
|