Re: Terminology proposal: "Maven module" -> "Maven sub-project"

2024-08-05 Thread Oliver B. Fischer
definition of a Maven subproject and what there is it documented. And how to explain a junior dev why he must call it Maven subproject but must write module. IMHO this would cause much more confusion then we all would profit from it. j2c, Oliver Am 05.08.24 um 14:14 schrieb Martin

Re: [DISCUSS] Maven Dependency Plugin

2024-03-23 Thread Oliver B. Fischer
ntext, but there is a reason why these goals/functions have been added. Oliver Am 21.03.24 um 19:43 schrieb Tamás Cservenák: Howdy, Oliver: all, really? I wonder what you used for goals like "purge-local-repository", "resolve-plugins" etc :) I mean, I know what those g

Re: [DISCUSS] Maven Dependency Plugin

2024-03-21 Thread Oliver B. Fischer
Hi, over the time I used all of them in different projects and I think all of them are needed. Viele Grüße Oliver Am 21.03.24 um 17:04 schrieb Tamás Cservenák: Howdy, I'd would be interested in how users and devs are using maven-dependency-plugin: https://maven.apache.org/plugins/

Re: MavenProject.getRuntimeClasspathElements() not returning runtime elements

2021-10-07 Thread Oliver Drotbohm
?url=https%3A%2F%2Fwww.packtpub.com%2Fapplication-development%2Fjava-ee-8-high-performance&data=04%7C01%7Codrotbohm%40vmware.com%7Cc032104a78794cf6891208d989922cf0%7Cb39138ca3cee4b4aa4d6cd83d9dd62f0%7C0%7C1%7C637692083177249862%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXV

Re: MavenProject.getRuntimeClasspathElements() not returning runtime elements

2021-10-07 Thread Oliver Drotbohm
n 7. Oct 2021, at 13:32, Oliver Drotbohm wrote: > > I'll give it a spin. Sorry for the apparent double post. I wasn't sure which > email address I was subscribed with and the original post didn't seem to > appear in my inbox, so I thought it was the wrong one. O:-)

Re: MavenProject.getRuntimeClasspathElements() not returning runtime elements

2021-10-07 Thread Oliver Drotbohm
I'll give it a spin. Sorry for the apparent double post. I wasn't sure which email address I was subscribed with and the original post didn't seem to appear in my inbox, so I thought it was the wrong one. O:-) > On 7. Oct 2021, at 13:16, Mickael Istria wrote: > > Hi, > > I don't know for sure

MavenProject.getRuntimeClasspathElements() not returning runtime elements

2021-10-07 Thread Oliver Drotbohm
Hi all, in a Maven Plugin project, we need to obtain all elements of the runtime classpath during the *compile* phase. The code is currently calling `project.getRuntimeClasspathElements()`. That in turn iterates over `MavenProject.getArtifacts()` which is documented to only return elements of a

MavenProject.getRuntimeClasspathElements() not returning runtime elements

2021-10-07 Thread Oliver Drotbohm
Hi all, in a Maven Plugin project, we need to obtain all elements of the runtime classpath during the *compile* phase. The code is currently calling `project.getRuntimeClasspathElements()`. That in turn iterates over `MavenProject.getArtifacts()` which is documented to only return elements of a

Re: Feature proposal: Dependency deprecation indicators

2021-08-05 Thread Oliver Fischer
, then we could start to formalize the process. What do you think? Oliver Am 05.08.21 um 16:30 schrieb Chris Kilding: My GitHub user is @chriskilding Chris - To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org For

Re: Feature proposal: Dependency deprecation indicators

2021-08-05 Thread Oliver Fischer
? Oliver Am 02.08.21 um 22:04 schrieb Chris Kilding: @Oliver: Yes, a GitHub repo to write some kind of spec for this feature would be great. Is there an existing Maven enhancement proposals repo we can use (along the lines of what the Jenkins project does in https://github.com/jenkinsci/jep), or

Re: Feature proposal: Dependency deprecation indicators

2021-07-31 Thread Oliver Fischer
contribute to it. WDYT? Oliver Am 28.07.21 um 12:10 schrieb Chris Kilding: Hello, I would like to propose a new Maven feature: dependency deprecation indicators. In a nutshell, the idea is to let maintainers set a 'deprecated' metadata indicator on a Maven artifact in a repository.

Re: Feature proposal: Dependency deprecation indicators

2021-07-30 Thread Oliver B. Fischer
would like to prohibit the usage of specific components, internal and external ones, because of their own regulations. Oliver Am 30.07.2021 um 11:00 schrieb Chris Kilding: Hi, @Oliver: Glad of the help :) My definition of 'deprecated' would be roughly 'this artifact is not act

