Re: Continuous Delivery with Maven now possible?

2017-05-04 Thread Karl Heinz Marbaise
Sorry was to fast with the send button... On 04/05/17 22:01, Karl Heinz Marbaise wrote: Hi Robert, On 04/05/17 21:55, Robert Patrick wrote: With 3.5, you can now use a variable *but* that variable has to be accessible to the POM prior to finding its parent so the only solution is to move

Re: Continuous Delivery with Maven now possible?

2017-05-04 Thread Karl Heinz Marbaise
Hi Robert, Ah now I see the issue. If you have a multi module build you should use mvn -pl moduleToBuild clean install but from root location and don't change into the module directory cause this can't work like this. Kind regards Karl Heinz Marbaise On 04/05/17 22:08, Robe

Re: [EXTERNAL] RE: Continuous Delivery with Maven now possible?

2017-05-04 Thread Karl Heinz Marbaise
other things wrong which results in not working things like this.. Kind regards Karl Heinz Marbaise -Original Message- From: Robert Patrick [mailto:robert.patr...@oracle.com] Sent: Thursday, May 4, 2017 3:18 PM To: Maven Users List ; i...@soebes.de Subject: [EXTERNAL] RE: Continuous Delivery

Re: [EXTERNAL] RE: Continuous Delivery with Maven now possible?

2017-05-08 Thread Karl Heinz Marbaise
flatten-maven-plugin.. Thanks. Kind regards Karl Heinz Marbaise Thanks -D On Thu, May 4, 2017 at 2:52 PM, Karl Heinz Marbaise wrote: Hi, On 04/05/17 22:52, Justin Georgeson wrote: Also I believe the partial reactor switches don't work for Tycho builds. You mean -pl ..option I suppose

Re: [EXTERNAL] RE: Continuous Delivery with Maven now possible?

2017-05-08 Thread Karl Heinz Marbaise
10:09 PM, Karl Heinz Marbaise wrote: Hi Dan, On 05/05/17 02:30, Dan Tran wrote: is flatten-maven-plugin threadsafe? if not, we have a problem with large project where multhreaded build is a must have maven 3.5 displays a warning on flatten-maven-plugin not thread safe I need to take a

Re: [EXTERNAL] RE: Continuous Delivery with Maven now possible?

2017-05-08 Thread Karl Heinz Marbaise
ww.apache.org/licenses/LICENSE-2.0.txt repo which is now consumeable by any kind of tool etc. also Maven itself for example as a dependency I hope it makes this more clear... If not please ask/suggest improvements about the docs or what you need to know Kind regards

Re: [EXTERNAL] RE: Continuous Delivery with Maven now possible?

2017-05-10 Thread Karl Heinz Marbaise
ickup at IDEs eclipse, Intellij, and netbeans No major means there are some? Do you have some more details... Kind regards Karl Heinz Marbaise If you have any idea on the root cause of memory issue please advice Thanks -Dan On Mon, May 8, 2017 at 10:27 AM, Karl Heinz Marbaise wrote: Hi to

[ANN] Apache Maven Shared Component: Maven Artifact Transfer Version 0.9.1 Released

2017-05-11 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven Shared Component: Maven Artifact Transfer Version 0.9.1. https://maven.apache.org/shared/maven-artifact-transfer/ An API to install, deploy and resolving artifacts with Maven3 You should specify the version in your pr

[ANN] Apache Maven Shared Component: Maven Dependency Tree Version 3.0.1 Released

2017-05-11 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven Shared Component: Maven Dependency Tree 3.0.1. https://maven.apache.org/shared/maven-dependency-tree/ A tree-based API for resolution of Maven project dependencies. You should specify the version in your project's plu

[ANN] Apache Maven Dependency Plugin Version 3.0.1 Released

2017-05-16 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven Dependency Plugin Version 3.0.1. https://maven.apache.org/plugins/maven-dependency-plugin/ Important Note since 3.0.0: * Maven 3.X only * JDK 6 minimum requirement You should specify the version in your project's p

Re: Jenkins builds

2017-05-19 Thread Karl Heinz Marbaise
chiva) which handles the separation between the artifacts which are created by your own and the ones you are consuming from outside (for example from Maven Central).. There I would suggest to make this difference for your own artifacts and the artifacts which you call "external"... Ki

Re: Jenkins builds

