Re: Running maven-checkstyle-plugin from the root module

2024-04-21 Thread org . apache . maven . user
On 21/04/2024 19:03, Jeff Jensen wrote: > Sorry for the vagueness. I meant something even simpler - running the > Checkstyle goal separately, probably in two Maven executions similar to: > mvn checkstyle:checkstyle > mvn install -Dcheckstyle.skip=true I have ended up having to do something

Re: Running maven-checkstyle-plugin from the root module

2024-04-21 Thread Jeff Jensen
Sorry for the vagueness. I meant something even simpler - running the Checkstyle goal separately, probably in two Maven executions similar to: mvn checkstyle:checkstyle mvn install -Dcheckstyle.skip=true On Sun, Apr 21, 2024 at 12:35 PM wrote: > On 21/04/2024 15:59, Jeff Jensen wrote: > >

Re: Running maven-checkstyle-plugin from the root module

2024-04-21 Thread org . apache . maven . user
On 21/04/2024 15:59, Jeff Jensen wrote: > Have you considered only running the checkstyle goal, from the parent so it > processes all modules, before the full build goal(s)? > There are two ways that I can interpret this: 1. Set the execution in the parent so that all of the child modules

Re: Running maven-checkstyle-plugin from the root module

2024-04-21 Thread Jeff Jensen
Have you considered only running the checkstyle goal, from the parent so it processes all modules, before the full build goal(s)? On Sun, Apr 21, 2024 at 9:27 AM wrote: > Hello! > > I've been using the maven-checkstyle-plugin for many years now. Almost > all of my projects are heavily

Running maven-checkstyle-plugin from the root module

2024-04-21 Thread org . apache . maven . user
Hello! I've been using the maven-checkstyle-plugin for many years now. Almost all of my projects are heavily multi-module, and I have a fairly traditional setup where a checkstyle plugin execution is defined in my organization-wide POM, and inherited by all modules in all projects. I run

Re: repo.maven.apache.org returning 403 forbidden when running maven

2020-01-03 Thread Henke, Zachary
Gawande, Sameer" Subject: repo.maven.apache.org returning 403 forbidden when running maven Hello, My name is Zach Henke and I work at Verisign. I am currently receiving ERROR 403: Forbidden when attempting to access http://repo.maven.apache.org/maven2/ via linux server. On that same server,

Re: repo.maven.apache.org returning 403 forbidden when running maven

2019-12-31 Thread Manfred Moser
HTTP has bee†n deprecated a while ago .. just use HTTPS. See https://central.sonatype.org/articles/2019/Nov/01/announcement-insecurerepo1mavenorg/ https://central.sonatype.org/articles/2019/Apr/30/http-access-to-repo1mavenorg-and-repomavenapacheorg-is-being-deprecated/ Manfred

Re: repo.maven.apache.org returning 403 forbidden when running maven

2019-12-31 Thread Bernd Eckenfels
@maven.apache.org Cc: Gawande, Sameer Betreff: repo.maven.apache.org returning 403 forbidden when running maven Hello, My name is Zach Henke and I work at Verisign. I am currently receiving ERROR 403: Forbidden when attempting to access http://repo.maven.apache.org/maven2/ via linux server

Re: repo.maven.apache.org returning 403 forbidden when running maven

2019-12-31 Thread Karl Heinz Marbaise
On 30.12.19 15:04, Henke, Zachary wrote: Hello, My name is Zach Henke and I work at Verisign. I am currently receiving ERROR 403: Forbidden when attempting to access http://repo.maven.apache.org/maven2/ via linux server. On that same server, I am able to access the maven website

Re: repo.maven.apache.org returning 403 forbidden when running maven

2019-12-30 Thread Anthony Whitford
Have you tried using https: https://repo.maven.apache.org/maven2/ ? > On Dec 30, 2019, at 9:04 AM, Henke, Zachary > wrote: > > Hello, > > My name is Zach Henke and I work at Verisign. I am currently receiving ERROR > 403: Forbidden when attempting to access

repo.maven.apache.org returning 403 forbidden when running maven

2019-12-30 Thread Henke, Zachary
Hello, My name is Zach Henke and I work at Verisign. I am currently receiving ERROR 403: Forbidden when attempting to access http://repo.maven.apache.org/maven2/ via linux server. On that same server, I am able to access the maven website (http://maven.apache.org/) which indicates public

