>>>>> Jean-Baptiste Onofré <[email protected]>: > I guess you didn't add the staging mvn repo in etc/org.ops4j.pax.url.mvn.cfg
Ok, then it worked: karaf@root()> config:edit org.ops4j.pax.url.mvn karaf@root()> config:property-append org.ops4j.pax.url.mvn.repositories ", https://repository.apache.org/content/repositories/orgapachekaraf-1100/" karaf@root()> config:update karaf@root()> feature:install ukelonn karaf@root()> But the integration tests failed: https://github.com/steinarb/ukelonn/tree/master/ukelonn.tests (they eventually failed with timeouts) But the integration test failure is probably caused by the same thing as the failure of my initial manual test. (Because the integration tests use karaf and loads the same features as my manual test, and there is nothing in the integration tests that changes the config) In any case the my application started in karaf, when installed manually, and was running identical to 4.1.2 in the testing that I did. So +1 (non-binding) from me Here's the diff to the parent pom of the above project: diff --git a/pom.xml b/pom.xml index 40824bd..bed74a5 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.bundle.plugin.version>2.5.3</maven.bundle.plugin.version> - <karaf.version>4.1.2</karaf.version> + <karaf.version>4.1.3</karaf.version> <liquibase.version>3.5.3</liquibase.version> <liquibase-slf4j.version>2.0.0</liquibase-slf4j.version> <snakeyaml.version>1.17</snakeyaml.version> @@ -428,11 +428,22 @@ <module>ukelonn.karaf</module> </modules> + <pluginRepositories> + <pluginRepository> + <id>karaf-staging</id> + <url>https://repository.apache.org/content/repositories/orgapachekaraf-1100/</url> + </pluginRepository> + </pluginRepositories> + <repositories> <repository> <id>vaadin-addons</id> <url>http://maven.vaadin.com/vaadin-addons</url> </repository> + <repository> + <id>karaf-staging</id> + <url>https://repository.apache.org/content/repositories/orgapachekaraf-1100/</url> + </repository> </repositories> <distributionManagement>
