2016-09-03 00:32:42 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2016-10-07 12:04:36 -04:00
|
|
|
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>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>hazelcast</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>hazelcast</name>
|
2016-09-03 00:32:42 -04:00
|
|
|
|
2017-05-09 16:37:43 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2017-05-12 14:32:54 -04:00
|
|
|
</parent>
|
|
|
|
|
2016-10-07 12:04:36 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.hazelcast</groupId>
|
|
|
|
<artifactId>hazelcast</artifactId>
|
|
|
|
<version>${hazelcast.version}</version>
|
|
|
|
</dependency>
|
2017-05-12 14:32:54 -04:00
|
|
|
|
2016-10-07 12:04:36 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.hazelcast</groupId>
|
|
|
|
<artifactId>hazelcast-client</artifactId>
|
2017-09-02 04:43:10 -04:00
|
|
|
<version>${hazelcast.version}</version>
|
2016-10-07 12:04:36 -04:00
|
|
|
</dependency>
|
2016-09-03 00:32:42 -04:00
|
|
|
|
2016-10-07 12:04:36 -04:00
|
|
|
</dependencies>
|
2016-09-03 00:32:42 -04:00
|
|
|
|
2016-10-07 12:04:36 -04:00
|
|
|
<build>
|
|
|
|
<finalName>hazelcast</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
2016-09-03 00:32:42 -04:00
|
|
|
|
2016-10-07 12:04:36 -04:00
|
|
|
<properties>
|
|
|
|
<!-- hazelcast -->
|
2017-09-02 04:43:10 -04:00
|
|
|
<hazelcast.version>3.8.4</hazelcast.version>
|
2016-10-07 12:04:36 -04:00
|
|
|
</properties>
|
2016-09-03 00:32:42 -04:00
|
|
|
|
|
|
|
</project>
|