Re: Dependencies - need help/advice: Getting the latest version of a specific (not all) dependencies

2022-09-25 Thread Nils Breunese
Bruno Melloni wrote: > First, you are right... I misread. When I look at the maven plugins in > pluginManagement I see v2 and v3: clean=3.1.0, compiler=3.8.1, > surefire=2.22.1, jar=3.0.2, install=2.5.2, deploy=2.8.2, site=3.7.1, > project-info-reports=3.0.0. Still, it is > 2.0 so LATEST

Re: Dependencies - need help/advice: Getting the latest version of a specific (not all) dependencies

2022-09-24 Thread Arnaud bourree
Hi, Does yesterday dependency build on an other pc? Then it should be "deploy" to your company central repository (Artifactory, Nexus, ...) to be fetched from your pc. Using version range and snapshot is not good idea. It's better to use snapshot only. If you want incremental version from you

Re: Dependencies - need help/advice: Getting the latest version of a specific (not all) dependencies

2022-09-24 Thread Delany
> Finally I opened app2-0.0.1-SNAPSHOT.jar and looked for the included app1-0.0.1-SNAPSHOT.jar file. What does this mean? On Sat, 24 Sept 2022 at 00:05, Bruno Melloni wrote: > First, you are right... I misread. When I look at the maven plugins in > pluginManagement I see v2 and v3:

Re: Dependencies - need help/advice: Getting the latest version of a specific (not all) dependencies

2022-09-23 Thread Bruno Melloni
First, you are right... I misread.  When I look at the maven plugins in pluginManagement I see v2 and v3:  clean=3.1.0, compiler=3.8.1, surefire=2.22.1, jar=3.0.2, install=2.5.2, deploy=2.8.2, site=3.7.1, project-info-reports=3.0.0.  Still, it is > 2.0 so LATEST is no longer supported as a

Re: Dependencies - need help/advice: Getting the latest version of a specific (not all) dependencies

2022-09-23 Thread Nils Breunese
Hi Bruno, It’s not completely clear to me what your issue is exactly. Is ’the old cached version from January’ that you refer to an artifact with a snapshot version or a release version? If it is a snapshot version, it depends on the update policy whether Maven will use a locally cached

Dependencies - need help/advice: Getting the latest version of a specific (not all) dependencies

2022-09-23 Thread Bruno
I apologize for the length of this email, I could not think of a shorter way to present the issue/questions that is clear enough. --- My environment involves the usual many open source dependencies (which I control by specifying the versions to use in a master POM), but also a large number

Re: Need help for maven site plugin for Apache Helix

2021-11-20 Thread Olivier Lamy
Thanks Hervé!. @Junkai I have merged Hervé's PR On Sat, 20 Nov 2021 at 20:31, Hervé BOUTEMY wrote: > FYI, on the "SiteToolException: Error parsing site descriptor: TEXT must > beimmediately followed by END_TAG and not START_TAG" error, the key Maven > Site > Plugin version is version 3.5,

Re: Need help for maven site plugin for Apache Helix

2021-11-20 Thread Hervé BOUTEMY
FYI, on the "SiteToolException: Error parsing site descriptor: TEXT must beimmediately followed by END_TAG and not START_TAG" error, the key Maven Site Plugin version is version 3.5, where the parsing of site.xml changed: previously it was parser as XML, and since 3.5 it is parsed as text the

Re: Need help for maven site plugin for Apache Helix

2021-11-20 Thread Hervé BOUTEMY
Hi, Apache parent 13 is so old... see https://github.com/apache/helix/pull/1909 upgrading both Apache parent POM and maven-site-plugin seems to do the job Regards, Hervé Le jeudi 18 novembre 2021, 00:04:03 CET Junkai Xue a écrit : > Hi, > > I was trying to deploy Apache Helix project website

Re: Need help for maven site plugin for Apache Helix

2021-11-17 Thread Olivier Lamy
not sure what is the content of your ~/.m2/settings.xml but it may have some references to some repositories? such http://restlet.talend.com , http://repository.apache.org/snapshots. note this http the recent change might be you upgrading to the last maven core version? [*INFO*] Generating

Re: Need help for maven site plugin for Apache Helix

2021-11-17 Thread Martin Gainty
caused by outdated reference to a dead codehaus repo setting codehaus repository enabled=false should mitigate e.g. HTH martin From: Junkai Xue Sent: Wednesday, November 17, 2021 6:04 PM To: users@maven.apache.org Subject: Need help for maven site

Need help for maven site plugin for Apache Helix

