|
4 | 4 | <parent>
|
5 | 5 | <groupId>org.jenkins-ci.plugins</groupId>
|
6 | 6 | <artifactId>plugin</artifactId>
|
7 |
| - <version>3.37</version> |
| 7 | + <version>4.42</version> |
8 | 8 | <relativePath />
|
9 | 9 | </parent>
|
10 | 10 |
|
|
28 | 28 | </scm>
|
29 | 29 |
|
30 | 30 | <properties>
|
31 |
| - <jenkins.version>2.222.3</jenkins.version> |
| 31 | + <jenkins.version>2.289.3</jenkins.version> |
32 | 32 | <java.level>8</java.level>
|
33 | 33 | </properties>
|
34 |
| - <name>Bitbucket Credentials - Kubernetes Intergration</name> |
| 34 | + <name>Bitbucket Credentials - Kubernetes Integration</name> |
35 | 35 | <description>Integrates bitbucket credentials with the k8s credential provider</description>
|
36 | 36 | <licenses>
|
37 | 37 | <license>
|
38 | 38 | <name>MIT License</name>
|
39 | 39 | <url>https://opensource.org/licenses/MIT</url>
|
40 | 40 | </license>
|
41 | 41 | </licenses>
|
| 42 | + <dependencyManagement> |
| 43 | + <dependencies> |
| 44 | + <dependency> |
| 45 | + <groupId>io.jenkins.tools.bom</groupId> |
| 46 | + <artifactId>bom-2.289.x</artifactId> |
| 47 | + <version>1438.v6a_2c29d73f82</version> |
| 48 | + <scope>import</scope> |
| 49 | + <type>pom</type> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>io.jenkins.plugins</groupId> |
| 53 | + <artifactId>atlassian-bitbucket-server-integration</artifactId> |
| 54 | + <version>3.2.2</version> |
| 55 | + <exclusions> |
| 56 | + <exclusion> |
| 57 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 58 | + <artifactId>jackson-annotations</artifactId> |
| 59 | + </exclusion> |
| 60 | + <exclusion> |
| 61 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 62 | + <artifactId>jackson-databind</artifactId> |
| 63 | + </exclusion> |
| 64 | + <exclusion> |
| 65 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 66 | + <artifactId>jackson-core</artifactId> |
| 67 | + </exclusion> |
| 68 | + <exclusion> |
| 69 | + <groupId>org.jenkins-ci</groupId> |
| 70 | + <artifactId>trilead-ssh2</artifactId> |
| 71 | + </exclusion> |
| 72 | + </exclusions> |
| 73 | + </dependency> |
| 74 | + <dependency> |
| 75 | + <groupId>com.cloudbees.jenkins.plugins</groupId> |
| 76 | + <artifactId>kubernetes-credentials-provider</artifactId> |
| 77 | + <version>0.20</version> |
| 78 | + </dependency> |
| 79 | + </dependencies> |
| 80 | + </dependencyManagement> |
42 | 81 | <dependencies>
|
43 | 82 | <dependency>
|
44 | 83 | <groupId>com.cloudbees.jenkins.plugins</groupId>
|
45 | 84 | <artifactId>kubernetes-credentials-provider</artifactId>
|
46 |
| - <version>0.14</version> |
47 | 85 | </dependency>
|
48 | 86 | <dependency>
|
49 | 87 | <groupId>io.jenkins.plugins</groupId>
|
50 | 88 | <artifactId>atlassian-bitbucket-server-integration</artifactId>
|
51 |
| - <version>1.1.0</version> |
52 | 89 | </dependency>
|
53 |
| - <dependency> |
54 |
| - <groupId>org.jenkins-ci.plugins</groupId> |
55 |
| - <artifactId>ssh-credentials</artifactId> |
56 |
| - <version>1.14</version> |
57 |
| - </dependency> |
58 |
| - <!-- logging --> |
59 |
| - <dependency> |
60 |
| - <groupId>org.slf4j</groupId> |
61 |
| - <artifactId>slf4j-api</artifactId> |
62 |
| - <version>1.7.26</version> |
63 |
| - </dependency> |
64 |
| - <dependency> |
65 |
| - <groupId>org.slf4j</groupId> |
66 |
| - <artifactId>jcl-over-slf4j</artifactId> |
67 |
| - <version>1.7.26</version> |
68 |
| - </dependency> |
69 |
| - <dependency> |
70 |
| - <groupId>org.slf4j</groupId> |
71 |
| - <artifactId>slf4j-jdk14</artifactId> |
72 |
| - <version>1.7.26</version> |
73 |
| - </dependency> |
74 |
| - <dependency> |
75 |
| - <groupId>org.slf4j</groupId> |
76 |
| - <artifactId>log4j-over-slf4j</artifactId> |
77 |
| - <version>1.7.26</version> |
78 |
| - </dependency> |
79 |
| - |
80 |
| - |
81 |
| - <!-- https://mvnrepository.com/artifact/org.jenkins-ci.plugins/credentials --> |
82 |
| - <dependency> |
83 |
| - <groupId>org.jenkins-ci.plugins</groupId> |
84 |
| - <artifactId>credentials</artifactId> |
85 |
| - <version>2.3.1</version> |
86 |
| - </dependency> |
87 |
| - |
88 | 90 | <dependency>
|
89 | 91 | <groupId>org.mockito</groupId>
|
90 | 92 | <artifactId>mockito-core</artifactId>
|
91 |
| - <version>3.3.3</version> |
92 |
| - <scope>test</scope> |
93 |
| - </dependency> |
94 |
| - <dependency> |
95 |
| - <groupId>org.powermock</groupId> |
96 |
| - <artifactId>powermock-core</artifactId> |
97 |
| - <version>2.0.7</version> |
| 93 | + <version>4.6.1</version> |
98 | 94 | <scope>test</scope>
|
99 | 95 | </dependency>
|
100 | 96 | <dependency>
|
101 |
| - <groupId>org.powermock</groupId> |
102 |
| - <artifactId>powermock-api-mockito2</artifactId> |
103 |
| - <version>2.0.7</version> |
104 |
| - <scope>test</scope> |
105 |
| - </dependency> |
106 |
| - <dependency> |
107 |
| - <groupId>org.powermock</groupId> |
108 |
| - <artifactId>powermock-module-junit4</artifactId> |
109 |
| - <version>2.0.7</version> |
| 97 | + <groupId>org.mockito</groupId> |
| 98 | + <artifactId>mockito-inline</artifactId> |
| 99 | + <version>4.6.1</version> |
110 | 100 | <scope>test</scope>
|
111 | 101 | </dependency>
|
112 | 102 | </dependencies>
|
|
0 commit comments