|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
1 | 2 | <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">
|
2 | 3 | <modelVersion>4.0.0</modelVersion>
|
3 | 4 | <parent>
|
4 | 5 | <groupId>org.jenkins-ci.plugins</groupId>
|
5 | 6 | <artifactId>plugin</artifactId>
|
6 |
| - <version>4.74</version> |
| 7 | + <version>4.82</version> |
| 8 | + <relativePath /> |
7 | 9 | </parent>
|
8 | 10 |
|
9 | 11 | <groupId>org.jenkinsci.plugins</groupId>
|
10 | 12 | <artifactId>kubernetes-credentials</artifactId>
|
11 | 13 | <version>${changelist}</version>
|
12 | 14 | <name>Kubernetes Credentials Plugin</name>
|
13 |
| - <url>https://github.com/jenkinsci/kubernetes-credentials-plugin/</url> |
| 15 | + <url>https://github.com/jenkinsci/${project.artifactId}-plugin</url> |
14 | 16 | <packaging>hpi</packaging>
|
15 | 17 |
|
16 | 18 | <scm>
|
17 |
| - <connection>scm:git:https://github.com/jenkinsci/${project.artifactId}-plugin.git</connection> |
18 |
| - < developerConnection>scm:git: ssh://[email protected]/jenkinsci/${project.artifactId}-plugin.git</ developerConnection> |
19 |
| - <url>https://github.com/jenkinsci/${project.artifactId}-plugin</url> |
20 |
| - <tag>kubernetes-credentials-0.11</tag> |
| 19 | + <connection>scm:git:https://github.com/${gitHubRepo}.git</connection> |
| 20 | + < developerConnection>scm:git: [email protected]:${gitHubRepo}.git</ developerConnection> |
| 21 | + <url>https://github.com/${gitHubRepo}</url> |
| 22 | + <tag>${scmTag}</tag> |
21 | 23 | </scm>
|
22 | 24 |
|
23 | 25 | <licenses>
|
|
37 | 39 |
|
38 | 40 | <properties>
|
39 | 41 | <changelist>999999-SNAPSHOT</changelist>
|
| 42 | + <gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo> |
40 | 43 |
|
41 | 44 | <!-- jenkins versions -->
|
42 |
| - <jenkins.version>2.401.1</jenkins.version> |
| 45 | + <jenkins.version>2.401.3</jenkins.version> |
43 | 46 | <bom.artifactId>bom-2.401.x</bom.artifactId>
|
44 |
| - <bom.version>2244.vd60654536b_96</bom.version> |
45 |
| - |
46 |
| - <!-- dependency versions --> |
47 |
| - <authentication-tokens.version>1.53.v1c90fd9191a_b_</authentication-tokens.version> |
48 |
| - <docker-commons.version>439.va_3cb_0a_6a_fb_29</docker-commons.version> |
49 |
| - <google-oauth-plugin.version>1.0.9</google-oauth-plugin.version> |
50 |
| - <kubernetes-client-api.version>6.8.1-224.vd388fca_4db_3b_</kubernetes-client-api.version> |
| 47 | + <bom.version>2745.vc7b_fe4c876fa_</bom.version> |
51 | 48 |
|
52 | 49 | <!-- maven plugins versions -->
|
53 | 50 | <maven-coveralls.version>4.3.0</maven-coveralls.version>
|
54 |
| - <maven-jacoco.version>0.8.10</maven-jacoco.version> |
55 | 51 |
|
56 | 52 | <spotbugs.effort>Max</spotbugs.effort>
|
57 | 53 | <spotbugs.threshold>Low</spotbugs.threshold>
|
|
61 | 57 | <dependency>
|
62 | 58 | <groupId>org.jenkins-ci.plugins</groupId>
|
63 | 59 | <artifactId>kubernetes-client-api</artifactId>
|
64 |
| - <version>${kubernetes-client-api.version}</version> |
65 | 60 | </dependency>
|
66 | 61 | <dependency>
|
67 | 62 | <groupId>org.jenkins-ci.plugins</groupId>
|
|
81 | 76 | <dependency>
|
82 | 77 | <groupId>org.jenkins-ci.plugins</groupId>
|
83 | 78 | <artifactId>authentication-tokens</artifactId>
|
84 |
| - <version>${authentication-tokens.version}</version> |
85 | 79 | </dependency>
|
86 | 80 |
|
87 | 81 | <!-- optional plugins -->
|
|
94 | 88 | <dependency>
|
95 | 89 | <groupId>org.jenkins-ci.plugins</groupId>
|
96 | 90 | <artifactId>google-oauth-plugin</artifactId>
|
97 |
| - <version>${google-oauth-plugin.version}</version> |
98 | 91 | <optional>true</optional>
|
99 | 92 | </dependency>
|
100 | 93 | <dependency>
|
101 | 94 | <groupId>org.jenkins-ci.plugins</groupId>
|
102 | 95 | <artifactId>docker-commons</artifactId>
|
103 |
| - <version>${docker-commons.version}</version> |
104 | 96 | <optional>true</optional>
|
105 | 97 | </dependency>
|
106 | 98 | <dependency>
|
|
126 | 118 | <scope>import</scope>
|
127 | 119 | <type>pom</type>
|
128 | 120 | </dependency>
|
129 |
| - <dependency> |
130 |
| - <groupId>io.jenkins.plugins</groupId> |
131 |
| - <artifactId>okhttp-api</artifactId> |
132 |
| - <version>4.11.0-157.v6852a_a_fa_ec11</version> |
133 |
| - </dependency> |
134 | 121 | </dependencies>
|
135 | 122 | </dependencyManagement>
|
136 | 123 |
|
|
145 | 132 | <plugin>
|
146 | 133 | <groupId>org.jacoco</groupId>
|
147 | 134 | <artifactId>jacoco-maven-plugin</artifactId>
|
148 |
| - <version>${maven-jacoco.version}</version> |
| 135 | + <version>${jacoco-maven-plugin.version}</version> |
149 | 136 | <executions>
|
150 | 137 | <execution>
|
151 | 138 | <id>prepare-agent</id>
|
|
0 commit comments