Commit 7d1b520 1 parent 8de1115 commit 7d1b520 Copy full SHA for 7d1b520
File tree 5 files changed +25
-42
lines changed
src/test/java/hudson/plugins/release
5 files changed +25
-42
lines changed Original file line number Diff line number Diff line change 1
- // Build the plugin using https://github.com/jenkins-infra/pipeline-library
2
- buildPlugin()
1
+ /*
2
+ See the documentation for more options:
3
+ https://github.com/jenkins-infra/pipeline-library/
4
+ */
5
+ buildPlugin(
6
+ useContainerAgent : true , // Set to `false` if you need to use Docker for containerized tests
7
+ configurations : [
8
+ [platform : ' linux' , jdk : 17 ],
9
+ [platform : ' windows' , jdk : 11 ],
10
+ ])
Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >org.jenkins-ci.plugins</groupId >
6
6
<artifactId >plugin</artifactId >
7
- <version >4.31 </version >
7
+ <version >4.66 </version >
8
8
</parent >
9
9
<artifactId >release</artifactId >
10
10
<packaging >hpi</packaging >
16
16
<url >https://github.com/jenkinsci/release-plugin</url >
17
17
18
18
<properties >
19
- <jenkins .version>2.308 </jenkins .version>
19
+ <jenkins .version>2.387.3 </jenkins .version>
20
20
<java .level>8</java .level>
21
21
</properties >
22
22
26
26
<url >https://github.com/jenkinsci/release-plugin</url >
27
27
<tag >HEAD</tag >
28
28
</scm >
29
- <developers >
30
- <developer >
31
- <id >petehayes</id >
32
- <name >Peter Hayes</name >
33
- <email >petehayes@gmail.com</email >
34
- <timezone >-6</timezone >
35
- <roles >
36
- <role >creator (inactive)</role >
37
- </roles >
38
- </developer >
39
- <developer >
40
- <id >oleg_nenashev</id >
41
- <name >Oleg Nenashev</name >
42
- <roles >
43
- <role >maintainer (retired)</role >
44
- </roles >
45
- </developer >
46
- <developer >
47
- <id >christ66</id >
48
- <name >Steven Christou</name >
49
- <roles >
50
- <role >maintainer</role >
51
- </roles >
52
- </developer >
53
- </developers >
54
29
55
30
<dependencyManagement >
56
31
<dependencies >
57
32
<dependency >
58
33
<groupId >io.jenkins.tools.bom</groupId >
59
- <artifactId >bom-2.303 .x</artifactId >
60
- <version >1008.vb9e22885c9cf </version >
34
+ <artifactId >bom-2.387 .x</artifactId >
35
+ <version >2133.v2e6c00fe4d61 </version >
61
36
<scope >import</scope >
62
37
<type >pom</type >
63
38
</dependency >
Original file line number Diff line number Diff line change 1
1
package hudson .plugins .release ;
2
2
3
- import com . gargoylesoftware .htmlunit .html .HtmlCheckBoxInput ;
4
- import com . gargoylesoftware .htmlunit .html .HtmlForm ;
5
- import com . gargoylesoftware .htmlunit .html .HtmlPage ;
3
+ import org .htmlunit .html .HtmlCheckBoxInput ;
4
+ import org .htmlunit .html .HtmlForm ;
5
+ import org .htmlunit .html .HtmlPage ;
6
6
7
7
import org .junit .Ignore ;
8
8
import org .jvnet .hudson .test .JenkinsRule ;
Original file line number Diff line number Diff line change 11
11
import org .jvnet .hudson .test .JenkinsRule ;
12
12
import org .jvnet .hudson .test .MockBuilder ;
13
13
14
- import com . gargoylesoftware .htmlunit .html .HtmlForm ;
14
+ import org .htmlunit .html .HtmlForm ;
15
15
16
16
import hudson .Launcher ;
17
17
import hudson .model .AbstractBuild ;
Original file line number Diff line number Diff line change 23
23
*/
24
24
package hudson .plugins .release ;
25
25
26
- import com . gargoylesoftware .htmlunit .FailingHttpStatusCodeException ;
27
- import com . gargoylesoftware .htmlunit .HttpMethod ;
28
- import com . gargoylesoftware .htmlunit .Page ;
29
- import com . gargoylesoftware .htmlunit .WebRequest ;
30
- import com . gargoylesoftware .htmlunit .html .HtmlCheckBoxInput ;
31
- import com . gargoylesoftware .htmlunit .html .HtmlForm ;
32
- import com . gargoylesoftware .htmlunit .html .HtmlPage ;
26
+ import org .htmlunit .FailingHttpStatusCodeException ;
27
+ import org .htmlunit .HttpMethod ;
28
+ import org .htmlunit .Page ;
29
+ import org .htmlunit .WebRequest ;
30
+ import org .htmlunit .html .HtmlCheckBoxInput ;
31
+ import org .htmlunit .html .HtmlForm ;
32
+ import org .htmlunit .html .HtmlPage ;
33
33
import hudson .model .FreeStyleProject ;
34
34
import org .apache .http .HttpStatus ;
35
35
import org .junit .Assert ;
You can’t perform that action at this time.
0 commit comments