2017-05-19 Thread Karl Heinz Marbaise
this cache does not exist your node can't run the build there...That's why the build cache in the workspace is the best option... Kind regards Karl Heinz Marbaise Something like: ~/.m2/repository /log4j /commons-io /… $WORKSPACE1/.m2/repository /customer1-lib /buil

Re: Inject xml into the POM for build specific elements.

2017-05-30 Thread Karl Heinz Marbaise
e al look at the tiles-maven-plugin[1] which might help here... Maybe you can give an example what becomes so long or complicated ? Kind regards Karl Heinz Marbaise [1]: https://github.com/repaint-io/maven-tiles - To unsubscri

Re: Work-around for antrun AttachArtifact not working in external Ant build file

2017-05-31 Thread Karl Heinz Marbaise
-maven-plugin/ or: https://github.com/khmarbaise/iterator-maven-plugin/ Kind regards Karl Heinz Marbaise On 31/05/17 11:42, Jürgen Weber wrote: Hi Jörg, problem is, I have to build message driven beans, some 20, only difference is the queue name in the deployment descriptor. Queue names are

Re: Inject xml into the POM for build specific elements.

2017-06-05 Thread Karl Heinz Marbaise
orate pom only once... Kind regards Karl Heinz Marbaise On 05/06/17 14:42, George Kopf wrote: Thank you for your help. I figured it out using the tiles-maven-plugin. After fighting through the documentation I put together a simple tile and pulled it into my pom. To clarify what the doc

Re: maven-3.2.4 location

2017-06-06 Thread Karl Heinz Marbaise
Hi Martin, unfortunately there does not exist a distro for Maven 3.2.4 cause this has never been made it to the public... Only 3.2.5... Apart from that it looks this test in Apache Rat Plugin does not work correctly... Are you trying to fix it ? Kind regards Karl Heinz Marbaise On 06/06

Re: Profiling Maven Compilation for a multi-module project

2017-06-09 Thread Karl Heinz Marbaise
ble to see which steps are getting executed in parallel relative to which step? Maybe I misunderstand your question but what about comparing: mvn clean package against: mvn -T clean package ? Kind regards Karl Heinz Marbaise I am executing maven with -T 4. - Maven Version 3.

Re: Follow up: Building projects for multiple platforms

2017-06-16 Thread Karl Heinz Marbaise
making a module with JDK 8 code in it pluse unit tests... A separate module which uses the JDK 8 code as dependency and using the retrolambda plugin and maybe some supplemental tests on it...using JDK 7 which can be handled with Toolchain... Kind regards Karl Heinz Marbaise On 16/06/17 14:25

Re: Follow up: Building projects for multiple platforms

2017-06-17 Thread Karl Heinz Marbaise
7;t even test it... Kidn regards Karl Heinz Marbaise Chris Am 16.06.17, 14:36 schrieb "Karl Heinz Marbaise" : Hi, I would make a separate module for java8 and run there the retrolambda- maven-plugin and another separate module for java7 and run there the ret

[ANN] Apache Maven Shared Component: Maven Shared Utils Version 3.2.0 Released

2017-06-17 Thread Karl Heinz Marbaise
anoTime' instead of 'System.currentTimeMillis'. * [MSHARED-639] - Removed prerequisites cause it is not a plugin Task: * [MSHARED-623] - Deprecation of methods 'close' and 'flush' of class 'StreamPumper'. Enjos, -The Apache Maven team Karl Heinz Marbaise

Re: Customize the bundleFilename template used by the maven-ear-plugin?

2017-06-20 Thread Karl Heinz Marbaise
type. Are you looking for something like that? Kind regards Karl Heinz Marbaise On 20/06/17 19:21, Eric B wrote: Is there a way to customize the filename used by the maven-ear-plugin for the different modules but in a general template way? At the moment, the bundleFilename by default seems

[ANN] Apache Maven Shared Component: Maven Reporting Impl Version 3.0.0 Released

2017-06-25 Thread Karl Heinz Marbaise
ared Utils 3.1.0 Wish: * [MSHARED-488] - Make input source file encoding default to platform encoding Enjos, -The Apache Maven team Karl Heinz Marbaise - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additi

Re: Excessive "checking for updates" on Travis CI

2017-06-29 Thread Karl Heinz Marbaise
HI, first you are using version ranges...that's the reason for that... Simple recommendation I can give is: Don't use version ranges... Kind regards Karl Heinz Marbaise On 29/06/17 19:13, Mark Raynsford wrote: Hello. I use the free Travis CI service to build my various projec

