-
-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable Spotless for code formatting (#720)
- Loading branch information
Showing
179 changed files
with
1,541 additions
and
1,521 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
buildPlugin(timeout: 90, useContainerAgent: true, configurations: [ | ||
buildPlugin(timeout: 120, useContainerAgent: true, configurations: [ | ||
[platform: 'linux', jdk: 17], | ||
]) |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,169 +1,162 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>build-monitor</artifactId> | ||
<version>${revision}-${changelist}</version> | ||
</parent> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>build-monitor</artifactId> | ||
<version>${revision}-${changelist}</version> | ||
</parent> | ||
|
||
<artifactId>build-monitor-acceptance</artifactId> | ||
<packaging>jar</packaging> | ||
<artifactId>build-monitor-acceptance</artifactId> | ||
<packaging>jar</packaging> | ||
<name>Build Monitor Acceptance Tests</name> | ||
|
||
<name>Build Monitor Acceptance Tests</name> | ||
|
||
<properties> | ||
<serenity.version>3.6.22</serenity.version> | ||
<slf4j.version>2.0.7</slf4j.version> | ||
</properties> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.eclipse.jetty</groupId> | ||
<artifactId>jetty-bom</artifactId> | ||
<version>11.0.14</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.10.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.inject</groupId> | ||
<artifactId>guice</artifactId> | ||
<version>5.1.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.thoughtworks.xstream</groupId> | ||
<artifactId>xstream</artifactId> | ||
<version>1.4.20</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.httpcomponents</groupId> | ||
<artifactId>httpclient</artifactId> | ||
<version>4.5.14</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.objenesis</groupId> | ||
<artifactId>objenesis</artifactId> | ||
<version>3.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>${slf4j.version}</version> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
<properties> | ||
<serenity.version>3.6.22</serenity.version> | ||
<slf4j.version>2.0.7</slf4j.version> | ||
</properties> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.jenkins-ci.main</groupId> | ||
<artifactId>cli</artifactId> | ||
<version>${jenkins.version}</version> | ||
</dependency> | ||
|
||
<!-- serenity --> | ||
<dependency> | ||
<groupId>net.serenity-bdd</groupId> | ||
<artifactId>serenity-core</artifactId> | ||
<version>${serenity.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.jetbrains</groupId> | ||
<artifactId>annotations</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.serenity-bdd</groupId> | ||
<artifactId>serenity-screenplay</artifactId> | ||
<version>${serenity.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.serenity-bdd</groupId> | ||
<artifactId>serenity-screenplay-webdriver</artifactId> | ||
<version>${serenity.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.serenity-bdd</groupId> | ||
<artifactId>serenity-junit</artifactId> | ||
<version>${serenity.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<!-- / serenity --> | ||
|
||
<dependency> | ||
<groupId>org.jdeferred</groupId> | ||
<artifactId>jdeferred-core</artifactId> | ||
<version>1.2.6</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.github.zafarkhaja</groupId> | ||
<artifactId>java-semver</artifactId> | ||
<version>0.9.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-simple</artifactId> | ||
<version>${slf4j.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.jetty</groupId> | ||
<artifactId>jetty-bom</artifactId> | ||
<version>11.0.14</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.10.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.inject</groupId> | ||
<artifactId>guice</artifactId> | ||
<version>5.1.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.thoughtworks.xstream</groupId> | ||
<artifactId>xstream</artifactId> | ||
<version>1.4.20</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.httpcomponents</groupId> | ||
<artifactId>httpclient</artifactId> | ||
<version>4.5.14</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.objenesis</groupId> | ||
<artifactId>objenesis</artifactId> | ||
<version>3.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>${slf4j.version}</version> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.github.zafarkhaja</groupId> | ||
<artifactId>java-semver</artifactId> | ||
<version>0.9.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.serenity-bdd</groupId> | ||
<artifactId>serenity-core</artifactId> | ||
<version>${serenity.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.jetbrains</groupId> | ||
<artifactId>annotations</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.serenity-bdd</groupId> | ||
<artifactId>serenity-screenplay</artifactId> | ||
<version>${serenity.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.serenity-bdd</groupId> | ||
<artifactId>serenity-screenplay-webdriver</artifactId> | ||
<version>${serenity.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jdeferred</groupId> | ||
<artifactId>jdeferred-core</artifactId> | ||
<version>1.2.6</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jenkins-ci.main</groupId> | ||
<artifactId>cli</artifactId> | ||
<version>${jenkins.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-simple</artifactId> | ||
<version>${slf4j.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.serenity-bdd</groupId> | ||
<artifactId>serenity-junit</artifactId> | ||
<version>${serenity.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<configuration> | ||
<includes> | ||
<include>**/*UnitTest.java</include> | ||
<include>**/features/*Test.java</include> | ||
<include>**/features/*Should*.java</include> | ||
</includes> | ||
<systemPropertyVariables> | ||
<jenkins.version>${jenkins.version}</jenkins.version> | ||
<project.root>../</project.root> | ||
<settings.localRepository>${settings.localRepository}</settings.localRepository> | ||
<wdm.chromeDriverVersion>110</wdm.chromeDriverVersion> | ||
</systemPropertyVariables> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>net.serenity-bdd.maven.plugins</groupId> | ||
<artifactId>serenity-maven-plugin</artifactId> | ||
<version>${serenity.version}</version> | ||
<executions> | ||
<execution> | ||
<id>serenity-reports</id> | ||
<phase>post-integration-test</phase> | ||
<goals> | ||
<goal>aggregate</goal> | ||
</goals> | ||
<configuration> | ||
<generateOutcomes>true</generateOutcomes> | ||
<outputDirectory>target/site/serenity</outputDirectory> | ||
<sourceDirectory>target/site/serenity</sourceDirectory> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<configuration> | ||
<includes> | ||
<include>**/*UnitTest.java</include> | ||
<include>**/features/*Test.java</include> | ||
<include>**/features/*Should*.java</include> | ||
</includes> | ||
<systemPropertyVariables> | ||
<jenkins.version>${jenkins.version}</jenkins.version> | ||
<project.root>../</project.root> | ||
<settings.localRepository>${settings.localRepository}</settings.localRepository> | ||
<wdm.chromeDriverVersion>110</wdm.chromeDriverVersion> | ||
</systemPropertyVariables> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>net.serenity-bdd.maven.plugins</groupId> | ||
<artifactId>serenity-maven-plugin</artifactId> | ||
<version>${serenity.version}</version> | ||
<executions> | ||
<execution> | ||
<id>serenity-reports</id> | ||
<goals> | ||
<goal>aggregate</goal> | ||
</goals> | ||
<phase>post-integration-test</phase> | ||
<configuration> | ||
<generateOutcomes>true</generateOutcomes> | ||
<outputDirectory>target/site/serenity</outputDirectory> | ||
<sourceDirectory>target/site/serenity</sourceDirectory> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.