Skip to content

Instantly share code, notes, and snippets.

@nhojpatrick
nhojpatrick / jenkins_listView.groovy
Created February 21, 2021 14:14
Jenkins create listView with CodeCoverage and Regex pattern
listView('release job view') {
recurse()
jobs {
regex('.*_release')
}
columns {
status()
weather()
buildButton()
name()
@nhojpatrick
nhojpatrick / pom.xml
Last active March 20, 2022 11:04
Maven Surefire and JUnit v5
<?xml version="1.0" encoding="UTF-8"?>
<project ...
...
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M5</version>