2021-11-17 Thread Junkai Xue
Hi, I was trying to deploy Apache Helix project website for new releases. Got exception on *SiteToolException: The site descriptor cannot be resolved from the repository: ArtifactResolutionException: Unable to locate site descriptor: Could not transfer artifact org.apache:apache:xml:site_en:13

Re: Need help: maven-javadoc-plugin: includeDependencySource: error: module not found on module source path

2020-10-28 Thread Benjamin Marwell
Hi Thomas, I investigated a bit further. It seems from the debug output, that the remote sources were fetched. Thus, the error seems misleading: [DEBUG] Expanding: $USER/.m2/repository/de/uni-stuttgart/informatik/fius/ICGE-Simulation/2.3.6/ICGE-Simulation-2.3.6-sources.jar into

Re: Need help: maven-javadoc-plugin: includeDependencySource: error: module not found on module source path

2020-10-28 Thread Benjamin Marwell
Hi Tim, this lines makes me wonder: > [ERROR] no reactor project: my project> I think this means that will only work with dependencies from the same reactor project. Thus your "group_id:artifact_id of the single dependency of my project" seems to be a foreign project? But then from the goal

Need help: maven-javadoc-plugin: includeDependencySource: error: module not found on module source path

2020-10-17 Thread Tim Neumann
Hello everybody, I'm struggling to get javadoc generation with includeDependencySource working in my project. When setting includeDependencySource to true in the pom and running mvn clean install javadoc:aggregate or mvn clean install javadoc:javadoc I get the following errors: First: [ERROR]

Re: Need help with maven deploy plugin.

2020-08-19 Thread John Patrick
Which pom are properties beans.version and rest.version defined? com.blah.nw.libraries:libraries:1.0.0 or it's parent? Technically what you're deploying and using looks valid, the consumed using them should resolve those dependencies and pick up your custom version property and work it out

Need help with maven deploy plugin.

2020-08-19 Thread Jai Sharma
I am trying to upload multiple jar files to artifactory using "mvn deploy" command for a multi module project. Problem I am facing is generated pom files uploaded with jar files to artifactory contains only property name as version. Example - This is the part of jar file uploaded to artifactory

Re: Need help.. How to configure POM for multi-module checkout

2019-03-25 Thread garym
Yeah, that's a good idea... On 2019/03/24 14:38:25, Kyle Marek wrote: > You can arbitrarily switch to other tags and branches with submodules. > It is just a simple `git checkout X` from the submodule's directory. > > -Kyle > > On 3/24/19 9:51 AM, ga...@oedata.com wrote: > > Hi Nick, > > >

Re: Need help.. How to configure POM for multi-module checkout

2019-03-24 Thread garym
Hi Karl, Thank you for the suggestion to use maven-shade/maven-assembly-plugin(s). I was planning to use them, but haven't gotten around to them yet. I was hung up on the checkout/build thing. :- Maybe on Tuesday. The libraries are in 7 modules to manage the development cycle, specifically

Re: Need help.. How to configure POM for multi-module checkout

2019-03-24 Thread Karl Heinz Marbaise
Hi Gary, On 24.03.19 17:55, ga...@oedata.com wrote: Hi Nick, Thanks for the questions, I'll try to explain. The parent pom aggregates a library (jar) from different and sometimes interdependent modules. The parent pom checks out the module sources with the poms and compiles them into a

Re: Need help.. How to configure POM for multi-module checkout

2019-03-24 Thread garym
(until you update the > reference). > > Would that be a viable option for your purpose(s) ? > > Nick > > > From: garym@ > Sent: Sunday, March 24, 2019 1:26 AM > To: users@maven.apache.org > Subject: Re: Need help.. How to configur

Re: Need help.. How to configure POM for multi-module checkout

2019-03-24 Thread Kyle Marek
You can arbitrarily switch to other tags and branches with submodules. It is just a simple `git checkout X` from the submodule's directory. -Kyle On 3/24/19 9:51 AM, ga...@oedata.com wrote: > Hi Nick, > > Thank you for that suggestion. That was also suggested on stackoverflow by > Karl. That

Re: Need help.. How to configure POM for multi-module checkout

2019-03-24 Thread garym
Hi Nick, Thank you for that suggestion. That was also suggested on stackoverflow by Karl. That method is better suited for static-ish configurations. I need a BOM type system where I can dynamically switch between tags and branches for different modules, much like clear case. I'll be moving

Re: Need help.. How to configure POM for multi-module checkout

