Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
// Build the plugin using https://github.com/jenkins-infra/pipeline-library
buildPlugin()
/*
* See the documentation for more options:
* https://github.com/jenkins-infra/pipeline-library/
*/
buildPlugin(
forkCount: '1C', // run this number of tests in parallel for faster feedback. If the number terminates with a 'C', the value will be multiplied by the number of available CPU cores
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
configurations: [
[platform: 'linux', jdk: 11],
[platform: 'windows', jdk: 11],
])
81 changes: 16 additions & 65 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>3.0</version>
<version>4.88</version>
<relativePath />
</parent>

Expand All @@ -25,8 +25,9 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jenkins.version>2.60.3</jenkins.version>
<java.level>8</java.level>
<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
<jenkins.baseline>2.462</jenkins.baseline>
<jenkins.version>${jenkins.baseline}.3</jenkins.version>
<!-- TODO: remove once FindBugs issues are resolved -->
<findbugs.failOnError>false</findbugs.failOnError>
</properties>
Expand All @@ -36,63 +37,6 @@
<url>http://issues.jenkins-ci.org/browse/JENKINS/component/15754</url>
</issueManagement>

<developers>
<developer>
<id>kinow</id>
<name>Bruno P. Kinoshita</name>
<email>brunodepaulak@yahoo.com.br</email>
<timezone>-3</timezone>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<email>cesar.fa@gmail.com</email>
<id>cesar1983</id>
<name>Cesar Fernandes de Almeida</name>
<timezone>-3</timezone>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<email>ftoumikian@april.org</email>
<id>floreal</id>
<name>Floreal Toumikian</name>
<timezone>+1</timezone>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<email>orenault@gmail.com</email>
<id>orenault</id>
<name>Olivier Renault</name>
<timezone>+1</timezone>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<id>omerkel</id>
<name>Oliver Merkel</name>
<email>Merkel.Oliver@web.de</email>
<timezone>+2</timezone>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<id>yachoor</id>
<name>Janusz Chorko</name>
<email>jchorko@gmail.com</email>
<timezone>+1</timezone>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>

<contributors>
<contributor>
<name>Bozenka Miljkovic</name>
Expand All @@ -110,6 +54,17 @@
<timezone>+5</timezone>
</contributor>
</contributors>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-${jenkins.baseline}.x</artifactId>
<version>4228.v0a_71308d905b_</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<build>
<pluginManagement>
Expand Down Expand Up @@ -226,7 +181,7 @@
</build>

<scm>
<connection>scm:git:git://github.com/jenkinsci/testlink-plugin.git</connection>
<connection>scm:git:https://github.com/jenkinsci/testlink-plugin.git</connection>
<developerConnection>scm:git:git@github.com:jenkinsci/testlink-plugin.git</developerConnection>
<url>http://github.com/jenkinsci/testlink-plugin</url>
<tag>HEAD</tag>
Expand All @@ -251,12 +206,10 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.7</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.11</version>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
Expand All @@ -268,7 +221,6 @@
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -291,7 +243,6 @@
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>junit</artifactId>
<version>1.24</version>
</dependency>
</dependencies>

Expand Down