2016-06-17 21 views
0

ich den Code heruntergeladen habenKann ODL SDN-Controller-Code nicht erstellen?

git clone https://git.opendaylight.org/gerrit/p/integration/distribution.git 

Verwendung Wenn ich versuche, diese zu bauen, zeigt es Fehler folgen.

[INFO] Scanning for projects... 
[ERROR] [ERROR] Some problems were encountered while processing the POMs: 
[FATAL] Non-resolvable parent POM for org.opendaylight.integration:root:0.5.0-SNAPSHOT: Could not find artifact org.opendaylight.odlparent:odlparent:pom:1.7.0-SNAPSHOT and 'parent.relativePath' points at no local POM @ line 4, column 11 
@ 
[ERROR] The build could not read 1 project -> [Help 1] 
[ERROR] 
[ERROR] The project org.opendaylight.integration:root:0.5.0-SNAPSHOT (/home/controller/distribution/pom.xml) has 1 error 
[ERROR]  Non-resolvable parent POM for org.opendaylight.integration:root:0.5.0-SNAPSHOT: Could not find artifact org.opendaylight.odlparent:odlparent:pom:1.7.0-SNAPSHOT and 'parent.relativePath' points at no local POM @ line 4, column 11 -> [Help 2] 
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. 
[ERROR] Re-run Maven using the -X switch to enable full debug logging. 
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles: 
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException 

Antwort

0

Ja, Ihre settings.xml sollte aktualisiert werden. Eine alternative Art und Weise (obwohl gleiches Ergebnis wie oben) der Aktualisierung:

Führen Sie diesen von Ihrem Terminal:
cp -n ~/.m2/settings.xml{,.orig} ; \wget -q -O - https://raw.githubusercontent.com/opendaylight/odlparent/master/settings.xml > ~/.m2/settings.xml

Wie stephen vorgeschlagen, kann Pfad basierend auf dem Betriebssystem unterschiedlich sein. Ändern Sie es entsprechend.

+0

Danke. Es funktioniert jetzt. –