2019-03-24 Thread Nikki Novak
From: garym@ Sent: Sunday, March 24, 2019 1:26 AM To: users@maven.apache.org Subject: Re: Need help.. How to configure POM for multi-module checkout Hi Karl, Thank you for replying on mail server. and thanks for sending me the links to you project poms. They look

Re: Need help.. How to configure POM for multi-module checkout

2019-03-23 Thread Kyle Marek
Not sure that it will help with version number matches, but you could also use Git submodules to bring multiple repositories together in a single tree. See: https://git-scm.com/book/en/v2/Git-Tools-Submodules On 3/23/19 9:26 PM, ga...@oedata.com wrote: > Hi Karl, > > Thank you for replying on

Re: Need help.. How to configure POM for multi-module checkout

2019-03-23 Thread garym
Hi Karl, Thank you for replying on mail server. and thanks for sending me the links to you project poms. They look awesome. The is a difference between your projects and my situation. Your projects all the modules reside in the same repository. In my case, they reside in different

Re: Need help.. How to configure POM for multi-module checkout

2019-03-23 Thread Karl Heinz Marbaise
Hi, I will give you the same answer as on StackOverflow. The way you are going sounds wrong... As I already suggested is the way to go creating a multi module build which comprises of several modules which is located within a single Git repository. this can be build by using a single command.

Need help.. How to configure POM for multi-module checkout

2019-03-23 Thread Gary M
Hi, I need some help with scm checking out multiple modules and building them. I have several projects I'm consolidating into a single jar. Reactor checks for module poms before generate-sources executes. How do I fix this issue ? thanks.. g POM sample to give you an idea of what I've done.

Re: Need help in executing a Java program and testng.xml one after other using Maven

2016-02-26 Thread Francois-Xavier Bonnet
> > > org.aspectj > > aspectjweaver > > ${aspectj.version} > > > > > > > > > -- > View this message in context: > http://maven.40175.n5.nabble.com/Need-he

Need help in executing a Java program and testng.xml one after other using Maven

2016-02-25 Thread maheshbedampeta
} -- View this message in context: http://maven.40175.n5.nabble.com/Need-help-in-executing-a-Java-program-and-testng-xml-one-after-other-using-Maven-tp5863066.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: Need Help of Maveners to prepare for a talk on Maven

2015-07-14 Thread Ron Wheeler
13, 2015 17:59 To: Maven Users List Subject: Need Help of Maveners to prepare for a talk on Maven Hi All I am asked by my org/boss to talk about my maven exploits for about half an hour in front of our group. Having sought your help, earlier, for a pathing jar, I am ready to talk about

Re: Need Help of Maveners to prepare for a talk on Maven

2015-07-14 Thread Greg Trasuk
To: Maven Users List Subject: Need Help of Maveners to prepare for a talk on Maven Hi All I am asked by my org/boss to talk about my maven exploits for about half an hour in front of our group. Having sought your help, earlier, for a pathing jar, I am ready to talk about it. However

RE: Need Help of Maveners to prepare for a talk on Maven

2015-07-14 Thread Sander Verhagen
. Thank you! -Original Message- From: Gandikota, Murthy [mailto:mgandik...@westechmed.com] Sent: Monday, July 13, 2015 17:59 To: Maven Users List Subject: Need Help of Maveners to prepare for a talk on Maven Hi All I am asked by my org/boss to talk about my maven exploits for about

Need Help of Maveners to prepare for a talk on Maven

2015-07-13 Thread Gandikota, Murthy
Hi All I am asked by my org/boss to talk about my maven exploits for about half an hour in front of our group. Having sought your help, earlier, for a pathing jar, I am ready to talk about it. However, it involves a lot of ant, as I don't know how to do the same (copying files, generating

Re: Need help regarding apache maven

