Failed to execute goal on project logging.bridge: Could not resolve dependencies for project
I'm using
- ubuntu 14.04,
- maven 3.3.9 and
- jdk 1.7.0_45
Problem:
When i run mvn clean install
i get this error:
[ERROR] Failed to execute goal on project logging.bridge: Could not resolve dependencies for project org.opendaylight.controller:logging.bridge:bundle:0.4.1-1-SNAPSHOT: Failure to find org.opendaylight.yangtools:mockito-configuration:jar:0.6.1-1-SNAPSHOT in https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/ was cached in the local repository, resolution will not be reattempted until the update interval of opendaylight-snapshot has elapsed or updates are forced -> [Help 1]
[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/DependencyResolutionException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn <goals> -rf :logging.bridge
my parent pom.xml is :
<?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>
- <parent>
<groupId>org.opendaylight.controller</groupId>
<artifactId>commons.parent</artifactId>
<version>1.0.1-1-SNAPSHOT</version>
<relativePath>opendaylight/commons/parent</relativePath>
</parent>
<artifactId>releasepom</artifactId>
<version>0.1.1-1-SNAPSHOT</version>
<packaging>pom</packaging>
- <prerequisites>
<maven>3.0</maven>
</prerequisites>
- <modules>
<module>opendaylight/distribution/opendaylight</module>
<module>opendaylight/forwarding/staticrouting</module>
<module>opendaylight/clustering/services</module>
<module>opendaylight/clustering/services_implementation</module>
<module>opendaylight/clustering/stub</module>
<module>opendaylight/clustering/test</module>
<module>opendaylight/configuration/api</module>
<module>opendaylight/configuration/implementation</module>
<module>opendaylight/routing/dijkstra_implementation</module>
<module>opendaylight/arphandler</module>
<module>opendaylight/forwardingrulesmanager/api</module>
<module>opendaylight/forwardingrulesmanager/implementation</module>
<module>opendaylight/hosttracker/api</module>
<module>opendaylight/hosttracker/implementation</module>
<module>opendaylight/hosttracker_new/api</module>
<module>opendaylight/hosttracker_new/implementation</module>
<module>opendaylight/containermanager/api</module>
<module>opendaylight/containermanager/implementation</module>
<module>opendaylight/appauth</module>
<module>opendaylight/switchmanager/api</module>
<module>opendaylight/switchmanager/implementation</module>
<module>opendaylight/statisticsmanager/api</module>
<module>opendaylight/statisticsmanager/implementation</module>
<module>opendaylight/topologymanager/implementation</module>
<module>opendaylight/usermanager/api</module>
<module>opendaylight/usermanager/implementation</module>
<module>opendaylight/connectionmanager/api</module>
<module>opendaylight/connectionmanager/implementation</module>
<module>opendaylight/security</module>
- <!-- third-parties uncomment them if you need snapshot version of it
-->
- <!-- <module>third-party/openflowj</module>
-->
- <!-- <module>third-party/net.sf.jung2</module>
-->
- <!-- <module>third-party/jersey-servlet</module>
-->
- <!-- <module>third-party/org.apache.catalina.filters.CorsFilter</module>
-->
<module>third-party/ganymed</module>
<module>third-party/commons/thirdparty</module>
- <!-- SAL bundles
-->
<module>opendaylight/sal/api</module>
<module>opendaylight/sal/implementation</module>
- <!-- SAL Extension bundles
-->
<module>opendaylight/sal/connection/api</module>
<module>opendaylight/sal/connection/implementation</module>
<module>opendaylight/sal/networkconfiguration/api</module>
<module>opendaylight/sal/networkconfiguration/implementation</module>
- <!-- md-sal
-->
<module>opendaylight/md-sal</module>
- <!-- config
-->
<module>opendaylight/config</module>
- <!-- netconf
-->
<module>opendaylight/netconf</module>
- <!-- Web bundles
-->
<module>opendaylight/web/root</module>
<module>opendaylight/web/flows</module>
<module>opendaylight/web/devices</module>
<module>opendaylight/web/troubleshoot</module>
<module>opendaylight/web/topology</module>
<module>opendaylight/web/osgi-brandfragment</module>
- <!-- Neutron
-->
<module>opendaylight/networkconfiguration/neutron</module>
<module>opendaylight/networkconfiguration/neutron/implementation</module>
<module>opendaylight/northbound/networkconfiguration/neutron</module>
- <!-- Northbound bundles
-->
<module>opendaylight/northbound/commons</module>
<module>opendaylight/northbound/bundlescanner/api</module>
<module>opendaylight/northbound/bundlescanner/implementation</module>
<module>opendaylight/northbound/topology</module>
<module>opendaylight/northbound/staticrouting</module>
<module>opendaylight/northbound/statistics</module>
<module>opendaylight/northbound/flowprogrammer</module>
<module>opendaylight/northbound/hosttracker</module>
<module>opendaylight/northbound/subnets</module>
<module>opendaylight/northbound/switchmanager</module>
<module>opendaylight/northbound/containermanager</module>
<module>opendaylight/northbound/networkconfiguration/bridgedomain</module>
<module>opendaylight/northbound/httpservice-bridge</module>
<module>opendaylight/northbound/jolokia</module>
<module>opendaylight/northbound/connectionmanager</module>
<module>opendaylight/northbound/usermanager</module>
<module>opendaylight/northbound/controllermanager</module>
- <!-- Debug and logging
-->
<module>opendaylight/logging/bridge</module>
- <!-- Southbound bundles
-->
<module>opendaylight/protocol_plugins/openflow</module>
<module>opendaylight/protocol_plugins/stub</module>
- <!-- Samples
-->
<module>opendaylight/samples/simpleforwarding</module>
<module>opendaylight/samples/loadbalancer</module>
<module>opendaylight/samples/northbound/loadbalancer</module>
- <!-- Parents
-->
<module>opendaylight/commons/concepts</module>
<module>opendaylight/commons/protocol-framework</module>
<module>opendaylight/commons/httpclient</module>
<module>opendaylight/commons/checkstyle</module>
<module>opendaylight/commons/opendaylight</module>
<module>opendaylight/commons/parent</module>
<module>opendaylight/commons/logback_settings</module>
</modules>
- <scm>
<connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
<developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
<tag>HEAD</tag>
<url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
</scm>
- <profiles>
- <profile>
<id>integrationtests</id>
- <activation>
<activeByDefault>false</activeByDefault>
</activation>
- <modules>
<module>opendaylight/clustering/integrationtest</module>
<module>opendaylight/configuration/integrationtest</module>
<module>opendaylight/forwardingrulesmanager/integrationtest</module>
<module>opendaylight/hosttracker/integrationtest</module>
<module>opendaylight/switchmanager/integrationtest</module>
<module>opendaylight/topologymanager/integrationtest</module>
- <!-- Northbound integration tests
-->
<module>opendaylight/northbound/integrationtest</module>
<module>opendaylight/statisticsmanager/integrationtest</module>
<module>opendaylight/commons/integrationtest</module>
<module>opendaylight/containermanager/it.implementation</module>
<module>opendaylight/distribution/sanitytest/</module>
</modules>
</profile>
- <profile>
<id>docs</id>
- <activation>
<activeByDefault>false</activeByDefault>
</activation>
- <modules>
<module>opendaylight/northbound/java-client</module>
</modules>
</profile>
</profiles>
</project>[enter link description here][1]
settings.xml is :
https://raw.githubusercontent.com/opendaylight/odlparent/master/settings.xml
14.04 java jdk maven-3
add a comment |
I'm using
- ubuntu 14.04,
- maven 3.3.9 and
- jdk 1.7.0_45
Problem:
When i run mvn clean install
i get this error:
[ERROR] Failed to execute goal on project logging.bridge: Could not resolve dependencies for project org.opendaylight.controller:logging.bridge:bundle:0.4.1-1-SNAPSHOT: Failure to find org.opendaylight.yangtools:mockito-configuration:jar:0.6.1-1-SNAPSHOT in https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/ was cached in the local repository, resolution will not be reattempted until the update interval of opendaylight-snapshot has elapsed or updates are forced -> [Help 1]
[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/DependencyResolutionException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn <goals> -rf :logging.bridge
my parent pom.xml is :
<?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>
- <parent>
<groupId>org.opendaylight.controller</groupId>
<artifactId>commons.parent</artifactId>
<version>1.0.1-1-SNAPSHOT</version>
<relativePath>opendaylight/commons/parent</relativePath>
</parent>
<artifactId>releasepom</artifactId>
<version>0.1.1-1-SNAPSHOT</version>
<packaging>pom</packaging>
- <prerequisites>
<maven>3.0</maven>
</prerequisites>
- <modules>
<module>opendaylight/distribution/opendaylight</module>
<module>opendaylight/forwarding/staticrouting</module>
<module>opendaylight/clustering/services</module>
<module>opendaylight/clustering/services_implementation</module>
<module>opendaylight/clustering/stub</module>
<module>opendaylight/clustering/test</module>
<module>opendaylight/configuration/api</module>
<module>opendaylight/configuration/implementation</module>
<module>opendaylight/routing/dijkstra_implementation</module>
<module>opendaylight/arphandler</module>
<module>opendaylight/forwardingrulesmanager/api</module>
<module>opendaylight/forwardingrulesmanager/implementation</module>
<module>opendaylight/hosttracker/api</module>
<module>opendaylight/hosttracker/implementation</module>
<module>opendaylight/hosttracker_new/api</module>
<module>opendaylight/hosttracker_new/implementation</module>
<module>opendaylight/containermanager/api</module>
<module>opendaylight/containermanager/implementation</module>
<module>opendaylight/appauth</module>
<module>opendaylight/switchmanager/api</module>
<module>opendaylight/switchmanager/implementation</module>
<module>opendaylight/statisticsmanager/api</module>
<module>opendaylight/statisticsmanager/implementation</module>
<module>opendaylight/topologymanager/implementation</module>
<module>opendaylight/usermanager/api</module>
<module>opendaylight/usermanager/implementation</module>
<module>opendaylight/connectionmanager/api</module>
<module>opendaylight/connectionmanager/implementation</module>
<module>opendaylight/security</module>
- <!-- third-parties uncomment them if you need snapshot version of it
-->
- <!-- <module>third-party/openflowj</module>
-->
- <!-- <module>third-party/net.sf.jung2</module>
-->
- <!-- <module>third-party/jersey-servlet</module>
-->
- <!-- <module>third-party/org.apache.catalina.filters.CorsFilter</module>
-->
<module>third-party/ganymed</module>
<module>third-party/commons/thirdparty</module>
- <!-- SAL bundles
-->
<module>opendaylight/sal/api</module>
<module>opendaylight/sal/implementation</module>
- <!-- SAL Extension bundles
-->
<module>opendaylight/sal/connection/api</module>
<module>opendaylight/sal/connection/implementation</module>
<module>opendaylight/sal/networkconfiguration/api</module>
<module>opendaylight/sal/networkconfiguration/implementation</module>
- <!-- md-sal
-->
<module>opendaylight/md-sal</module>
- <!-- config
-->
<module>opendaylight/config</module>
- <!-- netconf
-->
<module>opendaylight/netconf</module>
- <!-- Web bundles
-->
<module>opendaylight/web/root</module>
<module>opendaylight/web/flows</module>
<module>opendaylight/web/devices</module>
<module>opendaylight/web/troubleshoot</module>
<module>opendaylight/web/topology</module>
<module>opendaylight/web/osgi-brandfragment</module>
- <!-- Neutron
-->
<module>opendaylight/networkconfiguration/neutron</module>
<module>opendaylight/networkconfiguration/neutron/implementation</module>
<module>opendaylight/northbound/networkconfiguration/neutron</module>
- <!-- Northbound bundles
-->
<module>opendaylight/northbound/commons</module>
<module>opendaylight/northbound/bundlescanner/api</module>
<module>opendaylight/northbound/bundlescanner/implementation</module>
<module>opendaylight/northbound/topology</module>
<module>opendaylight/northbound/staticrouting</module>
<module>opendaylight/northbound/statistics</module>
<module>opendaylight/northbound/flowprogrammer</module>
<module>opendaylight/northbound/hosttracker</module>
<module>opendaylight/northbound/subnets</module>
<module>opendaylight/northbound/switchmanager</module>
<module>opendaylight/northbound/containermanager</module>
<module>opendaylight/northbound/networkconfiguration/bridgedomain</module>
<module>opendaylight/northbound/httpservice-bridge</module>
<module>opendaylight/northbound/jolokia</module>
<module>opendaylight/northbound/connectionmanager</module>
<module>opendaylight/northbound/usermanager</module>
<module>opendaylight/northbound/controllermanager</module>
- <!-- Debug and logging
-->
<module>opendaylight/logging/bridge</module>
- <!-- Southbound bundles
-->
<module>opendaylight/protocol_plugins/openflow</module>
<module>opendaylight/protocol_plugins/stub</module>
- <!-- Samples
-->
<module>opendaylight/samples/simpleforwarding</module>
<module>opendaylight/samples/loadbalancer</module>
<module>opendaylight/samples/northbound/loadbalancer</module>
- <!-- Parents
-->
<module>opendaylight/commons/concepts</module>
<module>opendaylight/commons/protocol-framework</module>
<module>opendaylight/commons/httpclient</module>
<module>opendaylight/commons/checkstyle</module>
<module>opendaylight/commons/opendaylight</module>
<module>opendaylight/commons/parent</module>
<module>opendaylight/commons/logback_settings</module>
</modules>
- <scm>
<connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
<developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
<tag>HEAD</tag>
<url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
</scm>
- <profiles>
- <profile>
<id>integrationtests</id>
- <activation>
<activeByDefault>false</activeByDefault>
</activation>
- <modules>
<module>opendaylight/clustering/integrationtest</module>
<module>opendaylight/configuration/integrationtest</module>
<module>opendaylight/forwardingrulesmanager/integrationtest</module>
<module>opendaylight/hosttracker/integrationtest</module>
<module>opendaylight/switchmanager/integrationtest</module>
<module>opendaylight/topologymanager/integrationtest</module>
- <!-- Northbound integration tests
-->
<module>opendaylight/northbound/integrationtest</module>
<module>opendaylight/statisticsmanager/integrationtest</module>
<module>opendaylight/commons/integrationtest</module>
<module>opendaylight/containermanager/it.implementation</module>
<module>opendaylight/distribution/sanitytest/</module>
</modules>
</profile>
- <profile>
<id>docs</id>
- <activation>
<activeByDefault>false</activeByDefault>
</activation>
- <modules>
<module>opendaylight/northbound/java-client</module>
</modules>
</profile>
</profiles>
</project>[enter link description here][1]
settings.xml is :
https://raw.githubusercontent.com/opendaylight/odlparent/master/settings.xml
14.04 java jdk maven-3
add a comment |
I'm using
- ubuntu 14.04,
- maven 3.3.9 and
- jdk 1.7.0_45
Problem:
When i run mvn clean install
i get this error:
[ERROR] Failed to execute goal on project logging.bridge: Could not resolve dependencies for project org.opendaylight.controller:logging.bridge:bundle:0.4.1-1-SNAPSHOT: Failure to find org.opendaylight.yangtools:mockito-configuration:jar:0.6.1-1-SNAPSHOT in https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/ was cached in the local repository, resolution will not be reattempted until the update interval of opendaylight-snapshot has elapsed or updates are forced -> [Help 1]
[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/DependencyResolutionException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn <goals> -rf :logging.bridge
my parent pom.xml is :
<?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>
- <parent>
<groupId>org.opendaylight.controller</groupId>
<artifactId>commons.parent</artifactId>
<version>1.0.1-1-SNAPSHOT</version>
<relativePath>opendaylight/commons/parent</relativePath>
</parent>
<artifactId>releasepom</artifactId>
<version>0.1.1-1-SNAPSHOT</version>
<packaging>pom</packaging>
- <prerequisites>
<maven>3.0</maven>
</prerequisites>
- <modules>
<module>opendaylight/distribution/opendaylight</module>
<module>opendaylight/forwarding/staticrouting</module>
<module>opendaylight/clustering/services</module>
<module>opendaylight/clustering/services_implementation</module>
<module>opendaylight/clustering/stub</module>
<module>opendaylight/clustering/test</module>
<module>opendaylight/configuration/api</module>
<module>opendaylight/configuration/implementation</module>
<module>opendaylight/routing/dijkstra_implementation</module>
<module>opendaylight/arphandler</module>
<module>opendaylight/forwardingrulesmanager/api</module>
<module>opendaylight/forwardingrulesmanager/implementation</module>
<module>opendaylight/hosttracker/api</module>
<module>opendaylight/hosttracker/implementation</module>
<module>opendaylight/hosttracker_new/api</module>
<module>opendaylight/hosttracker_new/implementation</module>
<module>opendaylight/containermanager/api</module>
<module>opendaylight/containermanager/implementation</module>
<module>opendaylight/appauth</module>
<module>opendaylight/switchmanager/api</module>
<module>opendaylight/switchmanager/implementation</module>
<module>opendaylight/statisticsmanager/api</module>
<module>opendaylight/statisticsmanager/implementation</module>
<module>opendaylight/topologymanager/implementation</module>
<module>opendaylight/usermanager/api</module>
<module>opendaylight/usermanager/implementation</module>
<module>opendaylight/connectionmanager/api</module>
<module>opendaylight/connectionmanager/implementation</module>
<module>opendaylight/security</module>
- <!-- third-parties uncomment them if you need snapshot version of it
-->
- <!-- <module>third-party/openflowj</module>
-->
- <!-- <module>third-party/net.sf.jung2</module>
-->
- <!-- <module>third-party/jersey-servlet</module>
-->
- <!-- <module>third-party/org.apache.catalina.filters.CorsFilter</module>
-->
<module>third-party/ganymed</module>
<module>third-party/commons/thirdparty</module>
- <!-- SAL bundles
-->
<module>opendaylight/sal/api</module>
<module>opendaylight/sal/implementation</module>
- <!-- SAL Extension bundles
-->
<module>opendaylight/sal/connection/api</module>
<module>opendaylight/sal/connection/implementation</module>
<module>opendaylight/sal/networkconfiguration/api</module>
<module>opendaylight/sal/networkconfiguration/implementation</module>
- <!-- md-sal
-->
<module>opendaylight/md-sal</module>
- <!-- config
-->
<module>opendaylight/config</module>
- <!-- netconf
-->
<module>opendaylight/netconf</module>
- <!-- Web bundles
-->
<module>opendaylight/web/root</module>
<module>opendaylight/web/flows</module>
<module>opendaylight/web/devices</module>
<module>opendaylight/web/troubleshoot</module>
<module>opendaylight/web/topology</module>
<module>opendaylight/web/osgi-brandfragment</module>
- <!-- Neutron
-->
<module>opendaylight/networkconfiguration/neutron</module>
<module>opendaylight/networkconfiguration/neutron/implementation</module>
<module>opendaylight/northbound/networkconfiguration/neutron</module>
- <!-- Northbound bundles
-->
<module>opendaylight/northbound/commons</module>
<module>opendaylight/northbound/bundlescanner/api</module>
<module>opendaylight/northbound/bundlescanner/implementation</module>
<module>opendaylight/northbound/topology</module>
<module>opendaylight/northbound/staticrouting</module>
<module>opendaylight/northbound/statistics</module>
<module>opendaylight/northbound/flowprogrammer</module>
<module>opendaylight/northbound/hosttracker</module>
<module>opendaylight/northbound/subnets</module>
<module>opendaylight/northbound/switchmanager</module>
<module>opendaylight/northbound/containermanager</module>
<module>opendaylight/northbound/networkconfiguration/bridgedomain</module>
<module>opendaylight/northbound/httpservice-bridge</module>
<module>opendaylight/northbound/jolokia</module>
<module>opendaylight/northbound/connectionmanager</module>
<module>opendaylight/northbound/usermanager</module>
<module>opendaylight/northbound/controllermanager</module>
- <!-- Debug and logging
-->
<module>opendaylight/logging/bridge</module>
- <!-- Southbound bundles
-->
<module>opendaylight/protocol_plugins/openflow</module>
<module>opendaylight/protocol_plugins/stub</module>
- <!-- Samples
-->
<module>opendaylight/samples/simpleforwarding</module>
<module>opendaylight/samples/loadbalancer</module>
<module>opendaylight/samples/northbound/loadbalancer</module>
- <!-- Parents
-->
<module>opendaylight/commons/concepts</module>
<module>opendaylight/commons/protocol-framework</module>
<module>opendaylight/commons/httpclient</module>
<module>opendaylight/commons/checkstyle</module>
<module>opendaylight/commons/opendaylight</module>
<module>opendaylight/commons/parent</module>
<module>opendaylight/commons/logback_settings</module>
</modules>
- <scm>
<connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
<developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
<tag>HEAD</tag>
<url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
</scm>
- <profiles>
- <profile>
<id>integrationtests</id>
- <activation>
<activeByDefault>false</activeByDefault>
</activation>
- <modules>
<module>opendaylight/clustering/integrationtest</module>
<module>opendaylight/configuration/integrationtest</module>
<module>opendaylight/forwardingrulesmanager/integrationtest</module>
<module>opendaylight/hosttracker/integrationtest</module>
<module>opendaylight/switchmanager/integrationtest</module>
<module>opendaylight/topologymanager/integrationtest</module>
- <!-- Northbound integration tests
-->
<module>opendaylight/northbound/integrationtest</module>
<module>opendaylight/statisticsmanager/integrationtest</module>
<module>opendaylight/commons/integrationtest</module>
<module>opendaylight/containermanager/it.implementation</module>
<module>opendaylight/distribution/sanitytest/</module>
</modules>
</profile>
- <profile>
<id>docs</id>
- <activation>
<activeByDefault>false</activeByDefault>
</activation>
- <modules>
<module>opendaylight/northbound/java-client</module>
</modules>
</profile>
</profiles>
</project>[enter link description here][1]
settings.xml is :
https://raw.githubusercontent.com/opendaylight/odlparent/master/settings.xml
14.04 java jdk maven-3
I'm using
- ubuntu 14.04,
- maven 3.3.9 and
- jdk 1.7.0_45
Problem:
When i run mvn clean install
i get this error:
[ERROR] Failed to execute goal on project logging.bridge: Could not resolve dependencies for project org.opendaylight.controller:logging.bridge:bundle:0.4.1-1-SNAPSHOT: Failure to find org.opendaylight.yangtools:mockito-configuration:jar:0.6.1-1-SNAPSHOT in https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/ was cached in the local repository, resolution will not be reattempted until the update interval of opendaylight-snapshot has elapsed or updates are forced -> [Help 1]
[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/DependencyResolutionException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn <goals> -rf :logging.bridge
my parent pom.xml is :
<?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>
- <parent>
<groupId>org.opendaylight.controller</groupId>
<artifactId>commons.parent</artifactId>
<version>1.0.1-1-SNAPSHOT</version>
<relativePath>opendaylight/commons/parent</relativePath>
</parent>
<artifactId>releasepom</artifactId>
<version>0.1.1-1-SNAPSHOT</version>
<packaging>pom</packaging>
- <prerequisites>
<maven>3.0</maven>
</prerequisites>
- <modules>
<module>opendaylight/distribution/opendaylight</module>
<module>opendaylight/forwarding/staticrouting</module>
<module>opendaylight/clustering/services</module>
<module>opendaylight/clustering/services_implementation</module>
<module>opendaylight/clustering/stub</module>
<module>opendaylight/clustering/test</module>
<module>opendaylight/configuration/api</module>
<module>opendaylight/configuration/implementation</module>
<module>opendaylight/routing/dijkstra_implementation</module>
<module>opendaylight/arphandler</module>
<module>opendaylight/forwardingrulesmanager/api</module>
<module>opendaylight/forwardingrulesmanager/implementation</module>
<module>opendaylight/hosttracker/api</module>
<module>opendaylight/hosttracker/implementation</module>
<module>opendaylight/hosttracker_new/api</module>
<module>opendaylight/hosttracker_new/implementation</module>
<module>opendaylight/containermanager/api</module>
<module>opendaylight/containermanager/implementation</module>
<module>opendaylight/appauth</module>
<module>opendaylight/switchmanager/api</module>
<module>opendaylight/switchmanager/implementation</module>
<module>opendaylight/statisticsmanager/api</module>
<module>opendaylight/statisticsmanager/implementation</module>
<module>opendaylight/topologymanager/implementation</module>
<module>opendaylight/usermanager/api</module>
<module>opendaylight/usermanager/implementation</module>
<module>opendaylight/connectionmanager/api</module>
<module>opendaylight/connectionmanager/implementation</module>
<module>opendaylight/security</module>
- <!-- third-parties uncomment them if you need snapshot version of it
-->
- <!-- <module>third-party/openflowj</module>
-->
- <!-- <module>third-party/net.sf.jung2</module>
-->
- <!-- <module>third-party/jersey-servlet</module>
-->
- <!-- <module>third-party/org.apache.catalina.filters.CorsFilter</module>
-->
<module>third-party/ganymed</module>
<module>third-party/commons/thirdparty</module>
- <!-- SAL bundles
-->
<module>opendaylight/sal/api</module>
<module>opendaylight/sal/implementation</module>
- <!-- SAL Extension bundles
-->
<module>opendaylight/sal/connection/api</module>
<module>opendaylight/sal/connection/implementation</module>
<module>opendaylight/sal/networkconfiguration/api</module>
<module>opendaylight/sal/networkconfiguration/implementation</module>
- <!-- md-sal
-->
<module>opendaylight/md-sal</module>
- <!-- config
-->
<module>opendaylight/config</module>
- <!-- netconf
-->
<module>opendaylight/netconf</module>
- <!-- Web bundles
-->
<module>opendaylight/web/root</module>
<module>opendaylight/web/flows</module>
<module>opendaylight/web/devices</module>
<module>opendaylight/web/troubleshoot</module>
<module>opendaylight/web/topology</module>
<module>opendaylight/web/osgi-brandfragment</module>
- <!-- Neutron
-->
<module>opendaylight/networkconfiguration/neutron</module>
<module>opendaylight/networkconfiguration/neutron/implementation</module>
<module>opendaylight/northbound/networkconfiguration/neutron</module>
- <!-- Northbound bundles
-->
<module>opendaylight/northbound/commons</module>
<module>opendaylight/northbound/bundlescanner/api</module>
<module>opendaylight/northbound/bundlescanner/implementation</module>
<module>opendaylight/northbound/topology</module>
<module>opendaylight/northbound/staticrouting</module>
<module>opendaylight/northbound/statistics</module>
<module>opendaylight/northbound/flowprogrammer</module>
<module>opendaylight/northbound/hosttracker</module>
<module>opendaylight/northbound/subnets</module>
<module>opendaylight/northbound/switchmanager</module>
<module>opendaylight/northbound/containermanager</module>
<module>opendaylight/northbound/networkconfiguration/bridgedomain</module>
<module>opendaylight/northbound/httpservice-bridge</module>
<module>opendaylight/northbound/jolokia</module>
<module>opendaylight/northbound/connectionmanager</module>
<module>opendaylight/northbound/usermanager</module>
<module>opendaylight/northbound/controllermanager</module>
- <!-- Debug and logging
-->
<module>opendaylight/logging/bridge</module>
- <!-- Southbound bundles
-->
<module>opendaylight/protocol_plugins/openflow</module>
<module>opendaylight/protocol_plugins/stub</module>
- <!-- Samples
-->
<module>opendaylight/samples/simpleforwarding</module>
<module>opendaylight/samples/loadbalancer</module>
<module>opendaylight/samples/northbound/loadbalancer</module>
- <!-- Parents
-->
<module>opendaylight/commons/concepts</module>
<module>opendaylight/commons/protocol-framework</module>
<module>opendaylight/commons/httpclient</module>
<module>opendaylight/commons/checkstyle</module>
<module>opendaylight/commons/opendaylight</module>
<module>opendaylight/commons/parent</module>
<module>opendaylight/commons/logback_settings</module>
</modules>
- <scm>
<connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
<developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
<tag>HEAD</tag>
<url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
</scm>
- <profiles>
- <profile>
<id>integrationtests</id>
- <activation>
<activeByDefault>false</activeByDefault>
</activation>
- <modules>
<module>opendaylight/clustering/integrationtest</module>
<module>opendaylight/configuration/integrationtest</module>
<module>opendaylight/forwardingrulesmanager/integrationtest</module>
<module>opendaylight/hosttracker/integrationtest</module>
<module>opendaylight/switchmanager/integrationtest</module>
<module>opendaylight/topologymanager/integrationtest</module>
- <!-- Northbound integration tests
-->
<module>opendaylight/northbound/integrationtest</module>
<module>opendaylight/statisticsmanager/integrationtest</module>
<module>opendaylight/commons/integrationtest</module>
<module>opendaylight/containermanager/it.implementation</module>
<module>opendaylight/distribution/sanitytest/</module>
</modules>
</profile>
- <profile>
<id>docs</id>
- <activation>
<activeByDefault>false</activeByDefault>
</activation>
- <modules>
<module>opendaylight/northbound/java-client</module>
</modules>
</profile>
</profiles>
</project>[enter link description here][1]
settings.xml is :
https://raw.githubusercontent.com/opendaylight/odlparent/master/settings.xml
14.04 java jdk maven-3
14.04 java jdk maven-3
edited Dec 14 '18 at 16:28
asked Dec 14 '18 at 16:20
sana
981110
981110
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1100920%2ffailed-to-execute-goal-on-project-logging-bridge-could-not-resolve-dependencies%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1100920%2ffailed-to-execute-goal-on-project-logging-bridge-could-not-resolve-dependencies%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown