forked from hazelcast/hazelcast-code-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
24 lines (20 loc) · 934 Bytes
/
pom.xml
File metadata and controls
24 lines (20 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>
<packaging>jar</packaging>
<artifactId>fenced-lock-auto-release-on-shutdown</artifactId>
<name>CP Subsystem - Auto-release of FencedLock on Lock Holder Shutdown</name>
<description>
CP Subsystem - FencedLock is Auto-released when the Lock Holder Shuts Down
</description>
<parent>
<groupId>com.hazelcast.samples.cp</groupId>
<artifactId>cp-subsystem</artifactId>
<version>0.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<properties>
<!-- needed for checkstyle/findbugs -->
<main.basedir>${project.parent.parent.basedir}</main.basedir>
</properties>
</project>