forked from 440/mongodb-maven-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
98 lines (88 loc) · 2.98 KB
/
pom.xml
File metadata and controls
98 lines (88 loc) · 2.98 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.wenzani</groupId>
<artifactId>mongodb-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>1.0-PING</version>
<name>mongodb-maven-plugin Maven Mojo</name>
<url>http://maven.apache.org</url>
<distributionManagement>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>art01</id>
<name>art01-releases</name>
<url>http://art01.corp.pingidentity.com:8080/artifactory/inhouse</url>
</repository>
<snapshotRepository>
<id>art01</id>
<name>art01-snapshots</name>
<url>http://art01.corp.pingidentity.com:8080/artifactory/inhouse</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
<!-- Commons IO -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.0.1</version>
</dependency>
<!-- Commons IO -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.1</version>
</dependency>
<!-- Commons Lang -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<!--httpcomponents-->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.1.1</version>
</dependency>
<!-- MongoDB Driver -->
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>2.5.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-plugin-plugin</artifactId>
<version>2.3</version>
<configuration>
<goalPrefix>mongodb</goalPrefix>
</configuration>
</plugin>
</plugins>
</build>
<developers>
<developer>
<id>stuartrexking</id>
<name>Stuart King</name>
<email>stuart@wenzani.com</email>
<organization>Wenzani</organization>
<roles>
<role>CTO</role>
</roles>
</developer>
</developers>
</project>