Re: Concurrency issue while running Maven on Jenkins host

2019-05-14 Thread Tibor Digana
There was one more email with the same problem. We are talking about this problem, global repo: '$COMPANY_JENKINS_HOME.m2/repository/executor_$EXECUTOR_NUMBER' Our build creates pwd() + "/.m2" in the job, and the scm checkouts git repo to "./build" directory. No issue then! The Jenkinsfile

Re: Concurrency issue while running Maven on Jenkins host

2019-05-14 Thread Francois MAROT
Sorry, seems my previous message missed the copy pasted content ! Here it is: pipeline { agent { node { label paramsMap.agentParam } }// the build will only run on nodes (ie slaves) indicated environment { // To prevent simultaneous job working in the same

Re: Concurrency issue while running Maven on Jenkins host

2019-05-13 Thread Francois MAROT
Hello, I suffered from similar symptoms until I adjusted the build to have per-Jenkins-executor MAven cache. So in the end, my Maven configuration in my Jenkins pipeline looks like this: As you can see, I do not use any Jenkins-Maven plugin and Maven is configured by hand. Hope it may help

Re: Concurrency issue while running Maven on Jenkins host

2019-05-09 Thread Jason Young
IME, the default settings for plugins in Jenkins are sometimes objectively incorrect. One example is the setting Karl referred to. More specifically, if you are using the Maven plugin for Jenkins, got to your job config -> Build -> Advanced -> Use private Maven repository. The default setting of

Re: Concurrency issue while running Maven on Jenkins host

2019-05-09 Thread Karl Heinz Marbaise
Hi, On 09.05.19 16:09, Frizz wrote: I regularly suffer from corrupted maven-metadata-local.xml files on my Jenkins host in directory /home/jenkins/.m2/.../some-project/ I suppose you are using the local cache for all your jobs? If so this is the problem. The cache is and was intended for

Concurrency issue while running Maven on Jenkins host

2019-05-09 Thread Frizz
I regularly suffer from corrupted maven-metadata-local.xml files on my Jenkins host in directory /home/jenkins/.m2/.../some-project/ E.g. extra lines added to the end of the maven-metadata-local.xml file like this: ... astUpdated> Do I suffer from concurrency issues? Like the one

Re: Crashes while running "Maven In Five Minutes"

2018-12-09 Thread Hervé BOUTEMY
thank you, merged regarding setting target Java Version as parameter, in theory this is a good idea, but in practice, IMHO it makes the archetype more complex: people will modify pom.xml when they want Regards, Hervé Le dimanche 9 décembre 2018, 07:02:52 CET Bernd Eckenfels a écrit : > I

Re: Crashes while running "Maven In Five Minutes"

2018-12-08 Thread Bernd Eckenfels
List Betreff: Re: Crashes while running "Maven In Five Minutes" Thank you for the report: yes, this should be improved to work in current latest version of everything I updated the command line to use version 1.3 of maven-archetype-quickstart, which is the latest version and compiles w

Re: Crashes while running "Maven In Five Minutes"

2018-12-07 Thread Hervé BOUTEMY
Thank you for the report: yes, this should be improved to work in current latest version of everything I updated the command line to use version 1.3 of maven-archetype-quickstart, which is the latest version and compiles with Java 7 target. Unfortunately, when build with Java 11, the build now

Re: Crashes while running "Maven In Five Minutes"

2018-12-04 Thread Michael Osipov
Am 2018-12-03 um 15:56 schrieb Steve Ramage:> If I follow the steps listed here (https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html) : > > > > mkdir scratch; pushd scratch; mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-app

Crashes while running "Maven In Five Minutes"

2018-12-03 Thread Steve Ramage
If I follow the steps listed here (https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html) :  mkdir scratch; pushd scratch; mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false; cd

Problem Running Maven

2015-04-17 Thread Michael.CTR.Tarullo
I have recently downloaded and unzipped Maven 3.3.1 in Windows 7. I updated my path environment variable to include C:\Apache\Maven\apache-maven-3.3.1\bin. I also added a JAVA_HOME environment variable that points to my Java 8 JDK. And created both an M2_HOME and M2 environment variable.

RE: Problem Running Maven

2015-04-17 Thread Michael.CTR.Tarullo
Contractor (Engility Corp) Enterprise Architect NSRR System Administrator FAA WJH Technical Center (609)485-5294 -Original Message- From: Bernd Eckenfels [mailto:e...@zusammenkunft.net] Sent: Friday, April 17, 2015 3:53 PM To: users@maven.apache.org Subject: Re: Problem Running Maven

Re: Problem Running Maven

2015-04-17 Thread Bernd Eckenfels
Hello, you can try to set MAVEN_BATCH_ECHO=ON and MAVEN_SKIP_RC=On to see the commands the batch are executing and make sure you have no old config laying around. What is your JAVA_HOME actually set to? Does it end in a \? I suspect it is related to the new .mvn\ directory handling. It should

RE: Problem Running Maven

2015-04-17 Thread Michael.CTR.Tarullo
, April 17, 2015 4:30 PM To: users@maven.apache.org Subject: Re: Problem Running Maven Hello, hm, the problem is the \ in the .multiModuleProjectDirectory (caused by the fact that you run it in a toplevel directory I guess). I guess this could be fixed, but then again, does it work when you use

RE: Problem Running Maven

2015-04-17 Thread Michael.CTR.Tarullo
, April 17, 2015 4:41 PM To: users@maven.apache.org Subject: Re: Problem Running Maven Am Fri, 17 Apr 2015 20:38:03 + schrieb michael.ctr.taru...@faa.gov: But as I stated in my initial post, it does not fail if I run it in C:\Widows or C:\Windows\System32!!! As I said it works in all

Re: Problem Running Maven

2015-04-17 Thread Bernd Eckenfels
Corp) Enterprise Architect NSRR System Administrator FAA WJH Technical Center (609)485-5294 -Original Message- From: Bernd Eckenfels [mailto:e...@zusammenkunft.net] Sent: Friday, April 17, 2015 3:53 PM To: users@maven.apache.org Subject: Re: Problem Running Maven Hello, you

