Details
-
Type:
Task
-
Status: Resolved (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Component/s: blueocean-autofavorite-plugin
-
Labels:None
-
Similar Issues:
Description
Currently it's not possible to get the PCT run with blueocean-autofavorite-plugin because the pom.xml url is wrong (it's failing with a problem in the git clone). In order to make it work that needs to be fixed by replacing:
{code}
<connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
<developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection>
{code}
with
{code}
<connection>scm:git:https://github.com/jenkinsci/$\{project.artifactId}-plugin.git</connection>
<developerConnection>scm:git:https://github.com/jenkinsci/$\{project.artifactId}-plugin.git</developerConnection>
{code}
Code changed in jenkins
User: Maria Isabel Vilacides
Path:
pom.xml
http://jenkins-ci.org/commit/blueocean-autofavorite-plugin/e7a609b9f9ff05fa40b6f61725b017429842fbaf
Log:
JENKINS-49830Fixing the urls in the poms to be able to execute the PCT (#15)