-
Task
-
Resolution: Fixed
-
Major
-
None
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}