Re: Problem Running Maven

2015-04-17 Thread Bernd Eckenfels
Am Fri, 17 Apr 2015 20:38:03 + schrieb michael.ctr.taru...@faa.gov: But as I stated in my initial post, it does not fail if I run it in C:\Widows or C:\Windows\System32!!! As I said it works in all directories if they are not the root of a drive.

Re: Problem Running Maven

2015-04-17 Thread Dan Tran
NSRR System Administrator FAA WJH Technical Center (609)485-5294 -Original Message- From: Bernd Eckenfels [mailto:e...@zusammenkunft.net] Sent: Friday, April 17, 2015 4:41 PM To: users@maven.apache.org Subject: Re: Problem Running Maven Am Fri, 17 Apr 2015 20:38:03 + schrieb

Re: Running maven shade on a preexisting jar

2014-07-08 Thread Benson Margulies
or http://en.wikipedia.org/wiki/Java_Decompiler On Mon, Jul 7, 2014 at 4:13 PM, Martin Gainty mgai...@hotmail.com wrote: From: northrup.ja...@gmail.com Date: Mon, 7 Jul 2014 14:31:31 -0700 Subject: Re: Running maven shade on a preexisting jar To: users@maven.apache.org shade

RE: Running maven shade on a preexisting jar

2014-07-08 Thread Martin Gainty
will do thanks Benson M- Date: Tue, 8 Jul 2014 11:49:44 -0400 Subject: Re: Running maven shade on a preexisting jar From: bimargul...@gmail.com To: users@maven.apache.org Ignore the sales pitch and the unpacking complexity. 1. Make an ordinary new project with no source code. 2

Running maven shade on a preexisting jar

2014-07-07 Thread Robert James
I have a jar that I need to shade - that is, change the name of many of the internal classes (to avoid conflicts with another jar) except for a few classes which remain exposed. The jar is already built, source is not at hand. How can I use maven shade to shade that jar? (Disclaimer: I'm a

Re: Running maven shade on a preexisting jar

2014-07-07 Thread james northrup
hi shade can possibly juxtapose jar deps diffrently from one build to the next in my experience. if you think you are having collisions you should probably do 2 things 1) use exclude on the older jar from the older dependency to avoid the collision 2) see if proguard fixes what shade breaks, if

Re: Running maven shade on a preexisting jar

2014-07-07 Thread Robert James
How do I run Maven Shade on a standalone jar (ie with no sources to build from)? Please realize that I'm a beginner to Maven. On 7/7/14, james northrup northrup.ja...@gmail.com wrote: hi shade can possibly juxtapose jar deps diffrently from one build to the next in my experience. if you think

