-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
73 lines (69 loc) · 2.29 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
<?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>org.holodeckb2b.extensions</groupId>
<artifactId>pullrequest-trigger</artifactId>
<version>2.0.0</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<name>Holodeck B2B Pull Request trigger Extension</name>
<description>
This project contains the Holodeck B2B extension that allows the "Consumer" application to trigger
sending of a PullRequest.
</description>
<inceptionYear>2018</inceptionYear>
<url>http://holodeck-b2b.org</url>
<scm>
<url>https://github.com/holodeck-b2b/pullrequest-trigger</url>
<connection>scm:git:https://github.com/holodeck-b2b/pullrequest-trigger</connection>
</scm>
<organization>
<name>The Holodeck B2B Team</name>
<url>http://www.holodeck-b2b.org/team</url>
</organization>
<developers>
<developer>
<name>Sander Fieten</name>
<organization>Chasquis</organization>
<organizationUrl>http://chasquis-consulting.com/holodeck-b2b-support/</organizationUrl>
<email>sander at chasquis-consulting.com/</email>
<roles>
<role>Architect</role>
<role>Lead developer</role>
</roles>
<timezone>Europe/Amsterdam</timezone>
</developer>
</developers>
<licenses>
<license>
<name>GNU General Public License v3</name>
<url>http://www.gnu.org/licenses/gpl-3.0.html</url>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>org.holodeckb2b</groupId>
<artifactId>holodeckb2b-core</artifactId>
<version>5.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.simpleframework</groupId>
<artifactId>simple-xml</artifactId>
<version>2.7.1</version>
</dependency>
<!-- Dependencies for testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<version>4.9</version>
</dependency>
</dependencies>
</project>