У меня есть проект maven, который использует buildnumber-maven-plugin
, и я изменил свой git remote при перемещении проекта с GitLab на GitHub, но теперь, когда я пытаюсь запустить mvn clean install
, я получаю ошибку
ssh: Could not resolve hostname github.com:lukebrewerton: Name or service not known
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
Но я могу клонировать репозиторий GH, используя мою командную строку, push / pull и т. Д., Это просто команда maven, которая не работает.
Мой pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.socialgamer</groupId>
<artifactId>pyx</artifactId>
<version>0.7.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>pyx</name>
<scm>
<url>https://github.com/lukebrewerton/cahds</url>
<connection>scm:git:ssh://git@github.com:lukebrewerton/cahds.git</connection>
<developerConnection>scm:git:ssh://git@github.com:lukebrewerton/cahds.git</developerConnection>
</scm>
....
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<doCheck>true</doCheck>
<doUpdate>true</doUpdate>
<revisionOnScmFailure>0</revisionOnScmFailure>
<shortRevisionLength>7</shortRevisionLength>
</configuration>
</plugin>