Skip to content

Commit c0e5dc7

Browse files
gountharubuntu
authored andcommitted
chore(pom): Use recommended core version 2.462.3, and Java 11.
1 parent 58839f0 commit c0e5dc7

File tree

3 files changed

+24
-14
lines changed

3 files changed

+24
-14
lines changed

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 & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,22 @@
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>
2022
<url>https://github.com/jenkinsci/testingbot-plugin</url>
21-
<developers>
22-
<developer>
23-
<id>testingbot</id>
24-
<name>Jochen Delabie</name>
25-
<email>info@testingbot.com</email>
26-
</developer>
27-
</developers>
2823
<build>
2924
<plugins>
3025
<plugin>
@@ -67,8 +62,8 @@
6762
<dependencies>
6863
<dependency>
6964
<groupId>io.jenkins.tools.bom</groupId>
70-
<artifactId>bom-2.235.x</artifactId>
71-
<version>25</version>
65+
<artifactId>bom-${jenkins.baseline}.x</artifactId>
66+
<version>4228.v0a_71308d905b_</version>
7267
<scope>import</scope>
7368
<type>pom</type>
7469
</dependency>
@@ -110,7 +105,6 @@
110105
<dependency>
111106
<groupId>junit</groupId>
112107
<artifactId>junit</artifactId>
113-
<version>4.13.2</version>
114108
<scope>test</scope>
115109
</dependency>
116110
<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)