Re: Feature proposal: Dependency deprecation indicators

2021-07-29 Thread Oliver Fischer
version of an artifact for some reason, for example for security reasons, without having a plan to release any newer version. Oliver Am 28.07.21 um 12:10 schrieb Chris Kilding: Hello, I would like to propose a new Maven feature: dependency deprecation indicators. In a nutshell, the idea

Resolving plugin dependency versions from

2021-04-13 Thread Oliver Drotbohm
Hi all, I was wondering if you have ever discussed to apply versions defined in to plugin dependencies? BOMs have become a ubiquitous thing today but as a BOM author, you currently have no way to define the version for dependencies to be used with plugins. Happy to file a ticket if you think

Re: Kotlin for your pom

2019-03-30 Thread Oliver B. Fischer
Hi Manfred, do you know far Polyglot Maven is already supported by the various IDE? Bye, Oliver Am 30.03.19 um 05:50 schrieb Manfred Moser: > Hi all, > > Just a quick heads up that the new polyglot-maven release I cut recently > features a MUCH improved support for Kotlin. So w

Re: Parsing pom.xml

2018-12-08 Thread Oliver Drotbohm
If it's about pure XML parsing and tweaking the information and building the model is not required, XmlBeam [0] is a lightweight alternative to map the entire file to a Java object. We use that in the Spring Data release automation. Declare an interface containing accessors backed by XPath expr

Re: .jar is installed as .war

2015-12-19 Thread Oliver B. Fischer
Yes, this would be the clean solution and I am refactoring the project to go there. But first I have to separate integration and component tests. Therefore I need the classes in the war module also available as jar for those tests. Oliver Am 19.12.15 um 13:28 schrieb Tibor Digana: @Oliver

Re: .jar is installed as .war

2015-12-19 Thread Oliver B. Fischer
Hi, I decided to create an additional jar while refactoring the the buildstructure of an old project not created by me. The integration and component tests, which I moved to an separated modul, have dependecies to classes of the war producing module. As I can not add a war to the classepath I

.jar is installed as .war

2015-12-19 Thread Oliver B. Fischer
. Sounds like a bug or isn't it a bug? I prepared an example project available at https://bitbucket.org/obfischer/bug-maven-install-plugin/src Oliver - To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org For addit

Re: Java 7 and 8 features

2015-10-27 Thread Oliver B. Fischer
use all these features. But we must not forget the people using our software in their daily work. BYe, Oliver Am 27.10.15 um 16:49 schrieb Vinicius Corrêa de Almeida: I analized some releases and i noticed that not using java 7 features like multi catch and in java 8 do not use lambda

Re: Proposal: Ease the usage of Failsafe

2014-10-28 Thread Oliver B. Fischer
@Paul: Yes I think so or we find a way more convenient in this moment. @all: I think this shows perfectly why Failsafe should be integrated as Surefire already is. Oliver Am 28.10.14 16:02, schrieb Paul Benedict: Thanks. Now I know when to use this. For my situation, which is integration

Proposal: Ease the usage of Failsafe

2014-10-28 Thread Oliver B. Fischer
would be great for a lot of people I think. Oliver

Re: Maven v2.0.9 and Eclipse

2011-03-01 Thread oliver
Hi Bob, what plugin do you mean - the m2eclipse plugin? If yes this plugin allows you to use your installed Maven version (Preferences... > Maven > Installations). regards, Oliver Am 01.03.2011 um 23:21 schrieb bobsyouruncle: > Hello, > > This is my first time using these pr

Re: How to compile code using maven

2011-02-23 Thread oliver
/: ... ${basedir}/src ${basedir}/test src test ... Hope that helps Oliver Am 23.02.2011 um 11:34 schrieb nicolas de loof: > Don't consider Maven as a scripting engine > Maven works based on conventions, and plugins use th

Re: How to inherit from another plugin?

2011-01-11 Thread oliver
Hi Brett, thanx - that was it. Now it works as expected. regards, Oliver Am 11.01.2011 um 22:38 schrieb Brett Porter: > If the code is in a different module to the plugin, you'll need to use the > maven-inherit-plugin [1]. It should work if they are in the same plugin > modul

How to inherit from another plugin?

2011-01-11 Thread oliver
*/ private MavenProject xproject; ... "xproject" of the derived class is initialized by Plexus but not "project" from the super class. Why? regards, Oliver

Opportunity : Maven / Nexus Implementation : Full-Time or Consulting : NJ

2010-08-23 Thread Oliver Eaton
in a consulting capacity at our client). There is a lot more information available at our website http://www.cmi.com. Please contact: Oliver Eaton Recruiting Manager CMI 732-450-1100 ext. 114 oliver.ea...@cmi.com

