| Currently it's not possible to get the PCT run with blueocean-autofavorite-plugin because the pom.xml url is wrong. 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:g...@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} |