Re: Running maven shade on a preexisting jar

2014-07-07 Thread Dan Tran
this is just guess 1. create jar project with no source 2. hook up maven-dependency-plugin to unpack your jar into target/classes 3. hook up maven-shade-plugin to massage your target/classes Good luck -D On Mon, Jul 7, 2014 at 2:15 PM, Robert James srobertja...@gmail.com wrote: How do

Re: Running maven shade on a preexisting jar

2014-07-07 Thread james northrup
shade is a uber jar plugin. there are 3 uber jar plugins that matter, shade, maven-assembly, and proguard. for beginners: all of them work more or less by merging a project into a single new jar just reading the pom dependencies. maven assembly does the least work. good for quick jobs

RE: Running maven shade on a preexisting jar

2014-07-07 Thread Martin Gainty
From: northrup.ja...@gmail.com Date: Mon, 7 Jul 2014 14:31:31 -0700 Subject: Re: Running maven shade on a preexisting jar To: users@maven.apache.org shade is a uber jar plugin. there are 3 uber jar plugins that matter, shade, maven-assembly, and proguard. for beginners: all of them

Re: Running maven shade on a preexisting jar

2014-07-07 Thread james northrup
MG: sure or http://en.wikipedia.org/wiki/Java_Decompiler On Mon, Jul 7, 2014 at 4:13 PM, Martin Gainty mgai...@hotmail.com wrote: From: northrup.ja...@gmail.com Date: Mon, 7 Jul 2014 14:31:31 -0700 Subject: Re: Running maven shade on a preexisting jar To: users@maven.apache.org

AW: serviced running maven running java based services

2014-06-16 Thread Hohl, Gerrit
[mailto:northrup.ja...@gmail.com] Gesendet: Freitag, 13. Juni 2014 22:49 An: Maven Users List Betreff: serviced running maven running java based services does anyone have a ubuntu/arch/debian serviced file or how-to that is specific to getting a maven based java app deployed and running from boot? -- Jim

serviced running maven running java based services

2014-06-13 Thread james northrup
does anyone have a ubuntu/arch/debian serviced file or how-to that is specific to getting a maven based java app deployed and running from boot? -- Jim Northrup

Re: problem in installing/running maven

2012-07-18 Thread rahul bhalla
I also noticed that when issue give command C:\Users\sahil%JAVA_HOME% 'C:\Program' is not recognized as an internal or external command, operable program or batch file. but i set JAVA_HOME to C:\Program Files\Java\jdk1.6.0_21 that means it is not displaying full java_Home Path On Thu, Jul 19,

RE: problem in installing/running maven

2012-07-18 Thread Matt Walsh
: Wednesday, July 18, 2012 1:00 PM To: Maven Users List Subject: Re: problem in installing/running maven I also noticed that when issue give command C:\Users\sahil%JAVA_HOME% 'C:\Program' is not recognized as an internal or external command, operable program or batch file. but i set

problem in installing/running maven

2012-07-17 Thread rahul bhalla
hi I new to maven project and first time i to runand install maven I followed the following steps which instruct by apache maven 1. Add the M2_HOME environment variable by opening up the system properties (WinKey + Pause), selecting the Advanced tab, and the Environment Variables button,

Re: problem in installing/running maven

2012-07-17 Thread Wayne Fay
*C:\Users\sahilmvn --version* 'mvn' is not recognized as an internal or external command, operable program or batch file if the directory is changes to* C:\Program Files\apache-maven-3.0.4\bin* then it runs . Please do not install Maven (or really anything) under Program Files, or any other

Re: problem in installing/running maven

2012-07-17 Thread Dennis Lundberg
Hi Please run the command SET in a command window and paste the relevant parts here, i.e. M2_HOME, M2, JAVA_HOME and PATH. On 2012-07-17 22:01, rahul bhalla wrote: hi I new to maven project and first time i to runand install maven I followed the following steps which instruct by apache maven

Problem with running Maven project

2012-04-10 Thread gchoi
/execution /executions /plugin /plugins /build /profile /profiles /project -- View this message in context: http://maven.40175.n5.nabble.com/Problem-with-running-Maven-project-tp5630928p5630928.html Sent from the Maven - Users

Re: Problem with running Maven project