Re: Excessive "checking for updates" on Travis CI

2017-07-02 Thread Karl Heinz Marbaise
ude etc. Kind regards Karl Heinz Marbaise - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: Excessive "checking for updates" on Travis CI

2017-07-02 Thread Karl Heinz Marbaise
Hi Mark, On 29/06/17 19:50, Mark Raynsford wrote: On 2017-06-29T19:38:40 +0200 Karl Heinz Marbaise wrote: HI, first you are using version ranges...that's the reason for that... Simple recommendation I can give is: Don't use version ranges... Hello. I maintain ~70 pro

Re: Maven resources plugin issue?

2017-07-03 Thread Karl Heinz Marbaise
tering. Do I mistaken something? What do you mean by it's not copied? Can you please create a complete example project which shows the problem?...best would be on github so we can take a look... Before we dig into details I would like to have the start situation define... Kind reg

Re: maven-plugin-testing-harness

2017-07-26 Thread Karl Heinz Marbaise
17/hard-time-mojo-testing-with-maven-plugin-testing-harness Regards Adam Kind regards Karl Heinz Marbaise - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: maven-plugin-testing-harness

2017-07-26 Thread Karl Heinz Marbaise
Hi, On 26/07/17 20:13, Karl Heinz Marbaise wrote: Hi, On 26/07/17 11:49, ahardy42 wrote: Is there life is in this testing harness still? I'm looking at https://maven.apache.org/plugin-testing/maven-plugin-testing-harness/ The link to JIRA returns 503 - http://jira.codehaus.org/b

Re: How is the best way to get an effective POM outside of a Maven Plugin?

2017-08-09 Thread Karl Heinz Marbaise
the maven model... Kind regards Karl Heinz Marbaise On 09/08/17 13:00, spars...@web.de wrote: Hello, currently, I'm working on a small tool, that needs some information of a POM and its parent POM. I didn't want to parse them with a XML reader, so I found that the DefaultModelB

Re: apache-maven-3.3.9 silently doesn't compile with jdk7 (it does with jdk8)

2017-08-09 Thread Karl Heinz Marbaise
Hi, can you give a full working example of that... cause it sounds like there is something wrong with your configuration... What does: "mvn --version" says? Are you trying to run in console or running from inside of Eclipse? Kind regards Karl Heinz Marbaise On 08/08/17 16:38, bamb

Re: apache-maven-3.3.9 silently doesn't compile with jdk7 (it does with jdk8)

2017-08-09 Thread Karl Heinz Marbaise
s not maven problem but config issue in your box. We haved dived into that more and it is not a config issue...I can reproduce the problem...(We have not yet the root cause)... But you can see the description here: https://issues.apache.org/jira/browse/MCOMPILER-302 Kind regards Karl Heinz Mar

[ANN] Apache Maven Shared Component: Maven Archiver Version 3.2.0 Released

2017-08-13 Thread Karl Heinz Marbaise
644] - Removed prerequisites for none maven-plugin project * [MSHARED-653] - Upgrade to plexus-archiver 3.5 Enjos, -The Apache Maven team Karl Heinz Marbaise - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For addition

Re: Maven return code 502, ReasonPhrase:notresolvable

2017-08-13 Thread Karl Heinz Marbaise
l...Or bad configuration of Nexus etc.. How does your settings.xml look like? Kind regards Karl Heinz Marbaise On 13/08/17 18:29, Mehul Sanghvi wrote: I upgraded my Nexus OSS server to version 2.14.5-02, and I still see the same issue. All new builds that I have get affected by this, unless

[ANN] Apache Maven Assembly Plugin Version 3.2.0 Released

2017-08-16 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven Assembly Plugin Version 3.1.0 The Assembly Plugin for Maven is primarily intended to allow users to aggregate the project output along with its dependencies, modules, site documentation, and other files into a single dis

[ANN] Apache Maven Assembly EJB Version 3.0.0 Released

2017-08-19 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven EJB Plugin Version 3.0.0 This plugin generates J2EE Enterprise Javabean (EJB) file as well as the associated client jar. https://maven.apache.org/plugins/maven-ejb-plugin/ Important Note since 3.0.0: * Maven 3.X onl

Re: How does maven handle Java module dependencies?

2017-08-27 Thread Karl Heinz Marbaise
w weeks... Kind regards Karl Heinz Marbaise [1]: http://blog.soebes.de/blog/2017/06/06/howto-create-a-java-run-time-image-with-maven/ [2]: https://github.com/khmarbaise/jdk9-jlink-jmod-example/tree/master/maven-example thanks, Robert On Sun, 27 Aug 2017 13:50:46 +0200, Russell Gold wr

