forked from deftlabs/mongo-java-distributed-lock
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpom.xml
85 lines (78 loc) · 2.76 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.deftlabs</groupId>
<artifactId>mongo-java-distributed-lock</artifactId>
<packaging>jar</packaging>
<name>Mongo Java Distributed Lock</name>
<version>0.1.7</version>
<description>A distributed lock backed by MongoDB</description>
<url>https://deftlabs.com</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/deftlabs</url>
</scm>
<dependencies>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>[3.2.0,)</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.4.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<version>1.5.3</version>
<executions>
<execution>
<phase>process-sources</phase>
<goals>
<goal>replace</goal>
</goals>
</execution>
</executions>
<configuration>
<ignoreMissingFile>true</ignoreMissingFile>
<file>src/main/java/com/deftlabs/lock/mongo/DistributedLockSvcOptions.java</file>
<outputFile>src/main/java/com/deftlabs/lock/mongo/DistributedLockSvcOptions.java</outputFile>
<regex>false</regex>
<token>@LIB_VERSION@</token>
<value>${project.version}</value>
</configuration>
</plugin>
</plugins>
</build>
<developers>
<developer>
<name>Ryan Nitz</name>
<organization>Deft Labs</organization>
</developer>
</developers>
</project>