-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
57 lines (54 loc) · 2.35 KB
/
pom.xml
File metadata and controls
57 lines (54 loc) · 2.35 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
[2012] - [2016] Codenvy, S.A.
All Rights Reserved.
NOTICE: All information contained herein is, and remains
the property of Codenvy S.A. and its suppliers,
if any. The intellectual and technical concepts contained
herein are proprietary to Codenvy S.A.
and its suppliers and may be covered by U.S. and Foreign Patents,
patents in process, and are protected by trade secret or copyright law.
Dissemination of this information or reproduction of this material
is strictly forbidden unless prior written permission is obtained
from Codenvy S.A..
-->
<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>
<parent>
<artifactId>codenvy-plugin-parent</artifactId>
<groupId>com.codenvy.plugin</groupId>
<version>4.0.0-RC14-SNAPSHOT</version>
</parent>
<artifactId>codenvy-plugin-webhooks-parent</artifactId>
<packaging>pom</packaging>
<name>Codenvy Plugin :: Webhooks :: Parent</name>
<modules>
<module>codenvy-plugin-webhooks-base</module>
<module>codenvy-plugin-webhooks-github</module>
<module>codenvy-plugin-webhooks-vsts</module>
</modules>
<repositories>
<repository>
<id>codenvy-public-repo</id>
<name>codenvy public</name>
<url>https://maven.codenvycorp.com/content/groups/public/</url>
</repository>
<repository>
<id>codenvy-public-snapshots-repo</id>
<name>codenvy public snapshots</name>
<url>https://maven.codenvycorp.com/content/repositories/codenvy-public-snapshots/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>codenvy-public-repo</id>
<name>codenvy public</name>
<url>https://maven.codenvycorp.com/content/groups/public/</url>
</pluginRepository>
<pluginRepository>
<id>codenvy-public-snapshots-repo</id>
<name>codenvy public snapshots</name>
<url>https://maven.codenvycorp.com/content/repositories/codenvy-public-snapshots/</url>
</pluginRepository>
</pluginRepositories>
</project>