3
3
<parent >
4
4
<groupId >org.jenkins-ci.plugins</groupId >
5
5
<artifactId >plugin</artifactId >
6
- <version >2.19</version >
6
+ <version >4.54</version >
7
+ <relativePath />
7
8
</parent >
8
-
9
9
<groupId >org.jenkins-ci.plugins</groupId >
10
10
<artifactId >ansible</artifactId >
11
- <version >1.2-SNAPSHOT </version >
11
+ <version >${changelist} </version >
12
12
<packaging >hpi</packaging >
13
13
<name >Jenkins Ansible plugin</name >
14
14
<description >Ansible support in Jenkins</description >
15
- <url >https://github.com/jenkinsci/ansible-plugin</url >
16
-
15
+ <scm >
16
+ <connection >scm:git:git://github.com/${gitHubRepo} .git</connection >
17
+ <
developerConnection >scm:git:
[email protected] :
${gitHubRepo} .git</
developerConnection >
18
+ <url >https://github.com/${gitHubRepo} </url >
19
+ <tag >${scmTag} </tag >
20
+ </scm >
21
+ <properties >
22
+ <changelist >999999-SNAPSHOT</changelist >
23
+ <gitHubRepo >jenkinsci/ansible-plugin</gitHubRepo >
24
+ <jenkins .version>2.361.4</jenkins .version>
25
+ </properties >
17
26
<licenses >
18
27
<license >
19
28
<name >Apache License, Version 2.0</name >
20
29
<url >http://www.apache.org/licenses/LICENSE-2.0.txt</url >
21
30
<distribution >repo</distribution >
22
31
</license >
23
32
</licenses >
24
-
25
- <developers >
26
- <developer >
27
- <id >jcsirot</id >
28
- <name >Jean-Christophe Sirot</name >
29
-
30
- </developer >
31
- </developers >
32
-
33
- <scm >
34
- <connection >scm:git:ssh://github.com/jenkinsci/ansible-plugin.git</connection >
35
- <
developerConnection >scm:git:ssh://
[email protected] /jenkinsci/ansible-plugin.git</
developerConnection >
36
- <url >https://github.com/jenkinsci/ansible-plugin</url >
37
- <tag >HEAD</tag >
38
- </scm >
39
-
40
- <repositories >
41
- <repository >
42
- <id >repo.jenkins-ci.org</id >
43
- <url >https://repo.jenkins-ci.org/public/</url >
44
- </repository >
45
- </repositories >
46
- <pluginRepositories >
47
- <pluginRepository >
48
- <id >repo.jenkins-ci.org</id >
49
- <url >https://repo.jenkins-ci.org/public/</url >
50
- </pluginRepository >
51
- </pluginRepositories >
52
-
33
+ <dependencyManagement >
34
+ <dependencies >
35
+ <dependency >
36
+ <groupId >io.jenkins.tools.bom</groupId >
37
+ <artifactId >bom-2.361.x</artifactId >
38
+ <version >1798.vc671fe94856f</version >
39
+ <scope >import</scope >
40
+ <type >pom</type >
41
+ </dependency >
42
+ </dependencies >
43
+ </dependencyManagement >
53
44
<dependencies >
54
45
<dependency >
55
46
<groupId >org.jenkins-ci.plugins</groupId >
56
47
<artifactId >credentials</artifactId >
57
- <version >${credentials.version} </version >
58
48
</dependency >
59
49
<dependency >
60
50
<groupId >org.jenkins-ci.plugins</groupId >
61
51
<artifactId >ssh-credentials</artifactId >
62
- <version >${ssh-credentials.version} </version >
63
52
</dependency >
64
53
<dependency >
65
54
<groupId >org.jenkins-ci.plugins</groupId >
66
55
<artifactId >plain-credentials</artifactId >
67
- <version >${plain-credentials.version} </version >
68
56
</dependency >
69
57
<dependency >
70
58
<groupId >org.jenkins-ci.plugins.workflow</groupId >
71
59
<artifactId >workflow-step-api</artifactId >
72
- <version >${workflow-step-api.version} </version >
73
60
<optional >true</optional >
74
61
</dependency >
75
62
<dependency >
76
63
<groupId >org.jenkins-ci.plugins</groupId >
77
64
<artifactId >job-dsl</artifactId >
78
- <version >${job-dsl.version} </version >
65
+ <version >1.81 </version >
79
66
<optional >true</optional >
80
67
</dependency >
81
68
<dependency >
82
69
<groupId >org.jenkins-ci</groupId >
83
70
<artifactId >symbol-annotation</artifactId >
84
- <version >${symbol-annotation.version} </version >
85
71
<optional >true</optional >
86
72
</dependency >
87
73
<!-- Test -->
88
74
<dependency >
89
75
<groupId >junit</groupId >
90
76
<artifactId >junit</artifactId >
91
- <version >${junit.version} </version >
92
77
<scope >test</scope >
93
78
</dependency >
94
79
<dependency >
95
80
<groupId >org.assertj</groupId >
96
81
<artifactId >assertj-core</artifactId >
97
- <version >${assertj.version} </version >
82
+ <version >3.24.2</version >
83
+ <scope >test</scope >
98
84
</dependency >
99
85
<dependency >
100
86
<groupId >org.mockito</groupId >
101
- <artifactId >mockito-all</artifactId >
102
- <version >${mockito.version} </version >
87
+ <artifactId >mockito-core</artifactId >
88
+ <version >5.1.0</version >
89
+ <scope >test</scope >
90
+ </dependency >
91
+ <dependency >
92
+ <groupId >org.mockito</groupId >
93
+ <artifactId >mockito-inline</artifactId >
94
+ <version >5.1.0</version >
103
95
<scope >test</scope >
104
96
</dependency >
105
97
</dependencies >
106
-
107
- <build >
108
- <pluginManagement >
109
- <plugins >
110
- <plugin >
111
- <groupId >org.apache.maven.plugins</groupId >
112
- <artifactId >maven-compiler-plugin</artifactId >
113
- <version >${maven-compiler-plugin.version} </version >
114
- <configuration >
115
- <encoding >${project.build.sourceEncoding} </encoding >
116
- <source >1.6</source >
117
- <target >1.6</target >
118
- </configuration >
119
- </plugin >
120
- <plugin >
121
- <groupId >org.apache.maven.plugins</groupId >
122
- <artifactId >maven-resources-plugin</artifactId >
123
- <version >${maven-resources-plugin.version} </version >
124
- <configuration >
125
- <encoding >${project.build.sourceEncoding} </encoding >
126
- </configuration >
127
- </plugin >
128
- <plugin >
129
- <groupId >org.apache.maven.plugins</groupId >
130
- <artifactId >maven-release-plugin</artifactId >
131
- <version >${maven-release-plugin.version} </version >
132
- </plugin >
133
- <plugin >
134
- <groupId >org.apache.commons</groupId >
135
- <artifactId >commons-lang3</artifactId >
136
- <version >${commons-lang.version.version} </version >
137
- </plugin >
138
- </plugins >
139
- </pluginManagement >
140
- <plugins >
141
- <plugin >
142
- <groupId >org.jenkins-ci.tools</groupId >
143
- <artifactId >maven-hpi-plugin</artifactId >
144
- <extensions >true</extensions >
145
- <configuration >
146
- <compatibleSinceVersion >1.0</compatibleSinceVersion >
147
- </configuration >
148
- </plugin >
149
- </plugins >
150
- </build >
151
-
152
- <properties >
153
- <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
154
- <jenkins .version>1.609.1</jenkins .version>
155
- <maven-compiler-plugin .version>3.2</maven-compiler-plugin .version>
156
- <maven-resources-plugin .version>2.6</maven-resources-plugin .version>
157
- <maven-release-plugin .version>2.5.2</maven-release-plugin .version>
158
- <ssh-credentials .version>1.10</ssh-credentials .version>
159
- <plain-credentials .version>1.4</plain-credentials .version>
160
- <credentials .version>2.1.0</credentials .version>
161
- <workflow-step-api .version>1.10</workflow-step-api .version>
162
- <junit .version>4.12</junit .version>
163
- <mockito .version>1.10.19</mockito .version>
164
- <assertj .version>1.7.1</assertj .version>
165
- <commons-lang .version>3.4</commons-lang .version>
166
- <job-dsl .version>1.36</job-dsl .version>
167
- <symbol-annotation .version>1.14</symbol-annotation .version>
168
- </properties >
169
-
170
- </project >
98
+ <repositories >
99
+ <repository >
100
+ <id >repo.jenkins-ci.org</id >
101
+ <url >https://repo.jenkins-ci.org/public/</url >
102
+ </repository >
103
+ </repositories >
104
+ <pluginRepositories >
105
+ <pluginRepository >
106
+ <id >repo.jenkins-ci.org</id >
107
+ <url >https://repo.jenkins-ci.org/public/</url >
108
+ </pluginRepository >
109
+ </pluginRepositories >
110
+ </project >
0 commit comments