Hi, Now that I have Stanbol up and running, I'd like to do some tests to see the capabilities of Stanbol.
I am trying to follow the tutorial at the IKS ReviewMeeting [1].<http://dl.dropbox.com/u/5743203/IKS/ReviewMeeting2012/Topic-Classification.pdf> However, doing: cd ~/stanbol/enhancer/engines/topic mvn install -DskipTests -PinstallBundle -Dsling.url= http://localhost:8080/system/console gives me an error: ERROR: Bundle org.apache.stanbol.enhancer.engine.topic [147]: Error starting inputstream:org.apache.stanbol.enhancer.engine.topic-0.10.0-SNAPSHOT.jar (org.osgi.framework.BundleException: Unresolved constraint in bundle org.apache.stanbol.enhancer.engine.topic [147]: Unable to resolve 147.3: missing requirement [147.3] package; (&(package=org.apache.commons.compress.archivers)(version>=1.4.1))) org.osgi.framework.BundleException: Unresolved constraint in bundle org.apache.stanbol.enhancer.engine.topic [147]: Unable to resolve 147.3: missing requirement [147.3] package; (&(package=org.apache.commons.compress.archivers)(version>=1.4.1)) at org.apache.felix.framework.Felix.resolveBundle(Felix.java:3443) at org.apache.felix.framework.Felix.startBundle(Felix.java:1727) at org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1156) at org.apache.felix.framework.StartLevelImpl.run(StartLevelImpl.java:264) at java.lang.Thread.run(Thread.java:679) As it seems commons-compress is not included. So, I thought I add this to the pom.xml in stanbol/enhancer/engines/topic: <!-- Normal build dependencies --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.4.1</version> </dependency mvn install -PinstallBundle -Dsling.url= http://localhost:8080/system/console This does *NOT* solve the problem. I get a similar problem, when I continue to the next step in the tutorial (installing topic-web) with freemarker.cache. Am I doing something wrong? Best wishes, René Nederhand [1] http://dl.dropbox.com/u/5743203/IKS/ReviewMeeting2012/Topic-Classification.pdf
