Files
java-tutorials/hazelcast/pom.xml
T

39 lines
1.2 KiB
XML
Raw Normal View History

2016-09-03 11:32:42 +07:00
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2018-07-12 12:34:54 +05:30
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2018-04-26 18:07:47 +05:30
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung</groupId>
<artifactId>hazelcast</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>hazelcast</name>
2016-09-03 11:32:42 +07:00
2018-04-26 18:07:47 +05:30
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
2017-05-12 20:32:54 +02:00
2018-04-26 18:07:47 +05:30
<dependencies>
2018-08-07 13:14:21 +05:30
<!-- Hazelcast Jet -->
<dependency>
<groupId>com.hazelcast.jet</groupId>
<artifactId>hazelcast-jet</artifactId>
<version>${hazelcast.jet.version}</version>
</dependency>
2018-04-26 18:07:47 +05:30
</dependencies>
2017-05-12 20:32:54 +02:00
2018-04-26 18:07:47 +05:30
<build>
<finalName>hazelcast</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
2016-09-03 11:32:42 +07:00
2018-04-26 18:07:47 +05:30
<properties>
2018-08-07 13:14:21 +05:30
<!-- hazelcast jet-->
<hazelcast.jet.version>0.6</hazelcast.jet.version>
2018-04-26 18:07:47 +05:30
</properties>
2016-09-03 11:32:42 +07:00
</project>