2014-10-02 Thread David Hoffer
Right I concur with Barrie, SVN is for your source code not your Maven built artifacts. You need a Maven respository manager, I recommend Artifactory (http://www.jfrog.com/open-source/) which is very easy to setup. -Dave On Wed, Oct 1, 2014 at 11:48 PM, Barrie Treloar baerr...@gmail.com wrote:

Re: Need help regarding apache maven

2014-10-02 Thread Manfred Moser
Alternatively you can use the more widely used Sonatype Nexus which also supports things like Maven Site hosting or NuGet out of the box http://www.sonatype.org/nexus/ http://pages.zeroturnaround.com/Java-Tools-Technologies.html or the Apache Archiva server, which is maintained as a pure open

Need help regarding apache maven

2014-10-01 Thread sameer chandekar
Hi, Please help me to resolve issue I am facing with apache maven. I am trying to implement continuous integration.For which i am using apache maven with build server. I have setup a repository using visual svn server.I've created build using maven now when I try to deploy the build on remote

Re: Need help regarding apache maven

2014-10-01 Thread Olivier Lamy
Hi, No idea what is your setup or your Maven distribution but you use a wagon implementation which is not supported here: com.ning.http.client.providers.netty Cheers Olivier On 2 October 2014 04:09, sameer chandekar sameerchandekar2...@gmail.com wrote: Hi, Please help me to resolve issue

Re: Need help regarding apache maven

2014-10-01 Thread Barrie Treloar
Uploading: https://sachin/svn/demo/com/kedb/kedb/0.0.1-SNAPSHOT/kedb-0.0.1-20140929.030730-3.jar Uploading: https://sachin/svn/demo/com/kedb/kedb/0.0.1-SNAPSHOT/kedb-0.0.1-20140929.030730-3.pom Is https://sachin/svn/ your SVN server? You can't get Maven to deploy your artifacts to your SVN

Re: Need Help

2014-03-14 Thread Mirko Friedenhagen
) skipIfEmpty = false [DEBUG] (f) useDefaultManifestFile = false [DEBUG] -- end configuration -- Need help Thanks in advance. Regards, vishal - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional

Re: Need Help

2014-03-14 Thread Barrie Treloar
On 15 March 2014 07:40, Mirko Friedenhagen mfriedenha...@gmail.com wrote: Hello, I had the same questions :-). Vishai, you could invoke mvn compile, switch to the target/classes directory and execute time jar cvf ../foo.jar . to see how long the original jar command takes and compare this

Need Help

2014-03-13 Thread Vishal Kumar Gupta
configuration -- Need help Thanks in advance. Regards, vishal

Re: Need Help

2014-03-13 Thread Benson Margulies
] (f) session = org.apache.maven.execution.MavenSession@ed1bb57 [DEBUG] (f) skipIfEmpty = false [DEBUG] (f) useDefaultManifestFile = false [DEBUG] -- end configuration -- Need help Thanks in advance. Regards, vishal

Need help fixing a warning: 'Failed to getClass for org.apache.maven.plugin.source.SourceJarMojo

2013-09-25 Thread Jeff Walker
Hi, Can somebody please tell me how to get rid of this warning when running ou Maven builds: WARNING: Failed to getClass for org.apache.maven.plugin.source.SourceJarMojo I tried adding the version element to the plugin xml,m but it made no difference. I'm guessing it has to do with the source

Re: Need help with POM configuration to combine jaxb2, jaxws, with dependencies and episode files

2013-05-13 Thread Marc Fick
: Need help with POM configuration to combine jaxb2, jaxws, with dependencies and episode files groupIdorg.jvnet.jax-ws-commons/groupId artifactIdjaxws-maven-plugin/artifactId version2.1/version ... I'm very new to maven so if anyone can help me get this pom

Re: Need help with POM configuration to combine jaxb2, jaxws, with dependencies and episode files

2013-05-10 Thread Wayne Fay
groupIdorg.jvnet.jax-ws-commons/groupId artifactIdjaxws-maven-plugin/artifactId version2.1/version ... I'm very new to maven so if anyone can help me get this pom configuration correct it would

I need help with a maven-pmd-plugin OutOfMemoryError: Java heap space Error.

2013-02-22 Thread John Miller
I need some help with a maven-pmd-plugin OutOfMemoryError: Java heap space error. I narrowed it down to maven-pmd-plugin running inside Hudson. I am running with these java settings JAVA_OPTS=-Xmn1024m -Xms2048m -Xmx2048m -XX:PermSize=512m So I should have plenty of room.. I also ran it from

Re: I need help with a maven-pmd-plugin OutOfMemoryError: Java heap space Error.

2013-02-22 Thread Olivier Lamy
same issue with 2.7.1 release ? There is an issue with 3.0 which duplicate pmd errors (maybe you have too much errors :-) ). This issue is fixed in trunk (so you can try 3.1-SNAPSHOT) 2013/2/22 John Miller john.w.mil...@oracle.com: I need some help with a maven-pmd-plugin OutOfMemoryError: Java

RE: I need help with a maven-pmd-plugin OutOfMemoryError: Java heap space Error.

2013-02-22 Thread John Miller
] Sent: Friday, February 22, 2013 9:18 AM To: Maven Users List Subject: Re: I need help with a maven-pmd-plugin OutOfMemoryError: Java heap space Error. same issue with 2.7.1 release ? There is an issue with 3.0 which duplicate pmd errors (maybe you have too much errors :-) ). This issue is fixed