Re: Is there a way to make a mojo run after "deploy" completion?

2017-09-03 Thread Karl Heinz Marbaise
n is bound to an life cycle like "deploy" (Preferrably only run my mojo if deployment has been successful, though I could live with running it every time) Kind regards Karl Heinz Marbaise - To unsubscribe, e-

Re: Release plugin: why are my releases tagged as snapshots?

2017-09-10 Thread Karl Heinz Marbaise
ecent versions of maven-release-plugin (but I'm not sure if really support releases of childs at the moment?)... Kind regards Karl Heinz Marbaise On 10/09/17 20:52, Chris wrote: I've been informed at https://issues.sonatype.org/browse/OSSRH-34445 that: "The logs show that th

Re: Release plugin: why are my releases tagged as snapshots?

2017-09-10 Thread Karl Heinz Marbaise
gin] prepare release ..." Haven't you deleted this tag if something has failed with the release on the remote ? Kind regards Karl Heinz Marbaise On 10/09/17 21:52, Chris wrote: Actually, the parent pom.xml can probably be deleted now. I was trying to keep the child one togethe

Re: Project dependencies vs plugin dependencies for a mojo looking at the project

2017-09-13 Thread Karl Heinz Marbaise
form myGroup:myPlugin:version e.g. com.megacorp:thing-plugin:1.0.2 can I get my mojo's own key programmatically in the mojo to avoid hard-coding it? Can you please explain what you are trying to accomplish ? Thanks Adam Kind regards Karl Heinz Marbaise

Re: Project dependencies vs plugin dependencies for a mojo looking at the project

2017-09-13 Thread Karl Heinz Marbaise
e easily done by using a maven-artifact-transfer[3]. But I don't see the requirement to define it in two place ? Kind regards Karl Heinz Marbaise [1]: https://maven.apache.org/plugins/maven-dependency-plugin/unpack-mojo.html [2]: https://maven.apache.org/plugins/maven-depend

[ANN] Apache Maven Dependency Plugin Version 3.0.2 Released

2017-09-14 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven Dependency Plugin Version 3.0.2. https://maven.apache.org/plugins/maven-dependency-plugin/ Important Note since 3.0.0: * Maven 3.X only * JDK 6 minimum requirement You should specify the version in your project's p

[ANN] Apache Maven JLink Plugin Version 3.0.0-alpha-1 Released

2017-09-14 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven JLink Plugin Version 3.0.0-alpha-1 release https://maven.apache.org/plugins/maven-jlink-plugin/ The plugin has got the major version 3 to make clear this plugin is only for Maven 3+. * Maven 3.X only * JDK 7 minimum

[ANN] Apache Maven JMod Plugin Version 3.0.0-alpha-1 Released

2017-09-20 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven JMod Plugin Version 3.0.0-alpha-1 release https://maven.apache.org/plugins/maven-jmod-plugin/ The JMod Plugin is used to create JMod Files http://openjdk.java.net/jeps/261 The plugin has got the major version 3 to mak

Re: Specifying version range for dependency causes resolver error; maven-metadata.xml on central looks wrong - how do I make ranges work?

2017-09-26 Thread Karl Heinz Marbaise
release notes for detail... Kind regards Karl Heinz Marbaise I'm running Apache Maven 3.3.9 and that's the latest jar in my local repo. (The docs specify version 3.3.9 for the actual jar.) Do I need to pull the latest one, or is something else broken the

Re: Specifying version range for dependency causes resolver error; maven-metadata.xml on central looks wrong - how do I make ranges work?

2017-09-26 Thread Karl Heinz Marbaise
Hi, based on the feedback I got here: https://issues.sonatype.org/browse/MVNCENTRAL-2721 It could be only a little time to be fixed in Maven Central.. Kind regards Karl Heinz Marbaise On 26/09/17 13:12, Karl Heinz Marbaise wrote: Hi, On 26/09/17 13:02, Christian Balzer wrote: Hi all, I

Re: Updating from 3.3.9 to 3.5.0 causing strange unit test failures

2017-10-01 Thread Karl Heinz Marbaise
First I would suggest to keep Maven 3.3.9 and upgrade maven-surefire-plugin to newer versions and see if it does not break anything... Afterwards I would upgrade to Maven 3.5.0... Kind regards Karl Heinz Marbaise Steps to reproduce using maven 3.5.0 with jdk7 (windows) git clone https://git-wi

