-
Notifications
You must be signed in to change notification settings - Fork 393
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' as of 2025-01-16 into …
…refrepo-args Signed-off-by: Evgeny Klimov <[email protected]>
- Loading branch information
Showing
17 changed files
with
190 additions
and
91 deletions.
There are no files selected for viewing
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,7 +1,11 @@ | ||
*.adoc text eol=lf | ||
*.config text eol=lf | ||
*.html text eol=lf | ||
*.in text eol=lf | ||
*.java text eol=lf | ||
*.jelly text eol=lf | ||
*.md text eol=lf | ||
*.properties text eol=lf | ||
*.sh text eol=lf | ||
*.xml text eol=lf | ||
*.yaml text eol=lf | ||
*.yml text eol=lf |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
<parent> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>plugin</artifactId> | ||
<version>5.2</version> | ||
<version>5.5</version> | ||
<relativePath /> | ||
</parent> | ||
|
||
|
@@ -24,27 +24,6 @@ | |
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<id>markewaite</id> | ||
<name>Mark Waite</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<id>rsandell</id> | ||
<name>Robert Sandell</name> | ||
<email>[email protected]</email> | ||
<url>http://rsandell.com</url> | ||
</developer> | ||
<developer> | ||
<id>olamy</id> | ||
<name>Olivier Lamy</name> | ||
<email>[email protected]</email> | ||
<url>https://about.me/olamy</url> | ||
<timezone>Australia/Brisbane</timezone> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:https://github.com/${gitHubRepo}</connection> | ||
<developerConnection>scm:git:[email protected]:${gitHubRepo}.git</developerConnection> | ||
|
@@ -72,7 +51,7 @@ | |
<dependency> | ||
<groupId>io.jenkins.tools.bom</groupId> | ||
<artifactId>bom-${jenkins.baseline}.x</artifactId> | ||
<version>3559.vb_5b_81183b_d23</version> | ||
<version>3893.v213a_42768d35</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
|
@@ -212,7 +191,7 @@ | |
<dependency> | ||
<groupId>io.github.sparsick.testcontainers.gitserver</groupId> | ||
<artifactId>testcontainers-gitserver</artifactId> | ||
<version>0.10.0</version> | ||
<version>0.11.0</version> | ||
<scope>test</scope> | ||
<exclusions> | ||
<exclusion> | ||
|
@@ -234,7 +213,7 @@ | |
<dependency> | ||
<groupId>nl.jqno.equalsverifier</groupId> | ||
<artifactId>equalsverifier</artifactId> | ||
<version>3.17.1</version> | ||
<version>3.18.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
|
@@ -270,7 +249,7 @@ | |
<dependency> | ||
<groupId>org.testcontainers</groupId> | ||
<artifactId>testcontainers</artifactId> | ||
<version>1.20.3</version> | ||
<version>1.20.4</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
@@ -291,13 +270,28 @@ | |
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<!-- Needed by the mockito-core properties reference in surefire --> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-dependency-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>properties</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<configuration> | ||
<systemPropertyVariables> | ||
<org.jenkinsci.plugins.gitclient.verifier.SshHostKeyVerificationStrategy.jgit_known_hosts_file>${project.build.directory}/ssh/know_hosts</org.jenkinsci.plugins.gitclient.verifier.SshHostKeyVerificationStrategy.jgit_known_hosts_file> | ||
</systemPropertyVariables> | ||
<!-- Add mockito javaagent for the MockitoJUnitRunner in Java 21 and beyond --> | ||
<!-- https://javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/Mockito.html#0.3 --> | ||
<argLine>@{argLine} -javaagent:${org.mockito:mockito-core:jar}</argLine> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -225,7 +225,6 @@ public void setGitClient() throws Exception { | |
"https://github.com/jenkinsci/archetypes.git", | ||
"https://git.assembla.com/git-plugin.3.git", | ||
"https://[email protected]/markewaite/jenkins-pipeline-utils.git", | ||
"https://jenkins-git-plugin.git.beanstalkapp.com/git-client-plugin.git", | ||
"https://gitlab.com/MarkEWaite/git-client-plugin.git", | ||
"origin" | ||
}; | ||
|
Oops, something went wrong.