-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpom.xml
118 lines (118 loc) · 4.38 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.confluex</groupId>
<artifactId>zuul-parent</artifactId>
<version>1.7.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Zuul: Parent POM</name>
<url>https://github.com/Confluex/Zuul</url>
<scm>
<connection>scm:git:[email protected]:Confluex/Zuul.git</connection>
<url>scm:git:[email protected]:Confluex/Zuul.git</url>
<developerConnection>scm:git:[email protected]:Confluex/Zuul.git</developerConnection>
<tag>HEAD</tag>
</scm>
<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>
<developers>
<developer>
<id>mcantrell</id>
<name>Mike Cantrell</name>
<email>[email protected]</email>
</developer>
<developer>
<id>psmith</id>
<name>Paul Smith</name>
<email>[email protected]</email>
</developer>
</developers>
<properties>
<base-zuul.version>1.2</base-zuul.version>
</properties>
<parent>
<groupId>com.confluex</groupId>
<artifactId>base-zuul</artifactId>
<version>1.2</version>
<relativePath />
</parent>
<modules>
<module>zuul-data</module>
<module>zuul-web</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.confluex</groupId>
<artifactId>zuul-util</artifactId>
<version>${base-zuul.version}</version>
</dependency>
<dependency>
<groupId>com.confluex</groupId>
<artifactId>zuul-orm</artifactId>
<version>${base-zuul.version}</version>
</dependency>
<dependency>
<groupId>com.confluex</groupId>
<artifactId>zuul-security</artifactId>
<version>${base-zuul.version}</version>
</dependency>
<dependency>
<groupId>com.confluex</groupId>
<artifactId>zuul-error</artifactId>
<version>${base-zuul.version}</version>
</dependency>
<dependency>
<groupId>com.icegreen</groupId>
<artifactId>greenmail</artifactId>
<version>1.3.1b</version>
</dependency>
<dependency>
<groupId>org.jasypt</groupId>
<artifactId>jasypt</artifactId>
<version>1.9.0</version>
</dependency>
<dependency>
<groupId>org.jasypt</groupId>
<artifactId>jasypt-spring31</artifactId>
<version>1.9.0</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-ext-jdk15on</artifactId>
<version>1.47</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpg-jdk15on</artifactId>
<version>1.47</version>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>sonatype</id>
<build>
<plugins>
<!-- temp hack to not use pgp plugin defined in dev null parent pom until that dev null parent project gets converted -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase />
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>