Re: Updating from 3.3.9 to 3.5.0 causing strange unit test failures

2017-10-01 Thread Karl Heinz Marbaise
ght this may have been some kind of string to byte encoding issue (it still may be). Still investigate this. Using surefire 2.4 with junit 4.12. based on the pom files there two definitions one for maven-surefire-plugin 2.4 and one for maven-surefire-plugin 2.15...which I would suggest clean up...

Re: Updating from 3.3.9 to 3.5.0 causing strange unit test failures

2017-10-02 Thread Karl Heinz Marbaise
Hi Alex, I've also seen that the project inherits from apache parent version 13 which is 4 years old...in the meantime we are at version 18... Kind regards Karl Heinz Marbaise See: http://maven.apache.org/pom/asf/ On 02/10/17 00:57, Alex O'Ree wrote: after further investiga

[ANN] Apache Maven WAR Plugin Version 3.2.0 Released

2017-10-08 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven WAR Plugin, version 3.2.0. The WAR Plugin is responsible for collecting all artifact dependencies, classes and resources of the web application and packaging them into a web application archive. http://maven.apache.org/

Re: how to use both buildnumber-maven-plugin and maven-release-plugin

2017-10-24 Thread Karl Heinz Marbaise
Hi, the question is what the real problem is? Can you have an example project which shows the problem? Or can you describe more in detail what exactly does not work or not work like you expect it.. Kind regards Karl Heinz Marbaise

Re: [EXTERNAL] Re: how to use both buildnumber-maven-plugin and maven-release-plugin

2017-10-24 Thread Karl Heinz Marbaise
I misunderstand your question but it sounds like you are trying to resolve a thing which has been solved by maven-release-plugin already?... Kind regards Karl Heinz Marbaise Looks like if I configure a default property value for maven.buildNumber.doCheck to true, then I can have a profile a

Re: how to use both buildnumber-maven-plugin and maven-release-plugin

2017-10-25 Thread Karl Heinz Marbaise
released artifact. If you like to use a property for the version. First you have to use Maven 3.5.0+ and furthermore flatten-maven-plugin as described in the docs about that[1]. Kind regards Karl Heinz Marbaise [1]: http://maven.apache.org/maven-ci-friendly.html Cheers, Steve C On 24 Oct 2017

Re: Auto-increment semantic version number for CD pipeline with git and docker

2017-10-27 Thread Karl Heinz Marbaise
ange (either via merge or via direct commit; This is a different story to tell) on the master/trunk. This means that you can simply prevent parallel build of master/trunk...so in the end the master/trunk will always produce a single version. Kind regards Karl Heinz Marbaise -

Re: Problems Using ANTLR4 (Packaged Classes Not Found in Generated Code)