Re: I need help with a maven-pmd-plugin OutOfMemoryError: Java heap space Error.

2013-02-22 Thread Olivier Lamy
Subject: Re: I need help with a maven-pmd-plugin OutOfMemoryError: Java heap space Error. same issue with 2.7.1 release ? There is an issue with 3.0 which duplicate pmd errors (maybe you have too much errors :-) ). This issue is fixed in trunk (so you can try 3.1-SNAPSHOT) 2013/2/22 John

RE: I need help with a maven-pmd-plugin OutOfMemoryError: Java heap space Error.

2013-02-22 Thread John Miller
OK that is weird.. that child project does not have a entry for PMD, but the parent entry is 2.7.1 Not sure where it is getting 3.0?? -Original Message- From: Olivier Lamy [mailto:ol...@apache.org] Sent: Friday, February 22, 2013 9:38 AM To: Maven Users List Subject: Re: I need help

RE: I need help with a maven-pmd-plugin OutOfMemoryError: Java heap space Error.

2013-02-22 Thread John Miller
My bad.. thanks for the guidance.. -Original Message- From: John Miller Sent: Friday, February 22, 2013 9:46 AM To: Maven Users List Subject: RE: I need help with a maven-pmd-plugin OutOfMemoryError: Java heap space Error. OK that is weird.. that child project does not have a entry

need help

2012-10-29 Thread wangjiawei
Hello, I am use maven-3.0.4 to build up the Apache Giraph, and my cluster hadoop environment is cdh3u4, but I meet the error What can I do for it? Looking forward to your reply! Best regards. 王佳伟 (Jiawei Wang) Bioinformatic tech lab HPC developer, BGI, Shenzhen China

RE: [maven] need help

2012-10-29 Thread Jason Pyeron
Please post as text the error you are receiving. From: wangjiawei [mailto:wangjia...@genomics.cn] Sent: Monday, October 29, 2012 10:38 To: users Subject: [maven] need help Hello, I am use

Need help

2011-08-09 Thread Adrien Ruffie - Petals Link
Hello allo, I have this following case: in my first project project1 I have a dependency project2. In this following project2 (isn't jar type but .zip type), I have a project2.wsdl, I wanted to copy in the first project project1 at the root jar directory, example: project2: --- /META-INF

Re: Need help

2011-08-09 Thread Mark Struberg
adrien.ruf...@petalslink.com Subject: Need help To: users@maven.apache.org Date: Tuesday, August 9, 2011, 9:57 AM Hello allo, I have this following case: in my first project project1 I have a dependency project2. In this following project2 (isn't jar type but .zip type), I have a project2

Re: Need help in uploading maven archetypes to nexus repo and in maven release

2011-08-09 Thread goutham
repo? If i can how can i call it from the nexus repo? -- View this message in context: http://maven.40175.n5.nabble.com/Need-help-in-uploading-maven-archetypes-to-nexus-repo-and-in-maven-release-tp4674573p4682012.html Sent from the Maven - Users mailing list archive at Nabble.com.

Re: Need help in uploading maven archetypes to nexus repo and in maven release

2011-08-09 Thread goutham
it in nexus repo? If i can how can i call it from the nexus repo? Regards -Goutham -- View this message in context: http://maven.40175.n5.nabble.com/Need-help-in-uploading-maven-archetypes-to-nexus-repo-and-in-maven-release-tp4674573p4682017.html Sent from the Maven - Users mailing list archive

Re: Need help in uploading maven archetypes to nexus repo and in maven release

2011-08-09 Thread Wayne Fay
i call a plugin(maven module with a mojo) using mvn groupid:artifactid:version:goal can i have it in nexus repo? If i can how can i call it from the nexus repo? Yes, just deploy it like any other artifact to Nexus. The packaging is maven-plugin. Wayne

Re: Need help in uploading maven archetypes to nexus repo and in maven release

2011-08-09 Thread goutham
-- If you reply to this email, your message will be added to the discussion below: http://maven.40175.n5.nabble.com/Need-help-in-uploading-maven-archetypes-to-nexus-repo-and-in-maven-release-tp4674573p4682403.html To unsubscribe from Need help in uploading maven archetypes to nexus repo

Re: Need help in uploading maven archetypes to nexus repo and in maven release

2011-08-08 Thread Anders Hammar
on project . How does it help me? Any help will be thank full -Goutham -- View this message in context: http://maven.40175.n5.nabble.com/Need-help-in-uploading-maven-archetypes-to-nexus-repo-and-in-maven-release-tp4673441p4673441.html Sent from the Maven - Users mailing list archive

Need help in uploading maven archetypes to nexus repo and in maven release

2011-08-07 Thread goutham
can use them on any machine . What are the steps to upload a archetype to nexus repo? 2)I was suggested to do maven release:prepare, perform on project . How does it help me? Any help will be thank full -Goutham -- View this message in context: http://maven.40175.n5.nabble.com/Need-help

Re: Need help in uploading maven archetypes to nexus repo and in maven release

2011-08-07 Thread Hervé BOUTEMY
to do maven release:prepare, perform on project . How does it help me? Any help will be thank full -Goutham -- View this message in context: http://maven.40175.n5.nabble.com/Need-help-in-uploading-maven-archetypes-t o-nexus-repo-and-in-maven-release-tp4674573p4674573.html Sent from

Need help in uploading maven archetypes to nexus repo and in maven release

2011-08-07 Thread goutham
use them on any machine . What are the steps to upload a archetype to nexus repo? 2)I was suggested to do maven release:prepare, perform on project . How does it help me? Any help will be thank full -Goutham -- View this message in context: http://maven.40175.n5.nabble.com/Need-help

