Hi,

Karaf firstly uses the repositories defined in etc/org.ops4j.pax.url.mvn.cfg.

Regards
JB

On 08/28/2013 01:54 PM, amitsaini1976 wrote:
This problem is coming because your local Maven repository is not having the
mentioned jar and it is for some reason not able to download it from remote
repository.

It is looking for org.apache.servicemix.specs.activation-api-1.1-2.2.0.jar

with following
   <groupId>org.apache.servicemix.specs</groupId>
   <artifactId>org.apache.servicemix.specs.activation-api-1.1</artifactId>
   <version>2.2.0</version>


Also Try to Setup the repository
UNIX: home/User/.m2/settings.xml

Make this Change- You are adding FuseSource as your Remote Repository.
<profiles>
        <profile>
                <id>my-FuseProfile</id>
                <activation>
                        <activeByDefault>true</activeByDefault>
                </activation>
                <repositories>
                        <repository>
                                <id>fusesource</id>
                                
<url>http://repo.fusesource.com/nexus/content/groups/public/</url>
                                <snapshots>
                                        <enabled>false</enabled>
                                </snapshots>
                                <releases>
                                        <enabled>true</enabled>
                                </releases>
                        </repository>
                </repositories>
   </profile>





--
View this message in context: 
http://karaf.922171.n3.nabble.com/can-not-install-webconsole-tp4029516p4029554.html
Sent from the Karaf - User mailing list archive at Nabble.com.


--
Jean-Baptiste Onofré
[email protected]
http://blog.nanthrax.net
Talend - http://www.talend.com

Reply via email to