Publishing JImage-Analyst

2006-11-30 Thread Oliver Siegmar
Hello, I'd like to automatically publich JImage-Analyst (http://www.jimage-analyst.org). How to do this? Best Oliver - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Developing a maven-script-ant with a taget fail with

2006-11-10 Thread Oliver Stauss
-target: [java] java.lang.NoClassDefFoundError: de/mytools/Editor [java] Exception in thread "main" [java] Java Result: 1 [INFO] Thanks in advance Regards Oliver Stauss mytools

[jira] Created: (MCOMPILER-27) More files included that specified

2006-02-11 Thread Oliver Siegmar (JIRA)
More files included that specified -- Key: MCOMPILER-27 URL: http://jira.codehaus.org/browse/MCOMPILER-27 Project: Maven 2.x Compiler Plugin Type: Bug Versions: 2.0 Reporter: Oliver Siegmar I have the following

[jira] Commented: (MNG-1598) It should be possible not to include the META-INF/maven directory in produced jars

2006-02-08 Thread Oliver Siegmar (JIRA)
[ http://jira.codehaus.org/browse/MNG-1598?page=comments#action_58154 ] Oliver Siegmar commented on MNG-1598: - Okay, thanks. But why not just update maven-jar-plugin to 2.0.2 so that others can participate this feature without reading this? > It sho

[jira] Commented: (MNG-1598) It should be possible not to include the META-INF/maven directory in produced jars

2006-02-07 Thread Oliver Siegmar (JIRA)
[ http://jira.codehaus.org/browse/MNG-1598?page=comments#action_58101 ] Oliver Siegmar commented on MNG-1598: - I really need this feature and would like to use it as it has been implemented. But unfortunately maven 2.0.2 still uses maven-archiver 2.0 (I

[jira] Created: (MEV-257) Please upload ditchnet:ditchnet-tabs-taglib 0.8

2005-12-13 Thread Oliver Siegmar (JIRA)
Please upload ditchnet:ditchnet-tabs-taglib 0.8 --- Key: MEV-257 URL: http://jira.codehaus.org/browse/MEV-257 Project: Maven Evangelism Type: Wish Reporter: Oliver Siegmar The binaries are missing and the structure

[jira] Commented: (MEV-186) displaytag has wrong dependency for jstl

2005-11-07 Thread Oliver Siegmar (JIRA)
[ http://jira.codehaus.org/browse/MEV-186?page=comments#action_50228 ] Oliver Siegmar commented on MEV-186: I don't know what a relocation pom is, but in one of my projects jstl 1.0.2 and 1.1.2 get both included, because one is from gr

[jira] Updated: (MEV-186) displaytag has wrong dependency for jstl

2005-11-07 Thread Oliver Siegmar (JIRA)
[ http://jira.codehaus.org/browse/MEV-186?page=all ] Oliver Siegmar updated MEV-186: --- Attachment: displaytag-jstl.diff Here's a fix > displaytag has wrong dependency for jstl > > >

[jira] Created: (MEV-186) displaytag has wrong dependency for jstl

2005-11-07 Thread Oliver Siegmar (JIRA)
displaytag has wrong dependency for jstl Key: MEV-186 URL: http://jira.codehaus.org/browse/MEV-186 Project: Maven Evangelism Type: Bug Components: Invalid POM Reporter: Oliver Siegmar The groupId for jstl should be

[jira] Created: (MEV-167) commons-httpclient lacks dependency for commons-codec

2005-11-03 Thread Oliver Siegmar (JIRA)
commons-httpclient lacks dependency for commons-codec - Key: MEV-167 URL: http://jira.codehaus.org/browse/MEV-167 Project: Maven Evangelism Type: Bug Components: Dependencies Reporter: Oliver Siegmar

[jira] Created: (MEV-161) acegisecurity lacks dependency for oro and commons-codec

2005-10-31 Thread Oliver Siegmar (JIRA)
acegisecurity lacks dependency for oro and commons-codec Key: MEV-161 URL: http://jira.codehaus.org/browse/MEV-161 Project: Maven Evangelism Type: Bug Components: Dependencies Reporter: Oliver Siegmar

Re: [Checkstyle] Plugin now supports checkstyle 3.1

2003-06-01 Thread Oliver Burn
Check that you do not have ANTLR-2.7.1 in your classpath. Checkstyle 3.1 requires ANTLR-2.7.2. "Martin Poeschl" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > built cvs HEAD, run 'maven site' > > i get: > > Got an exception - java.lang.NoSuchFieldError: tokenTypeToASTClassMap > > fo