Re: Maven Aether configuration

2020-03-04 Thread Jared Whiklo
So I went ahead and modified the test to have a hardcoded maven URL for the apache-karaf artifact. final String karafDistributionUrl = "https://repo1.maven.org/maven2/org/apache/karaf/apache-karaf/; + karafVersion + "/apache-karaf-" + karafVersion + ".zip"; But the ArchiveExtractor

Re: Maven Aether configuration

2020-03-05 Thread Jared Whiklo
especially you have to use https for Central (it will be changed by > default in Karaf 4.2.9): > > https://github.com/apache/karaf/blob/master/itests/common/src/main/java/org/apache/karaf/itests/KarafTestSupport.java#L211 > > Regards > JB > > On Thu, Mar 5, 2020 at 8:38 PM

Re: Maven Aether configuration

2020-03-05 Thread Jared Whiklo
ply update the pax url cfg file in the pax exam config ? > > Regards  > JB > > Le jeu. 5 mars 2020 à 20:01, Jared Whiklo <mailto:jwhi...@gmail.com>> a écrit : > > Thank you Grzegorz, > > Here is the test currently > > > https://githu

Re: Maven Aether configuration

2020-03-06 Thread Jared Whiklo
adle (I don't even like it much ;), so you have > to check why the Karaf doesn't start. At least it's downloaded ;) > > regards > Grzegorz Grzybek > > czw., 5 mar 2020 o 22:24 Jean-Baptiste Onofré > mailto:jeanbaptiste.ono...@gmail.com>> > napisał(a): > > Not,

Re: Maven Aether configuration

2020-02-28 Thread Jared Whiklo
property_ (framework property, in Karaf - > etc/config.properties) "org.ops4j.pax.url.mvn.requireConfigAdminConfig" > - with this set (to any value), pax-url-aether will synchronously wait > for proper ConfigurationAdmin (otherwise it _could_ fallback to default >

Re: Maven Aether configuration

2020-02-27 Thread Jared Whiklo
Coming back to this post 4.13.2 release and I'm clearly missing something and am still getting Gradle Test Run :islandora-karaf:test > Gradle Test Executor 13 > ca.islandora.alpaca.karaf.KarafIT > classMethod FAILED java.lang.RuntimeException: Problem starting container Caused by:

Re: Maven Aether configuration

2020-02-20 Thread Jared Whiklo
Thanks Oliver, I'll watch for the release. On 2020-02-19 4:09 p.m., Oliver Lietz wrote: > On Wednesday, February 19, 2020 10:52:49 PM CET Jared Whiklo wrote: >> Hi all, > > Hi Jared, > >> I'm relatively new to Pax-Exam stuff, but have been using it to test >>

Maven Aether configuration

2020-02-19 Thread Jared Whiklo
Hi all, I'm relatively new to Pax-Exam stuff, but have been using it to test deployment of some resources in a Karaf container. This was working until such time as the recent switch to required SSL for maven central. So I need to switch out any default repositories urls from

Re: Maven Aether configuration

2020-03-05 Thread Jared Whiklo
Thank you Grzegorz, Here is the test currently https://github.com/whikloj/Alpaca/blob/fix-pax-exam/karaf/src/test/java/ca/islandora/alpaca/karaf/KarafIT.java The only solution I have found is to change my personal maven settings.xml to include a repository or mirror for Maven central with the

Re: Maven Aether configuration

2020-03-05 Thread Jared Whiklo
> without problem). > > I guess you are on Windows platform right ? Which jdk version ? > > Anything special about network (like a proxy to access Internet) ? > > Regards > JB > > Le mer. 4 mars 2020 à 22:40, Jared Whiklo > > a écrit : > >> So I