Hi folks, I just download the SVN felix-trunk version recently repackaged. And launch a maven2 install, as suggested in the "build-install.sh". My just-newly-re-installed box was absolutely "virgin" ... So after just few downloads (sic) and compilations, I get the following error :
[INFO] ---------------------------------------------------------------------------- [INFO] Building Apache Felix Examples: Spell Check w/ Service Binder [INFO] task-segment: [clean, install] [INFO] ---------------------------------------------------------------------------- [...] [INFO] [resources:resources] [INFO] Using default encoding to copy filtered resources. Downloading: http://cvs.apache.org/maven-snapshot-repository/org/ungoverned/gravity/servicebinder/servicebinder/1.0/servicebinder-1.0.pom [WARNING] Unable to get resource from repository apache.snapshots ( http://cvs.apache.org/maven-snapshot-repository) Downloading: http://m2.safehaus.org/org/ungoverned/gravity/servicebinder/servicebinder/1.0/servicebinder-1.0.pom [WARNING] Unable to get resource from repository safehaus ( http://m2.safehaus.org) Downloading: http://repo1.maven.org/maven2/org/ungoverned/gravity/servicebinder/servicebinder/1.0/servicebinder-1.0.pom [INFO] ---------------------------------------------------------------------------- [ERROR] BUILD ERROR [INFO] ---------------------------------------------------------------------------- [INFO] Error building POM (may not be this project's POM). It seems that the "servicebinder-1.0.pom" is unreachable. So I check manually the maven2 repository : http://cvs.apache.org/maven-snapshot-repository/org/ungoverned/gravity/servicebinder/servicebinder/1.0/ => this directory does not exists http://m2.safehaus.org/org/ungoverned/gravity/servicebinder/servicebinder/1.0/ => This directory exists but does not contain the file " servicebinder-1.0.pom" (contains just the corresponding jar) http://repo1.maven.org/maven2/org/ungoverned/gravity/servicebinder/servicebinder/1.0/ => this directory does not exists Then I check the corresponding pom : "${FELIX_HOME}/org.apache.felix.examples.spellcheckbinder/pom.xml". I see that the "servicebinder" dependency is flagged "provided", as you can see below : [...] <dependency> <groupId>org.ungoverned.gravity.servicebinder</groupId> <artifactId>servicebinder</artifactId> <version>1.0</version> <scope>provided</scope> </dependency> [...] So here my questions : 1/ May I do something wrong ? 2/ Should be a "provided" dependency downloaded during compile-package-install time ? 3/ If yes, is there a repository where I can find the corresponding pom and jar ? Should I add this repo to my "settings.xml" ? Greetings, -- </arnaud>

