Skip to content

Commit 701a423

Browse files
coreydaleyopenshift-merge-robot
authored andcommitted
updating JenkinsFile and pom.xml
1 parent b88060b commit 701a423

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

Jenkinsfile

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
#!/usr/bin/env groovy
2-
3-
/* `buildPlugin` step provided by: https://github.com/jenkins-infra/pipeline-library */
4-
buildPlugin()
1+
/*
2+
See the documentation for more options:
3+
https://github.com/jenkins-infra/pipeline-library/
4+
*/
5+
buildPlugin(
6+
useContainerAgent: true,
7+
configurations: [
8+
[platform: 'linux', jdk: 11],
9+
[platform: 'windows', jdk: 11],
10+
])

pom.xml

+5-4
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<revision>1.1.0</revision>
1616
<changelist>999999-SNAPSHOT</changelist>
1717
<jenkins.version>2.387.2</jenkins.version>
18-
<java.level>11</java.level>
1918
<log.level>INFO</log.level>
2019
</properties>
2120

2221
<name>OpenShift Login Plugin</name>
22+
<description>Allows login to Jenkins using OpenShift as an SSO.</description>
2323
<url>https://plugins.jenkins.io/openshift-login/</url>
2424

2525
<organization>
@@ -35,9 +35,10 @@
3535
</licenses>
3636

3737
<scm>
38-
<connection>scm:git:https://github.com/jenkinsci/openshift-login-plugin.git</connection>
39-
<url>https://github.com/jenkinsci/openshift-login-plugin</url>
40-
<tag>HEAD</tag>
38+
<connection>scm:git:https://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
39+
<developerConnection>scm:git:https://github.com/jenkinsci/${project.artifactId}-plugin.git</developerConnection>
40+
<url>https://github.com/jenkinsci/${project.artifactId}-plugin/</url>
41+
<tag>${scmTag}</tag>
4142
</scm>
4243

4344
<distributionManagement>

0 commit comments

Comments
 (0)