Skip to content

Commit

Permalink
Refresh plugin (#291)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed Nov 12, 2022
1 parent a8a9485 commit b4d3432
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 21 deletions.
22 changes: 4 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to Jenkins CI under one or more contributor license
Expand Down Expand Up @@ -25,7 +26,8 @@ under the License.
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.49</version>
<version>4.50</version>
<relativePath />
</parent>

<artifactId>saml</artifactId>
Expand All @@ -35,7 +37,7 @@ under the License.
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>

<scm>
<connection>scm:git:git://github.com/${gitHubRepo}.git</connection>
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection>
<developerConnection>scm:git:git@github.com:${gitHubRepo}.git</developerConnection>
<url>https://github.com/${gitHubRepo}</url>
<tag>${scmTag}</tag>
Expand Down Expand Up @@ -219,30 +221,18 @@ under the License.
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>jackson2-api</artifactId>
<version>2.13.4.20221013-295.v8e29ea_354141</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>java-hamcrest</artifactId>
<version>2.0.0.0</version>
<scope>test</scope>
</dependency>
<!-- JCasC compatibility -->
<dependency>
<groupId>io.jenkins</groupId>
<artifactId>configuration-as-code</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.jenkins.configuration-as-code</groupId>
<artifactId>test-harness</artifactId>
Expand Down Expand Up @@ -274,10 +264,6 @@ under the License.
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.cryptacular</groupId>
<artifactId>cryptacular</artifactId>
</dependency>
<dependency>
<groupId>org.apache.santuario</groupId>
<artifactId>xmlsec</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,6 @@ public static FormValidation checkEmailFormat(String value, String message) {
catch (AddressException ae) {
return FormValidation.error(message);
}
catch (NullPointerException ne) {
return FormValidation.warning(message);
}

return FormValidation.ok();

Expand Down

0 comments on commit b4d3432

Please sign in to comment.