bffmm1 / mycloudportal

Automatically exported from code.google.com/p/mycloudportal
0 stars 0 forks source link

Missing Maven dependency #9

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Hi

I am missing 

com.vmware:vcloud
org.jbpm.jbpm4:jbpm

see Error log below

BUILD FAILURE
------------------------------------------------------------------------
Total time: 23.076s
Finished at: Wed Nov 26 19:28:23 IST 2014
Final Memory: 8M/122M
------------------------------------------------------------------------
Failed to execute goal on project mycp: Could not resolve dependencies for 
project in.mycp:mycp:war:0.1.0.BUILD-SNAPSHOT: The following artifacts could 
not be resolved: com.vmware:vcloud:jar:1.5, 
com.vmware:rest-api-schemas:jar:1.5: Could not find artifact 
com.vmware:vcloud:jar:1.5 in jboss (http://repository.jboss.com/maven2) -> 
[Help 1]

Original issue reported on code.google.com by karthi4...@gmail.com on 26 Nov 2014 at 2:01

GoogleCodeExporter commented 9 years ago
add the following repos in yur pom

<repositories>

        <!-- <repository> <id>releases</id> <name>Releases</name> <url>https://oss.sonatype.org/content/repositories/releases</url> 
            </repository> -->

        <repository>
            <id>myownrepo</id>
            <url>https://dl.dropboxusercontent.com/u/48692478/repository</url>
        </repository>
        <repository>
            <id>org.cloudifysource</id>
            <url>http://maven-repository.cloudifysource.org</url>
        </repository>

    </repositories>

Original comment by cgow...@gmail.com on 27 Nov 2014 at 6:22

GoogleCodeExporter commented 9 years ago
Thanks dependency problem solved

Original comment by karthi4...@gmail.com on 28 Nov 2014 at 10:56