Hello, I was building the stanbol using instructions on https://stanbol.apache.org/docs/trunk/tutorial.html, when I encountered this error.
BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 3.915s [INFO] Finished at: Mon Jul 14 16:46:12 IST 2014 [INFO] Final Memory: 53M/217M [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal on project org.apache.stanbol.launchers.bundlelists.security: Could not resolve dependencies for project org.apache.stanbol:org.apache.stanbol.launche rs.bundlelists.security:partialbundlelist:1.0.0-SNAPSHOT: The following artifacts could not be resolved: org.apache.clerezza:rdf.file.storage:jar:0.4-SNAPSHOT, org.apache.clerezza:p latform.config:jar:0.4-SNAPSHOT: Failure to find org.apache.clerezza:rdf.file.storage:jar:0.4-SNAPSHOT in http://repository.apache.org/snapshots was cached in the local repository, resolution will not be reattempted until the update interval of apache.snapshots 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 Following changes corrected it: In file launchers/bundlelists/security/src/main/bundles/list.xml <bundles> 19 <!-- authentication --> 20 <startLevel level="27"> 21 <bundle> 22 <groupId>org.apache.clerezza</groupId> 23 <artifactId>rdf.file.storage</artifactId> #<version>0.4-SNAPSHOT</version> 24 <version>0.4</version> 25 </bundle> 26 <bundle> 27 <groupId>org.apache.clerezza</groupId> 28 <artifactId>platform.config</artifactId> #<version>0.4-SNAPSHOT</version> 29 <version>0.4</version> 30 </bundle> — Cheers Shubham Bansal