2012-04-10 Thread gchoi
After I switch M2 path from NetBeans maven plugin to regular Maven installation path, it worked. Thanks. -- View this message in context: http://maven.40175.n5.nabble.com/Problem-with-running-Maven-project-tp5630928p5631081.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: Error running Maven

2012-04-08 Thread nanosoft
Thanks Wayne, It now works. -- View this message in context: http://maven.40175.n5.nabble.com/Error-running-Maven-tp5622633p5625692.html Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail

Error running Maven

2012-04-06 Thread nanosoft
: http://maven.40175.n5.nabble.com/Error-running-Maven-tp5622633p5622633.html Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e

Re: Error running Maven

2012-04-06 Thread Guillaume Polet
/confluence/display/MAVEN/MissingProject Exception C:\Maven Workspaces Please help what should i do? -- View this message in context: http://maven.40175.n5.nabble.com/Error-running-Maven-tp5622633p5622633.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: Error running Maven

2012-04-06 Thread nanosoft
. Please help what else I need to do? -- View this message in context: http://maven.40175.n5.nabble.com/Error-running-Maven-tp5622633p5622651.html Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e

Re: Error running Maven

2012-04-06 Thread Wayne Fay
I have wifi internet connection for which I have changed proxy settings in conf/settings.xml to following: Where did you get the idea this was necessary? It is possible some documentation is not sufficiently clear and should be improved. You only need to configure the proxy when you actually

Re: overhead in running maven jetty:run

2011-09-12 Thread Nick Klauer
I know that is how I work with most of my web apps. Unless you need something very specific to the app container that you are working with, I wouldn't think there are much better solutions out there, glassfish/grizzly, jboss etc. On Aug 11, 2011 11:54 AM, Tommy Chheng tommy.chh...@gmail.com

overhead in running maven jetty:run

2011-08-11 Thread Tommy Chheng
Is there much of an overhead of running a servlet via mvn jetty:run vs an embedded jetty Main class in a production environment? Any other concerns? I typically stick a war into a jetty web-apps directory but i find it easier to run mvn jetty:run. Was curious if there's any negative to running

Error running Maven Tests with powermock and junit

2011-07-15 Thread Chiara
: Tests run: 0, Failures: 0, Errors: 0, Skipped: 0 * why it doesn't recognise my tests?? Pls help me, i'm new in maven.. Thk's a lot Chiara -- View this message in context: http://maven.40175.n5.nabble.com/Error-running-Maven-Tests-with-powermock-and-junit-tp4590688p4590688.html Sent from

Re: Error running Maven Tests with powermock and junit

2011-07-15 Thread Greg Akins
On Fri, Jul 15, 2011 at 9:35 AM, Chiara chiara_sime...@hotmail.it wrote: Hi, I am not being able to run Powermock through maven. I've an ejb 2.0 project and i've put under test folder my test's classes. Everything looked ok to me. But to make sure.. Did you put the tests in project

RE: Error running Maven Tests with powermock and junit

2011-07-15 Thread Chiara
] If you reply to this email, your message will be added to the discussion below: http://maven.40175.n5.nabble.com/Error-running-Maven-Tests-with-powermock-and-junit-tp4590673p4590720.html To unsubscribe from

Re: Error running Maven Tests with powermock and junit

2011-07-15 Thread Greg Akins
On Fri, Jul 15, 2011 at 9:44 AM, Chiara chiara_sime...@hotmail.it wrote: Hi, yes i've put all test under this folder. I don't know what to do seriously.. 'cause if i try to run test using run as junit tests it works.. So the only change you make.. after the JUnit tests run, is to add the

Re: Error running Maven Tests with powermock and junit

2011-07-15 Thread Guillaume Polet
Does your class containing the tests matches the default include patterns? http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html#includes includes include**/Test*.java/include include**/*Test.java/include include**/*TestCase.java/include /includes Guillaume Le 15/07/2011

Error running Maven Tests with powermock and junit

2011-07-15 Thread Chiara
: Tests run: 0, Failures: 0, Errors: 0, Skipped: 0 * why it doesn't recognise my tests?? Pls help me, i'm new in maven.. Thk's a lot Chiara -- View this message in context: http://maven.40175.n5.nabble.com/Error-running-Maven-Tests-with-powermock-and-junit-tp4590673p4590673.html Sent from

RE: Error running Maven Tests with powermock and junit

