Re: Why is Maven calling nonexistent Artifactory?

2020-01-15 Thread Pim Moerenhout
Hi Roger, Actually, I'm working on this problem in https://issues.apache.org/jira/browse/MDEP-648 It will look through all dependencies and tell in which POM the definition for the external repository was defined in: The output of mvn

Re: Why is Maven calling nonexistent Artifactory?

2020-01-15 Thread Laird Nelson
Additionally, transitive dependencies may have elements in their pom.xmls, one of which probably contains the URL in question. Best, Laird On Wed, Jan 15, 2020 at 2:29 PM Nick Stolwijk wrote: > Hi Roger, > > As far as I know there is no other repository then Maven Central baked into > Maven.

Re: Why is Maven calling nonexistent Artifactory?

2020-01-15 Thread Nick Stolwijk
Hi Roger, As far as I know there is no other repository then Maven Central baked into Maven. I guess it is configured somewhere in your settings or pom structure. You can take a good look at the settings Maven use by using the Maven Help plugin. Try executing mvn help:effective-pom and mvn

Why is Maven calling nonexistent Artifactory?

2020-01-15 Thread Worden, Roger
New install of Maven 3.6.3 on Mac Mojave. Trying to build a local copy of a third-party vendor’s app. Command is: mvn dependency:tree -DoutputType=dot --file="pom.xml" Maven says the following for many objects: Downloading from vendor-repo:

[maven-surefire-plugin] message published by JUnit5-TestReporter does not appear in surefire report

2020-01-15 Thread Knoche, Heinz
Hello, I uploaded this simple project to illustrate my observation: https://github.com/gabalawi/junit5-testreporter Maybe someone could help me with clarifying - if there is a bug or lacking feature in the surefire plugin - or if I did not properly configure the surefire plugin - or if it is up

Re: Release Maven Doxia Plugin 1.9.1?

2020-01-15 Thread Konrad Windszus
Ping, any update? Maybe there is a workaround to make md code statements work, but I currently fail to see it, therefore a release to fix this regression would be highly appreciated. Konrad > On 20. Dec 2019, at 12:03, Michael Osipov wrote: > > Am 2019-12-20 um 11:52 schrieb Konrad

Re: maven surefire report does not pick up message published by JUnit5-TestReporter

2020-01-15 Thread Knoche, Heinz
Hello Tibor, thanks a lot for clarifying this issue. Regards, Heinz Am Mittwoch, den 15.01.2020, 09:58 +0100 schrieb Tibor Digana: > The TestReporter is not supported yet. > Currently, in M5, we are fixing the process communication via pipes and TCP. > Then we will work on this issue in M6 as

Re: maven surefire report does not pick up message published by JUnit5-TestReporter

2020-01-15 Thread Tibor Digana
The TestReporter is not supported yet. Currently, in M5, we are fixing the process communication via pipes and TCP. Then we will work on this issue in M6 as well. Meanwhile please use SLF4J logger or another one. On Wed, Jan 15, 2020 at 8:45 AM Knoche, Heinz wrote: > I uploaded this simple