-
Notifications
You must be signed in to change notification settings - Fork 28
/
pom.xml
104 lines (96 loc) · 3.12 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
<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>netwolfuk.teamcity.plugins.tcwebhooks</groupId>
<artifactId>tcwebhooks</artifactId>
<properties>
<majorVersion>2.0.1</majorVersion>
<buildNumber>snapshot</buildNumber>
<gitHash>${GIT_HASH}</gitHash>
<gitBranch>${GIT_BRANCH}</gitBranch>
<currentVersion>${majorVersion}-build.${buildNumber}</currentVersion>
<!-- Set the TeamCity version, so that we reference these jars in Maven -->
<teamcityVersion>2019.1</teamcityVersion>
<teamcityServerVersion>2018.2.1</teamcityServerVersion>
<springframework.version>4.3.17.RELEASE</springframework.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junitVersion>4.13.1</junitVersion>
</properties>
<version>${currentVersion}</version>
<name>tcWebHooks - A WebHooks plugin for TeamCity</name>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.6</version>
<configuration>
<check/>
<formats>
<format>html</format>
<format>xml</format>
</formats>
<aggregate>true</aggregate>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.0.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<repositories>
<repository>
<id>JetBrains</id>
<url>https://download.jetbrains.com/teamcity-repository/</url>
</repository>
</repositories>
<developers>
<developer>
<id>netwolfuk</id>
<name>Net Wolf</name>
<url>http://netwolfuk.wordpress.com</url>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
</developers>
<packaging>pom</packaging>
<modules>
<module>tcwebhooks-core</module>
<module>tcwebhooks-rest-api</module>
<module>tcwebhooks-rest-api-legacy</module>
<module>tcwebhooks-web-ui</module>
</modules>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.12</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>