2011-07-15 Thread Chiara
/archive /configuration /plugin thk a lot Date: Fri, 15 Jul 2011 07:05:39 -0700 From: ml-node+4590805-1772571158-230...@n5.nabble.com To: chiara_sime...@hotmail.it Subject: Re: Error running Maven Tests with powermock and junit Does your class containing

Re: Error running Maven Tests with powermock and junit

2011-07-15 Thread Wayne Fay
Yes 'cause my test class is AdapterTest.java I have to add some specific plugin ?? Perhaps try mvn -X ... and see if you notice anything interesting in the debug output? Otherwise maybe post the output of that command to www.pastebin.com and send a link here (please do NOT send the full log

Re: NoClassDefFoundError when running maven-exec-plugin and Cobertura

2010-11-17 Thread PaulGee
sure cobertura version is the same as the one used by your version of cobertura plugin (in our case it was 2.4) -- View this message in context: http://maven.40175.n5.nabble.com/NoClassDefFoundError-when-running-maven-exec-plugin-and-Cobertura-tp103455p3268700.html Sent from the Maven - Users

Re: Running maven from crontab

2010-08-16 Thread anilreddy76
Thanks for the reply.Will try it out. -- View this message in context: http://maven.40175.n5.nabble.com/Running-maven-from-crontab-tp2473497p2624694.html Sent from the Maven - Users mailing list archive at Nabble.com

Running maven from crontab

2010-08-13 Thread anilreddy76
* * * * /hosting/pem_rd/DART/DART_ePortfolio_Server/execute.sh /tmp/dart/icfcdf.log once I just run excute.sh from command line without cron it is fine. Could any body please advise where I'm going wrong? Thanks, Kumar -- View this message in context: http://maven.40175.n5.nabble.com/Running-maven-from

Re: Running maven from crontab

2010-08-13 Thread Refr Bruhl
Sent: Thu, August 12, 2010 1:09:17 PM Subject: Running maven from crontab I've one shellscript excute.sh which has the maven commands like this #!/bin/bash mvn clean package mvn exec:java -Dexec.mainClass=com.eportfolio.dart.business.EPenCreateICFCDFFile and I'm calling the above script

Re: Trouble running Maven test case

2009-10-06 Thread Siegfried Erb
project.properties file, I still get compilation errors. Any ideas how to proceed from here? - Dave -- View this message in context: http://www.nabble.com/Trouble-running-Maven- test-case-tp25722078p25722078.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: Trouble running Maven test case

2009-10-05 Thread Lukas Theussl
-- View this message in context: http://www.nabble.com/Trouble-running-Maven- test-case-tp25722078p25722078.html Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Re: Trouble running Maven test case

2009-10-05 Thread laredotornado
errors. Any ideas how to proceed from here? - Dave -- View this message in context: http://www.nabble.com/Trouble-running-Maven- test-case-tp25722078p25722078.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: Trouble running Maven test case

2009-10-05 Thread Lukas Theussl
still get compilation errors. Any ideas how to proceed from here? - Dave -- View this message in context: http://www.nabble.com/Trouble-running-Maven- test-case-tp25722078p25722078.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: Trouble running Maven test case

2009-10-04 Thread Neroon
project.properties file, I still get compilation errors. Any ideas how to proceed from here? - Dave -- View this message in context: http://www.nabble.com/Trouble-running-Maven- test-case-tp25722078p25722078.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: Trouble running Maven test case

2009-10-04 Thread laredotornado
put this property and the associated jars in my project.properties file, I still get compilation errors. Any ideas how to proceed from here? - Dave -- View this message in context: http://www.nabble.com/Trouble-running-Maven- test-case-tp25722078p25722078.html Sent from the Maven - Users

Trouble running Maven test case

2009-10-02 Thread laredotornado
project.properties file, I still get compilation errors. Any ideas how to proceed from here? - Dave -- View this message in context: http://www.nabble.com/Trouble-running-Maven-test-case-tp25722078p25722078.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: Trouble running Maven test case

2009-10-02 Thread Stephen Connolly
in context: http://www.nabble.com/Trouble-running-Maven-test-case-tp25722078p25722078.html Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org

Re: Trouble running Maven test case

2009-10-02 Thread laredotornado
and the associated jars in my project.properties file, I still get compilation errors. Any ideas how to proceed from here? - Dave -- View this message in context: http://www.nabble.com/Trouble-running-Maven-test-case-tp25722078p25722078.html Sent from the Maven - Users mailing list archive at Nabble.com