Need help with m2eclipse 0.13 + war:exploded

2011-05-02 Thread Todd Vierling
I'm using m2eclipse 0.13 from the /N/ update site, trying to achieve one of the holy grails of integration: Google App Engine + Scala [+ Lift, optionally] + Eclipse with m2e. Solving this problem would be a win for a whole lot of developers out there (and it might also make more vanilla WAR

Re: Need help with m2eclipse 0.13 + war:exploded

2011-05-02 Thread Todd Vierling
On Mon, May 2, 2011 at 2:17 PM, Todd Vierling t...@duh.org wrote: I'm using m2eclipse 0.13 from the /N/ update site, trying to achieve one of the holy grails of integration: Google App Engine + Scala [+ Lift, optionally] + Eclipse with m2e. Solving this problem would be a win for a whole lot

Re: Need help with m2eclipse 0.13 + war:exploded

2011-05-02 Thread Wayne Fay
I'm using m2eclipse 0.13 from the /N/ update site, trying to achieve one of the holy grails of integration: Google App Engine + Scala [+ Lift, optionally] + Eclipse with m2e. Solving this problem would be a M2E questions below on the M2E lists:

Re: Need help with a dependency problem...

2010-11-26 Thread Antonio Petrelli
2010/11/25 Julien Martin bal...@gmail.com:            plugin                groupIdorg.apache.maven.plugins/groupId                artifactIdmaven-compiler-plugin/artifactId                configuration                    source1.6/source                    target1.6/target                  

Re: Need help with a dependency problem...

2010-11-26 Thread Andreas M
in context: http://maven.40175.n5.nabble.com/Need-help-with-a-dependency-problem-tp3280645p3280922.html Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org

Re: Need help with a dependency problem...

2010-11-26 Thread Julien Martin
the class it's compiling as a processor as well. That can't go well, can it? /Andreas -- View this message in context: http://maven.40175.n5.nabble.com/Need-help-with-a-dependency-problem-tp3280645p3280922.html Sent from the Maven - Users mailing list archive at Nabble.com

Need help with a dependency problem...

2010-11-25 Thread Julien Martin
Hello, Due to a restructuring in a maven project, I am experiencing problems with the following POM. I have two classes in the maven project below: com.jeanbaptistemartin.annotations.MethodLevelAnnotation (an annotation) com.jeanbaptistemartin.annotations.TestAnnotationsProcessor (my annotation

Re: Need help configuring maven to get through company Proxy?

2010-02-04 Thread Antonio Petrelli
2010/2/3 tonte.poun...@aviall.com: When I try to down load plugins from the Maven Central Repo, I get redirected to my companies Novell Proxy Server authentication web page; where an actual user is required to enter their (eDirectory/LDAP) credentials and click the submit button to be

Re: Need help configuring maven to get through company Proxy?

2010-02-04 Thread Tonte . Pouncil
or CNTLM? Thanks! Tonté From: Antonio Petrelli antonio.petre...@gmail.com To: Maven Users List users@maven.apache.org Date: 02/04/2010 02:15 AM Subject: Re: Need help configuring maven to get through company Proxy? 2010/2/3 tonte.poun...@aviall.com: When I try to down load plugins from the Maven

Re: Need help configuring maven to get through company Proxy?

2010-02-04 Thread Tonte . Pouncil
would be interested in anymore ideas on how to resolve this. Thanks! From: Anders Hammar and...@hammar.net To: Maven Users List users@maven.apache.org Date: 02/03/2010 02:39 PM Subject: Re: Need help configuring maven to get through company Proxy? Resolving this in Maven is just a waste of time

Re: Need help configuring maven to get through company Proxy?

2010-02-04 Thread Wayne Fay
Okay I removed my proxy settings in the settings.xml file and configured Nexus to use the proxy authentication via its server tab.  When I ran maven, it went through Nexus and then complained that my company has blocked access to maven central repo site. 1) The Nexus list would be the proper