2017-10-29 Thread Karl Heinz Marbaise
Hi, can make a test project on Github/gitlab etc. Kind regards Karl Heinz Marbaise On 29/10/17 05:13, R0b0t1 wrote: Is any more information needed? The files are generated properly by ANTLR, but I can not compile the generated files. [INFO

Re: Unrecognised tag: 'testResources'

2017-10-30 Thread Karl Heinz Marbaise
use maven 3.5.0. Who can help? Kind regards Karl Heinz Marbaise - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: Special parameters - sha1

2017-11-14 Thread Karl Heinz Marbaise
more what the real problem is ? ... Kind regards Karl Heinz Marbaise - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: sorting versions for artifacts with hypen and / or dot in filename

2018-01-09 Thread Karl Heinz Marbaise
have? Kind regards Karl Heinz Marbaise Thanks. - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: Anything in pipeline to add functionality to read pom in different formats?

2018-02-01 Thread Karl Heinz Marbaise
ial non-XML format? If you like to use something different you can take a look at: https://github.com/takari/polyglot-maven Ruby, Yaml Kind regards Karl Heinz Marbaise - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org

Re: Maven Plugin Testing Tools deprecated

2018-03-03 Thread Karl Heinz Marbaise
. I wouldn't really call it deprecated but based on the experiences I (and other devs) have it's easier to write integration tests via maven-invoker-plugin for plugins... The question is what kind of integration tests you have and what exactly you need to test... Kind regards Karl

Re: [m-jlink-p] missing --launcher and other CLI options in alpha1

2018-03-08 Thread Karl Heinz Marbaise
, --verbose Enable verbose tracing --version Version information @ Read options from file Kind regards Karl Heinz Marbaise - To unsubscribe, e-

Re: maven-install-plugin: Why it does not install the artifacts

2018-03-12 Thread Karl Heinz Marbaise
o a project github/bitbucket etc... Kind regards Karl Heinz Marbaise - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

[ANN] Apache Maven EAR Version 3.0.0 Released

2018-03-12 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven EAR Plugin Version 3.0.0 This plugin generates Java EE Enterprise Archive (EAR) file. It can also generate the deployment descriptor file (e.g. application.xml). https://maven.apache.org/plugins/maven-ear-plugin/ Imp

Re: [ANN] Apache Maven EAR Version 3.0.0 Released

2018-03-15 Thread Karl Heinz Marbaise
Building the EAR via command line works and generates a correct EAR, i.e. contains the WAR module with the groupId in its name. Kind regards Karl Heinz Marbaise - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For ad

Re: How to tell maven where to look for extensions (instead of central repository)

2018-03-15 Thread Karl Heinz Marbaise
hich Maven version do you use? How have you configured your own repositories? Via settings.xml or via repository manager ? Kind regards Karl Heinz Marbaise Thank you very much in advance. Kind regards, Salva - To unsubscri

Re: How to tell maven where to look for extensions (instead of central repository)

2018-03-15 Thread Karl Heinz Marbaise
e have you checked that the extension you are trying to get is really under the given coordinates and the same version available ? Kind regards Karl Heinz Marbaise [1]: https://books.sonatype.com/nexus-book/2.8/reference/maven-sect-single-group.html Thank you Karl, I appreciate your help.

Re: mvn dependency:analyze fails with IllegalArgumentException

2018-03-23 Thread Karl Heinz Marbaise
Hi Henrik, can you try to add the following to your pom configuration (just a try to see if I'm on the right path): org.apache.maven.plugins maven-dependency-plugin org.ow2.asm asm 6.1 and just give a try to rerun it... Kind regards Karl

Re: mvn dependency:analyze fails with IllegalArgumentException

2018-03-24 Thread Karl Heinz Marbaise
Hi Henrik, So I created a ticket for that: https://issues.apache.org/jira/browse/MDEP-603 So thanks for reporting this here...and of course for you feedback. Kind regards Karl Heinz Marbaise On 24/03/18 11:14, Henrik Eriksson wrote: Hi Karl, That worked! Regards Henrik 2018-03-23 19:35

[ANN] Apache Maven Shared Component: Maven Dependency Analyzer Version 1.9 Released

2018-03-28 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven Shared Component: Maven Dependency Analyzer Version 1.9 https://maven.apache.org/shared/maven-dependency-analyzer/ Analyzes the dependencies of a project for undeclared or unused artifacts. You should specify the ve

[ANN] Apache Maven Dependency Plugin Version 3.1.0 Released

2018-04-06 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven Dependency Plugin Version 3.1.0 https://maven.apache.org/plugins/maven-dependency-plugin/ Important Note since 3.1.0: * Maven 3.X only * JDK 7 minimum requirement You should specify the version in your project's pl

[ANN] Apache Maven Shade Plugin Version 3.1.1 Released

2018-04-06 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven Shade Plugin Version 3.1.1 https://maven.apache.org/plugins/maven-shade-plugin/ Important Note since 3.1.1: * Maven 3.X only You should specify the version in your project's plugin configuration: org.apache.mav

[ANN] Apache Maven JAR Plugin Version 3.1.0 Released

2018-04-10 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven JAR Plugin Version 3.1.0. https://maven.apache.org/plugins/maven-jar-plugin/ Important Note: * Maven 3.X only * JDK 7 minimum requirement You should specify the version in your project's plugin configuration:

[ANN] Apache Maven Clean Plugin Version 3.1.0 Released

2018-04-14 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven Clean Plugin Version 3.1.0. https://maven.apache.org/plugins/maven-clean-plugin/ Important Note: * Maven 3.X only * JDK 7 minimum requirement You should specify the version in your project's plugin configuration:

[ANN] Apache Maven Resources Plugin Version 3.1.0 Released

2018-05-01 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven Resources Plugin Version 3.1.0. https://maven.apache.org/plugins/maven-resources-plugin/ The Resources Plugin handles the copying of project resources to the output directory. There are two different kinds of resources

Re: Welcome Christian Stein to the Apache Maven Team

2018-05-07 Thread Karl Heinz Marbaise
Hello Christian, welcome... Kind regards Karl Heinz Marbaise On 07/05/18 22:01, Robert Scholte wrote: Hi, On behalf of the Apache Maven PMC I am pleased to announce that Christian Stein (sor) has been voted in as a new Apache Maven committer. Christian, welcome on board and have a lot of

[ANN] Apache Maven Assembly EJB Version 3.0.1 Released

2018-05-09 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven EJB Plugin Version 3.0.1 This plugin generates J2EE Enterprise Javabean (EJB) file as well as the associated client jar. https://maven.apache.org/plugins/maven-ejb-plugin/ Important Note since 3.0.1: * Maven 3.X onl

[ANN] Apache Maven WAR Plugin Version 3.2.1 Released

2018-05-13 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven WAR Plugin, version 3.2.1. The WAR Plugin is responsible for collecting all artifact dependencies, classes and resources of the web application and packaging them into a web application archive. http://maven.apache.org/

[ANN] Apache Maven EAR Version 3.0.1 Released

2018-05-13 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven EAR Plugin Version 3.0.1 This plugin generates Java EE Enterprise Archive (EAR) file. It can also generate the deployment descriptor file (e.g. application.xml). https://maven.apache.org/plugins/maven-ear-plugin/ Imp

Re: From where to download Maven?

2018-05-13 Thread Karl Heinz Marbaise
t are not valid cause codehaus is long time a go shutted down... Kind regards Karl Heinz Marbaise On 13/05/18 17:23, Martin Gainty wrote: follow anders recommendation of maven install (latest version of ) location: https://maven.apache.org/download.cgi Maven – Download Apache Maven&

[ANN] Apache Maven Shared Component: Maven Dependency Analyzer Version 1.10 Released

2018-05-17 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven Shared Component: Maven Dependency Analyzer Version 1.10 https://maven.apache.org/shared/maven-dependency-analyzer/ Analyzes the dependencies of a project for undeclared or unused artifacts. You should specify the v

[ANN] Apache Maven Dependency Plugin Version 3.1.1 Released

2018-05-23 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven Dependency Plugin Version 3.1.1 https://maven.apache.org/plugins/maven-dependency-plugin/ Important Note since 3.1.1: * Maven 3.X only * JDK 7 minimum requirement You should specify the version in your project's pl

[ANN] Plexus Interpolation Version 1.25 Released

2018-06-02 Thread Karl Heinz Marbaise
regards Karl Heinz Marbaise - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: Parent not deployed/

2018-06-06 Thread Karl Heinz Marbaise
https://github.com/nswamy/incubator-mxnet/tree/v1.2.0/scala-package/assembly What is the problem with deploying / releasing the parent poms as well? What is the issue with them? Kind regards Karl Heinz Marbaise - To unsubscribe, e-mail:

Re: ear without libraries

2018-06-08 Thread Karl Heinz Marbaise
cannot make it how must y use the ear pluging for exclude all dependencies ? thanks Kind regards Karl Heinz Marbaise - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h

[ANN] Apache Maven Help Plugin Version 3.1.0 Released

2018-06-09 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven Help Plugin Version 3.1.0 https://maven.apache.org/plugins/maven-help-plugin/ You should specify the version in your project's plugin configuration: Important Notes since Version 3.0.0 * Maven 3+ only * JDK 7 minim

[ANN] Apache Maven WAR Plugin Version 3.2.2 Released

2018-06-10 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven WAR Plugin, version 3.2.2. The WAR Plugin is responsible for collecting all artifact dependencies, classes and resources of the web application and packaging them into a web application archive. https://maven.apache.org

Re: When does a Maven plugin uses the POM in the current directory?

2018-06-12 Thread Karl Heinz Marbaise
Hi, you can do that in different flavours.. by using an execution id like `default-cli` this will be used during the execution on command line (using the current configuration) furthermore since Maven 3.3.1 you can use things like[1]: mvn version:set@Id which means you can do a different co

Re: Notice: Java 6 and 7 users: SSL Protocol upgrades coming to Central

2018-06-13 Thread Karl Heinz Marbaise
Hi Brian, I have posted the same here: https://blogs.apache.org/maven/entry/notice-java-6-and-7 Kind regards Karl Heinz Marbaise On 21/05/18 20:22, Brian Fox wrote: The march of standards continues unabated. Legacy TLS protocols 1.0 and 1.1 have varying weaknesses that could lead to a false

[ANN] Apache Maven ACR Plugin Version 3.1.0 Released

2018-06-23 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven ACR Plugin Version 3.1.0. This plugin generates J2EE Application Client file. https://maven.apache.org/plugins/maven-acr-plugin/ Important Note: * Maven 3.X only * JDK 7 minimum requirement You should specify the

Re: No compiler is provided in this environment - how to stop this error ?

2018-06-24 Thread Karl Heinz Marbaise
just remove them... Furthermore I see in the screenshots that there are compilation errors...furthermore to drill down to the problem it would be more helpful to test on plain command line...and from within Eclipse etc.. Kind regards Karl Heinz Marbaise On 24/06/18 06:02, Karen Goh wrote: T

Re: Release a snapshot version

2018-06-27 Thread Karl Heinz Marbaise
versions is not a release cause it can change etc. whereas a release is immutable can not change... Maybe I misunderstand your question but based on this it makes no sense to me... Kind regards Karl Heinz Marbaise ---

Re: Java 9 modules for Maven components for Java 9 based pluggins

2018-06-28 Thread Karl Heinz Marbaise
maven.core Can you please show your pom file or a reference to a github/bitbucket project...cause the error message implies there is something cause you seemed to have dependencies to maven.plugin.api and maven.core which usually does not happen in a usual java project... Kind regards Karl Heinz

Re: after upgrade to maven 3.5.4 release plans fail when trying to upload source jar twice

2018-06-29 Thread Karl Heinz Marbaise
to 3.5.3 fixes it. Anyone else seeing this behaviour? Do you have a sample project which reproduces the issue (github / bitbucket / gitlab) and very important the whole pom filesalso a log file would be helpful... Kind regards Karl Heinz Marba

Re: after upgrade to maven 3.5.4 release plans fail when trying to upload source jar twice

2018-07-03 Thread Karl Heinz Marbaise
without the execution block...which should not influence it but does which needs a more deep analysis...and looks like a bug... Kind regards Karl Heinz Marbaise On 03/07/18 18:33, Jim Sellers wrote: Hi Karl. I've created a minimal project. The git and nexus / repo info wo

Re: after upgrade to maven 3.5.4 release plans fail when trying to upload source jar twice

2018-07-03 Thread Karl Heinz Marbaise
Hi, The issue looks a bit like: https://issues.apache.org/jira/browse/MNG-5359 On 03/07/18 21:04, Karl Heinz Marbaise wrote: Hi Jim, first thanks for the example project which helps a lot to find the real problem... So the issue is related to two things. First you have defined your own a

Re: Wrong version ids in doxia-modules

2018-07-03 Thread Karl Heinz Marbaise
ral: http://search.maven.org/#search%7Cga%7C1%7Corg.apache.maven.doxia They are all available as JAR's as well as sources etc. ? Kind regards Karl Heinz Marbaise - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org

Re: after upgrade to maven 3.5.4 release plans fail when trying to upload source jar twice

2018-07-04 Thread Karl Heinz Marbaise
ate the profile via -P ...on command to see the result with simply `mvn clean install`... Kind regards Karl Heinz Marbaise 2) I tried it just with the execution part commented out, and I don't see any -sources jars again. I had expected to from your above comment. 3) I noticed that the su

Re: repository problems (ibiblio.org) - redirections , HTTP response codes

2018-07-05 Thread Karl Heinz Marbaise
Hi, my first questions is: Why do you use ibiblio ? And not central ? Kind Regards Karl Heinz Marbaise On 05/07/18 16:24, David Balažic wrote: Hi! During a clean build (we wiped the local repository cache) we encountered a problem with one artefact. We used the latest maven version 3.5.4

[ANN] Apache Maven Shared Component: Maven Artifact Transfer Version 0.10.0 Released

2018-07-05 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the Apache Maven Shared Component: Maven Artifact Transfer Version 0.10.0. https://maven.apache.org/shared/maven-artifact-transfer/ An API to install, deploy and resolving artifacts with Maven3 You should specify the version in your p

Re: Maven plugin naming best practices

2018-07-07 Thread Karl Heinz Marbaise
p id is preferable - com.atilika or com.atilika.maven.plugins? Are there any best practices or recommendations here? I would suggest to use com.atilika.maven.plugins to make clear that it is a maven plugin... Kind regards Karl Heinz

<    1   2   3   4   5   6   7   8   9   >