Running maven-sql-plugin standalone

2009-05-15 Thread SkeebZ
/configuration /execution It seems when I run the mvn sql:execute command it doesn't run any of my executions. It still finishes successfully but it doesn't run any of them. Any Ideas? -- View this message in context: http://www.nabble.com/Running

No javadoc found when running maven eclipse

2008-12-14 Thread Ludwig Magnusson
Hi! When I run maven eclipse maven tries to find the javadoc for all the jars that are used. This would be very nice to have but maven doesn't find anything. Is there a way to solve this? I am using maven 1 sine I am using the turbine plugin. Btw. I would be surprised if I am the first one to

Re: No javadoc found when running maven eclipse

2008-12-14 Thread Wayne Fay
When I run maven eclipse maven tries to find the javadoc for all the jars that are used. This would be very nice to have but maven doesn't find anything. Is there a way to solve this? I am using maven 1 sine I am using the turbine plugin. Relatively few artifacts in the Central repo have

Re: No javadoc found when running maven eclipse

2008-12-14 Thread Baptiste MATHUS
And btw I would be interested by what you mean when you say maven Eclipse. Because if you speak about m2eclipse, I'm not sure at all it supports maven 1... Cheers. 2008/12/14 Wayne Fay wayne...@gmail.com When I run maven eclipse maven tries to find the javadoc for all the jars that are

RE: No javadoc found when running maven eclipse

2008-12-14 Thread Ludwig Magnusson
found when running maven eclipse And btw I would be interested by what you mean when you say maven Eclipse. Because if you speak about m2eclipse, I'm not sure at all it supports maven 1... Cheers. 2008/12/14 Wayne Fay wayne...@gmail.com When I run maven eclipse maven tries to find the javadoc

how to redirect the system.out into test report in running maven-surefire-plugin

2008-11-12 Thread sean.chen(陈思淼)
I use use System.out.println to output infomation to the console, when I run mvn test, I know the surefire can include all the system.out information,just like this: system-out![CDATA[200 Test works! ]CDATA]/system-out But I don't know exactly how it woks. can anybody who is familiar

Re: running Maven Tasks through Eclipse

2008-07-03 Thread Morgovsky, Alexander (US - Glen Mills)
I posted here to get an answer to a maven question, so your response doesn't help me solve my issue. But since you went down on this road, the message says: This message (including any attachments) contains confidential information intended for a specific individual and purpose, and is

Re: running Maven Tasks through Eclipse

2008-07-03 Thread Jeff MAURY
Try with ${pom.version} this must be equivalent to ${project.version} but we never know. Jeff MAURY On Fri, Jul 4, 2008 at 12:27 AM, Morgovsky, Alexander (US - Glen Mills) [EMAIL PROTECTED] wrote: I posted here to get an answer to a maven question, so your response doesn't help me solve my

running Maven Tasks through Eclipse

