Thanks for pointing that out, but even if i put the valid repository, cannot run the maven install command.
here is the pom <?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>com.mydistrib</groupId> <artifactId>GSBv3</artifactId> <version>1.0</version> <packaging>karaf-assembly</packaging> <dependencies> <dependency> <groupId>org.apache.karaf.features</groupId> <artifactId>framework</artifactId> <version>4.0.0</version> <type>kar</type> </dependency> <dependency> <groupId>org.apache.karaf.features</groupId> <artifactId>standard</artifactId> <classifier>features</classifier> <version>4.0.0</version> <type>xml</type> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.karaf.features</groupId> <artifactId>spring</artifactId> <classifier>features</classifier> <version>4.0.0</version> <type>xml</type> <scope>runtime</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> <includes> <include>**/*</include> </includes> </resource> <resource> <directory>src/main/filtered-resources</directory> <filtering>true</filtering> <includes> <include>**/*</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> <executions> <execution> <id>process-resources</id> <goals> <goal>resources</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.karaf.tooling</groupId> <artifactId>karaf-maven-plugin</artifactId> <version>4.0.0</version> <extensions>true</extensions> <configuration> <bootRepositories> <repository>mvn:org.apache.camel.karaf/apache-camel/2.16.0-SNAPSHOT/xml/features</repository> </bootRepositories> <bootFeatures> <feature>jaas</feature> <feature>shell</feature> <feature>ssh</feature> <feature>management</feature> <feature>bundle</feature> <feature>feature</feature> <feature>config</feature> <feature>deployer</feature> <feature>diagnostic</feature> <feature>instance</feature> <feature>kar</feature> <feature>log</feature> <feature>package</feature> <feature>service</feature> <feature>system</feature> <feature>camel</feature> </bootFeatures> <installedFeatures> <feature>wrapper</feature> </installedFeatures> </configuration> </plugin> </plugins> </build> </project> -- View this message in context: http://karaf.922171.n3.nabble.com/Karaf-4-0-0-creatng-custom-distribution-bootRepositories-installedRepositories-tp4042144p4042146.html Sent from the Karaf - User mailing list archive at Nabble.com.
