Skip to content

Commit 5877d19

Browse files
committed
chore(pom): Require 2.462.3
1 parent 58839f0 commit 5877d19

3 files changed

Lines changed: 24 additions & 7 deletions

File tree

Jenkinsfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
See the documentation for more options:
3+
https://github.com/jenkins-infra/pipeline-library/
4+
*/
5+
buildPlugin(
6+
forkCount: '1C', // Run a JVM per core in tests
7+
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
8+
configurations: [
9+
[platform: 'linux', jdk: 11],
10+
[platform: 'windows', jdk: 8]
11+
]
12+
)

pom.xml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,18 @@
44
<parent>
55
<groupId>org.jenkins-ci.plugins</groupId>
66
<artifactId>plugin</artifactId>
7-
<version>4.16</version>
7+
<version>4.88</version>
8+
<relativePath />
89
</parent>
910
<properties>
10-
<jenkins.version>2.338</jenkins.version>
11-
<java.level>8</java.level>
11+
<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
12+
<jenkins.baseline>2.462</jenkins.baseline>
13+
<jenkins.version>${jenkins.baseline}.3</jenkins.version>
1214
<hudsonTags>buildwrapper</hudsonTags>
1315
<findbugs.skip>true</findbugs.skip>
1416
</properties>
1517
<scm>
16-
<connection>scm:git:git://github.com/jenkinsci/testingbot-plugin.git</connection>
18+
<connection>scm:git:https://github.com/jenkinsci/testingbot-plugin.git</connection>
1719
<developerConnection>scm:git:git@github.com:jenkinsci/testingbot-plugin.git</developerConnection>
1820
<tag>testingbot-1.20-SNAPSHOT</tag>
1921
</scm>
@@ -67,8 +69,8 @@
6769
<dependencies>
6870
<dependency>
6971
<groupId>io.jenkins.tools.bom</groupId>
70-
<artifactId>bom-2.235.x</artifactId>
71-
<version>25</version>
72+
<artifactId>bom-${jenkins.baseline}.x</artifactId>
73+
<version>4023.va_eeb_b_4e45f07</version>
7274
<scope>import</scope>
7375
<type>pom</type>
7476
</dependency>
@@ -110,7 +112,6 @@
110112
<dependency>
111113
<groupId>junit</groupId>
112114
<artifactId>junit</artifactId>
113-
<version>4.13.2</version>
114115
<scope>test</scope>
115116
</dependency>
116117
<dependency>

src/main/resources/index.jelly

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?jelly escape-by-default='true'?>
2+
<div>
3+
This plugin integrates videos/screenshots of your TestingBot.com Selenium tests
4+
</div>

0 commit comments

Comments
 (0)