|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + ~ The MIT License |
| 4 | + ~ |
| 5 | + ~ Copyright (c) 2016, CloudBees, Inc. |
| 6 | + ~ |
| 7 | + ~ Permission is hereby granted, free of charge, to any person obtaining a copy |
| 8 | + ~ of this software and associated documentation files (the "Software"), to deal |
| 9 | + ~ in the Software without restriction, including without limitation the rights |
| 10 | + ~ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 11 | + ~ copies of the Software, and to permit persons to whom the Software is |
| 12 | + ~ furnished to do so, subject to the following conditions: |
| 13 | + ~ |
| 14 | + ~ The above copyright notice and this permission notice shall be included in |
| 15 | + ~ all copies or substantial portions of the Software. |
| 16 | + ~ |
| 17 | + ~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 18 | + ~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 19 | + ~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 20 | + ~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 21 | + ~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 22 | + ~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 23 | + ~ THE SOFTWARE. |
| 24 | + --> |
| 25 | +<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"> |
| 26 | + <modelVersion>4.0.0</modelVersion> |
| 27 | + |
| 28 | + <parent> |
| 29 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 30 | + <artifactId>plugin</artifactId> |
| 31 | + <version>3.2</version> |
| 32 | + <relativePath /> |
| 33 | + </parent> |
| 34 | + |
| 35 | + <artifactId>skip-notifications-trait-plugin</artifactId> |
| 36 | + <version>1.0.0-SNAPSHOT</version> |
| 37 | + <packaging>hpi</packaging> |
| 38 | + |
| 39 | + <name>Skip Notifications Trait plugin</name> |
| 40 | + <url>https://wiki.jenkins.io/display/JENKINS/Bitbucket+Branch+Source+Plugin</url> |
| 41 | + <description>This is an extension for Bitbucket Branch Source Plugin, which allows to skip notifying BitBucket instance about build statuses.</description> |
| 42 | + <licenses> |
| 43 | + <license> |
| 44 | + <name>MIT License</name> |
| 45 | + <url>https://opensource.org/licenses/MIT</url> |
| 46 | + </license> |
| 47 | + </licenses> |
| 48 | + |
| 49 | + <properties> |
| 50 | + <jenkins.version>1.642.3</jenkins.version> |
| 51 | + <java.level>7</java.level> |
| 52 | + <branchsource.version>2.2.0</branchsource.version> |
| 53 | + <scm-api.version>2.2.0</scm-api.version> |
| 54 | + <git.version>3.6.0</git.version> |
| 55 | + </properties> |
| 56 | + |
| 57 | + <developers> |
| 58 | + <developer> |
| 59 | + <id>alex-dubrouski</id> |
| 60 | + <name>Alex Dubrouski</name> |
| 61 | + </developer> |
| 62 | + </developers> |
| 63 | + |
| 64 | + <scm> |
| 65 | + <connection>scm:git:git://github.com/jenkinsci/skip-notifications-trait-plugin.git</connection> |
| 66 | + < developerConnection>scm:git: [email protected]:jenkinsci/skip-notifications-trait-plugin.git</ developerConnection> |
| 67 | + <url>https://github.com/jenkinsci/skip-notifications-trait-plugin</url> |
| 68 | + <tag>HEAD</tag> |
| 69 | + </scm> |
| 70 | + |
| 71 | + <dependencyManagement> |
| 72 | + <dependencies> |
| 73 | + <dependency> |
| 74 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 75 | + <artifactId>scm-api</artifactId> |
| 76 | + <version>${scm-api.version}</version> |
| 77 | + </dependency> |
| 78 | + <dependency> |
| 79 | + <groupId>com.jcraft</groupId> |
| 80 | + <artifactId>jsch</artifactId> |
| 81 | + <version>0.1.53</version> |
| 82 | + </dependency> |
| 83 | + <dependency> |
| 84 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 85 | + <artifactId>workflow-scm-step</artifactId> |
| 86 | + <version>2.2</version> |
| 87 | + </dependency> |
| 88 | + <dependency> |
| 89 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 90 | + <artifactId>workflow-support</artifactId> |
| 91 | + <version>2.6</version> |
| 92 | + </dependency> |
| 93 | + </dependencies> |
| 94 | + </dependencyManagement> |
| 95 | + <dependencies> |
| 96 | + <dependency> |
| 97 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 98 | + <artifactId>cloudbees-bitbucket-branch-source</artifactId> |
| 99 | + <version>${branchsource.version}</version> |
| 100 | + </dependency> |
| 101 | + <dependency> |
| 102 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 103 | + <artifactId>apache-httpcomponents-client-4-api</artifactId> |
| 104 | + <version>4.5.3-2.0</version> |
| 105 | + </dependency> |
| 106 | + <dependency> |
| 107 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 108 | + <artifactId>structs</artifactId> |
| 109 | + <version>1.10</version> |
| 110 | + </dependency> |
| 111 | + <dependency> |
| 112 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 113 | + <artifactId>scm-api</artifactId> |
| 114 | + </dependency> |
| 115 | + <dependency> |
| 116 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 117 | + <artifactId>git</artifactId> |
| 118 | + <version>${git.version}</version> |
| 119 | + <exclusions> |
| 120 | + <exclusion> |
| 121 | + <groupId>org.apache.httpcomponents</groupId> |
| 122 | + <artifactId>httpclient</artifactId> |
| 123 | + </exclusion> |
| 124 | + </exclusions> |
| 125 | + </dependency> |
| 126 | + <dependency> |
| 127 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 128 | + <artifactId>mercurial</artifactId> |
| 129 | + <version>2.0</version> |
| 130 | + </dependency> |
| 131 | + <dependency> |
| 132 | + <groupId>org.codehaus.jackson</groupId> |
| 133 | + <artifactId>jackson-jaxrs</artifactId> |
| 134 | + <version>1.9.13</version> |
| 135 | + </dependency> |
| 136 | + <dependency> |
| 137 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 138 | + <artifactId>display-url-api</artifactId> |
| 139 | + <version>0.2</version> |
| 140 | + </dependency> |
| 141 | + <dependency> |
| 142 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 143 | + <artifactId>branch-api</artifactId> |
| 144 | + <version>2.0.11</version> |
| 145 | + <scope>test</scope> |
| 146 | + </dependency> |
| 147 | + <dependency> |
| 148 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 149 | + <artifactId>scm-api</artifactId> |
| 150 | + <version>${scm-api.version}</version> |
| 151 | + <classifier>tests</classifier> |
| 152 | + <scope>test</scope> |
| 153 | + </dependency> |
| 154 | + <dependency> |
| 155 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 156 | + <artifactId>handy-uri-templates-2-api</artifactId> |
| 157 | + <version>2.1.6-1.0</version> |
| 158 | + </dependency> |
| 159 | + <dependency> |
| 160 | + <groupId>org.mockito</groupId> |
| 161 | + <artifactId>mockito-core</artifactId> |
| 162 | + <version>1.10.19</version> |
| 163 | + <scope>test</scope> |
| 164 | + </dependency> |
| 165 | + <dependency> |
| 166 | + <groupId>org.hamcrest</groupId> |
| 167 | + <artifactId>hamcrest-core</artifactId> |
| 168 | + <version>1.3</version> |
| 169 | + <scope>test</scope> |
| 170 | + </dependency> |
| 171 | + <dependency> |
| 172 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 173 | + <artifactId>git</artifactId> |
| 174 | + <version>${git.version}</version> |
| 175 | + <classifier>tests</classifier> |
| 176 | + <scope>test</scope> |
| 177 | + </dependency> |
| 178 | + <dependency> |
| 179 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 180 | + <artifactId>workflow-multibranch</artifactId> |
| 181 | + <version>2.11</version> |
| 182 | + <scope>test</scope> |
| 183 | + </dependency> |
| 184 | + </dependencies> |
| 185 | + |
| 186 | + <repositories> |
| 187 | + <repository> |
| 188 | + <id>repo.jenkins-ci.org</id> |
| 189 | + <url>http://repo.jenkins-ci.org/public/</url> |
| 190 | + </repository> |
| 191 | + </repositories> |
| 192 | + <pluginRepositories> |
| 193 | + <pluginRepository> |
| 194 | + <id>repo.jenkins-ci.org</id> |
| 195 | + <url>https://repo.jenkins-ci.org/public/</url> |
| 196 | + </pluginRepository> |
| 197 | + </pluginRepositories> |
| 198 | + |
| 199 | + <build> |
| 200 | + <plugins> |
| 201 | + <plugin> |
| 202 | + <groupId>org.jenkins-ci.tools</groupId> |
| 203 | + <artifactId>maven-hpi-plugin</artifactId> |
| 204 | + <executions> |
| 205 | + <execution> |
| 206 | + <goals> |
| 207 | + <goal>generate-taglib-interface</goal> |
| 208 | + </goals> |
| 209 | + </execution> |
| 210 | + </executions> |
| 211 | + <configuration> |
| 212 | + <compatibleSinceVersion>2.0.0</compatibleSinceVersion> |
| 213 | + </configuration> |
| 214 | + </plugin> |
| 215 | + <plugin> <!-- TODO scm-api gratuitously restricts deprecated APIs, preventing us from compiling even deprecated classes in *this* plugin --> |
| 216 | + <groupId>org.kohsuke</groupId> |
| 217 | + <artifactId>access-modifier-checker</artifactId> |
| 218 | + <executions> |
| 219 | + <execution> |
| 220 | + <id>default-enforce</id> |
| 221 | + <phase /> <!-- https://stackoverflow.com/a/19540026/12916 --> |
| 222 | + </execution> |
| 223 | + </executions> |
| 224 | + </plugin> |
| 225 | + </plugins> |
| 226 | + </build> |
| 227 | + |
| 228 | +</project> |
0 commit comments