2008-07-02 Thread Morgovsky, Alexander (US - Glen Mills)
Hello Maven Users. In my MOJO I have: /** * The project version. * @parameter name=version required=true readonly=true expression=${project.version} */ private String version; .. .. getLog().info(The project.basedir is +basedir.getAbsolutePath()); getLog().info(The

Re: running Maven Tasks through Eclipse

2008-07-02 Thread Lee Meador
Your email says I am prohibited from taking any action, which would include replying I think, based on the email. There is humor everywhere. Thanks. -- Lee On Wed, Jul 2, 2008 at 11:56 AM, Morgovsky, Alexander (US - Glen Mills) [EMAIL PROTECTED] wrote: Hello Maven Users. In my MOJO I have:

Error while running Maven.

2008-06-13 Thread Niranjan Deshpande
I got this + Error stacktraces are turned on. FATAL ERROR: Unable to start the embedded plexus container Error stacktrace: org.codehaus.plexus.PlexusContainerException: Error starting container at org.codehaus.plexus.DefaultPlexusContainer.start(DefaultPlexusContainer.java:795) at

Re: Running maven-compiler-plugin and maven-jaxws-plugin with different configurations in different phases

2008-05-21 Thread Jan Fredrik Wedén
Hi, Could you not split this into two modules where your step 4 resides in a module which dependes on another module containing the results from 1, 2 and 3? Seems like the most correct Maven-way if you are allowed to split your codebase to accomplish this. On Wed, May 21, 2008 at 2:48 AM, Clint

Re: Running maven-compiler-plugin and maven-jaxws-plugin with different configurations in different phases

2008-05-21 Thread Clint Gilbert
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Jan, thank you very much for your suggestion. That was almost the first thing I tried. The problem is that my web service instances (I call them Nodes - they're components of a distributed DB system) need to talk to each other. A Node needs to

Re: Running maven-compiler-plugin and maven-jaxws-plugin with different configurations in different phases

2008-05-21 Thread Jan Fredrik Wedén
Hmm, I'm not very familiar with jaxws so maybe I don't understand the full picture here. It just seems that if a class in one package can be compiled and used when generating wsdl and client bidnings without reference to other packages in the module, it can also be used for the same steps in

Re: Running maven-compiler-plugin and maven-jaxws-plugin with different configurations in different phases

2008-05-21 Thread Daniel Kulp
One option is to go completely code first and not generate anything. Use the same SEI interface for the client and for the service impls. You don't need to generate any wsdl's or anything then.I know Apache CXF supports that directly without problems. No generation of anything

RE: Running maven-compiler-plugin and maven-jaxws-plugin with different configurations in different phases

2008-05-21 Thread Sean Hennessy
Fredrik Wedén [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 21, 2008 11:25 AM To: Maven Users List Subject: Re: Running maven-compiler-plugin and maven-jaxws-plugin with different configurations in different phases Hmm, I'm not very familiar with jaxws so maybe I don't understand the full picture

Re: Running maven-compiler-plugin and maven-jaxws-plugin with different configurations in different phases

2008-05-21 Thread Clint Gilbert
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 So could I generate client code directly from a class annotated with @WebService, without generating an intermediary WSDL? I couldn't find a way to do that with wsgen/wsimport, but I'd love it if that was possible. Daniel Kulp wrote: | | One

Re: Running maven-compiler-plugin and maven-jaxws-plugin with different configurations in different phases

2008-05-21 Thread Clint Gilbert
| Subject: Re: Running maven-compiler-plugin and maven-jaxws-plugin with different configurations in different phases | | | Hmm, I'm not very familiar with jaxws so maybe I don't understand the full picture here. It just seems that if a class in one package can be compiled and used when generating

Re: Running maven-compiler-plugin and maven-jaxws-plugin with different configurations in different phases

2008-05-21 Thread Daniel Kulp
On May 21, 2008, at 6:43 PM, Clint Gilbert wrote: So could I generate client code directly from a class annotated with @WebService, without generating an intermediary WSDL? I couldn't find a way to do that with wsgen/wsimport, but I'd love it if that was possible. If you have an

Running maven-compiler-plugin and maven-jaxws-plugin with different configurations in different phases

2008-05-20 Thread Clint Gilbert
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hello everyone, First of all, I cannot overstate the beneficial effect that Maven has had on the development process at my organization. To the devs: thanks for the great tool! I have a pom that specifies two executions of the compiler plugin,

NoClassDefFoundError when running maven-exec-plugin and Cobertura

2008-03-18 Thread Thomas Larsson
Hi, I have configured my reporting section with the cobertura plugin, version 2.0. I also have a maven-exec-plugin defined to setup my testdatabase during the test-compile phase as shown below: (notice the classpath definition. If I understand this correctly, this configuration should make all

Problem running maven site:site outside the pom.xml directory

2008-02-20 Thread Mael Caldas
Hello, I'm running mvn site:site two dirs above the pom's directory, specifying the pom.xml location with the --file argument and the site is generated wrong. If I run in the same directory of the pom.xml, everything goes right. That is my dir structure: My_CC_View\ |

Re: Problem running maven site:site outside the pom.xml directory

2008-02-20 Thread Mael Caldas
Another information... I noticed that the site is ways wrong generated if I run maven outside the pom.xml 's directory, specifying the pom.xml location with the --file argument! Is that a site plugin bug!??? Any ideas!? Thanks a lot! On Feb 20, 2008 3:25 PM, Mael Caldas [EMAIL PROTECTED]

Running Maven commands with CRON

2007-07-20 Thread Chris Russell
Hello, I'm trying to run the following script with CRON: # set up some environment vars to make things more readable . /home/maven/metalink3/setupVars.sh /u02/webapps/orihttp/apache/maven-2.0.4/bin/mvn site:site This runs fine when I run it from the command line. But when CRON runs it I get:

  1   2   >