Re: Need help configuring maven to get through company Proxy?

2010-02-04 Thread Tonte . Pouncil
I understand. I wonder if you know how I can get started in building a plugin that extends the existing proxy framework in maven, in this regard? Thanks! From: Wayne Fay wayne...@gmail.com To: Maven Users List users@maven.apache.org Date: 02/04/2010 09:58 AM Subject: Re: Need help

Need help configuring maven to get through company Proxy?

2010-02-03 Thread Tonte . Pouncil
Hello, My company is using Novell Proxy Server. I am using maven-2.2..1. I have set up my configuration based on the documentation described here: http://maven.apache.org/guides/mini/guide-proxies.html When I try to down load plugins from the Maven Central Repo, I get redirected to my

Re: Need help configuring maven to get through company Proxy?

2010-02-03 Thread Manuel Grau
I don't know anything about Novell Proxy Server, but I can tell you whar we're doing. We have to attach the domain in username: usernamedomain\username/username But, in our case, we don't have proxy setup in our setting.xml because we're using Artifactory http://www.jfrog.org/products.php, a

Re: Need help configuring maven to get through company Proxy?

2010-02-03 Thread Tonte . Pouncil
mang...@gmail.com To: Maven Users List users@maven.apache.org Cc: bguill...@aviall.com Date: 02/03/2010 10:24 AM Subject: Re: Need help configuring maven to get through company Proxy? I don't know anything about Novell Proxy Server, but I can tell you whar we're doing. We have to attach

Re: Need help configuring maven to get through company Proxy?

2010-02-03 Thread Wayne Fay
Thanks for your reply.  We are using Sonatype Nexus for our company maven repo and we are actually using Novell Border Manager for our proxy server.  I wonder if maven is not sending the correct credential properties to Novell Border Manager? Aren't your proxying requests through Nexus to the

Re: Need help configuring maven to get through company Proxy?

2010-02-03 Thread Manuel Grau
List users@maven.apache.org Cc: bguill...@aviall.com Date: 02/03/2010 10:24 AM Subject: Re: Need help configuring maven to get through company Proxy? I don't know anything about Novell Proxy Server, but I can tell you whar we're doing. We have to attach the domain in username

Re: Need help configuring maven to get through company Proxy?

2010-02-03 Thread Tonte . Pouncil
From: Wayne Fay wayne...@gmail.com To: Maven Users List users@maven.apache.org Date: 02/03/2010 11:19 AM Subject: Re: Need help configuring maven to get through company Proxy? Thanks for your reply. We are using Sonatype Nexus for our company maven repo and we are actually using Novell

Re: Need help configuring maven to get through company Proxy?

2010-02-03 Thread Tonte . Pouncil
List users@maven.apache.org Date: 02/03/2010 11:20 AM Subject: Re: Need help configuring maven to get through company Proxy? I guess sonatype Nexus is the same that Jfrog Artifactory. One question, are you using it as maven proxy? that is, does maven ask for artifacts throught Nexus

Re: Need help configuring maven to get through company Proxy?

2010-02-03 Thread Anders Hammar
, I have made sure these settings are not commented out. Thanks! Tonté From: Wayne Fay wayne...@gmail.com To: Maven Users List users@maven.apache.org Date: 02/03/2010 11:19 AM Subject: Re: Need help configuring maven to get through company Proxy? Thanks for your reply. We

Re: Need help configuring maven to get through company Proxy?

2010-02-03 Thread Tonte . Pouncil
Ok I will check into this. Thanks! From: Anders Hammar and...@hammar.net To: Maven Users List users@maven.apache.org Date: 02/03/2010 02:39 PM Subject: Re: Need help configuring maven to get through company Proxy? Resolving this in Maven is just a waste of time. As you switch to use Nexus

Need help to find best way to recompile complete project and dep with 1.5

2010-01-18 Thread nodje
adding another intermediary parent pom, (something like all-parent-jdk1.5) to see if it would propagate the jar plugin config as expected. cheers /nodje -- View this message in context: http://n2.nabble.com/Need-help-to-find-best-way-to-recompile-complete-project-and-dep-with-1-5-tp4413579p4413579

AW: Need help to find best way to recompile complete project and dep with 1.5

2010-01-18 Thread Entner Harald
it). Hope this helps, Harald -Ursprüngliche Nachricht- Von: nodje [mailto:nodje...@gmail.com] Gesendet: Montag, 18. Januar 2010 14:25 An: users@maven.apache.org Betreff: Need help to find best way to recompile complete project and dep with 1.5 Hi, I need to figure out a way

Need help with Maven SCM plugins

2009-12-11 Thread Chris Helck
I'm using maven 2.2.1 I would like to upgrade the Perforce SCM plugin to version 1.2, but I'm having lots of trouble configuring the pom. I've added: build plugins plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-scm-plugin/artifactId

Never mind RE: Need help with Maven SCM plugins

2009-12-11 Thread Chris Helck
My bad. Should have been maven release plugin. -Original Message- From: Chris Helck [mailto:chris.he...@us.icap.com] Sent: Friday, December 11, 2009 12:08 PM To: Maven Users List Subject: Need help with Maven SCM plugins I'm using maven 2.2.1 I would like to upgrade the Perforce SCM

RE: How to set up SCM/CVS/Maven integration with public key authentication (need help!)?

2009-06-15 Thread Matt Brown
Brown [mailto:matt.br...@citrixonline.com] Sent: Friday, June 12, 2009 12:14 PM To: scm-us...@maven.apache.org Subject: How to set up SCM/CVS/Maven integration with public key authentication (need help!)? I have a scm section in a POM that looks something like this: scm

How to set up SCM/CVS/Maven integration with public key authentication (need help!)?

2009-06-12 Thread Matt Brown
I have a scm section in a POM that looks something like this: scm connectionscm:cvs:ext:myhostname:/cvsroot/repo:module_name/connection /scm I typically use publickey auth to authentication against this cvs server, although it should accept my password as

Re: Need Help From Maven Integration

2009-02-12 Thread N D
google out.. you will find everything you need.. On Fri, Feb 13, 2009 at 10:02 AM, SRINIVASA RAO srinivasv_amb...@yahoo.comwrote: Hi All, I am new to Maven and have been asked to set up new development environment in my office.Till now we are using CVS on one of the remote servers and web

Re: Need Help From Maven Integration

2009-02-12 Thread David C. Hicks
This is your best starting point for learning about Maven... http://www.sonatype.com/books/maven-book/reference/ SRINIVASA RAO wrote: Hi All, I am new to Maven and have been asked to set up new development environment in my office.Till now we are using CVS on one of the remote servers and web

Re: New to Maven - need help

2008-10-17 Thread Jan K
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/New-to-Maven---need-help-tp19971205p20027612.html Sent from the Maven - Users mailing list archive

Re: New to Maven - need help

2008-10-17 Thread David C. Hicks
Jan, I would first suggest you search the main repository to make sure that the dependency you're looking for is truly not already in there. Here is the site to search: http://www.mvnrepository.com/ If you can't find what you're looking for there, then you can always add dependencies to

Re: New to Maven - need help

2008-10-17 Thread Jan K
should i do next?How to change it the project i am willing to run? -- View this message in context: http://www.nabble.com/New-to-Maven---need-help-tp19971205p20027789.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: New to Maven - need help

2008-10-17 Thread Stephen Connolly
local path.I can see the pom.xml.Please help me what should i do next?How to change it the project i am willing to run? -- View this message in context: http://www.nabble.com/New-to-Maven---need-help-tp19971205p20027789.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: New to Maven - need help

2008-10-17 Thread Jan K
-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/New-to-Maven---need-help-tp19971205p20028880.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: New to Maven - need help

2008-10-17 Thread David C. Hicks
See Stephen's comment from a previous email. You're getting *way* ahead of yourself. You've got some very basic problems that are going to get in your way long before dependencies are an issue. Either get yourself a copy of Maven: The Definitive Guide or use the online copy -

Re: New to Maven - need help

2008-10-16 Thread Jan K
what should i do next?How to change it the project i am willing to run? -- View this message in context: http://www.nabble.com/New-to-Maven---need-help-tp19971205p20008277.html Sent from the Maven - Users mailing list archive at Nabble.com

  1   2   3   4   >