Re: Return a custom error message from the repository

2020-09-11 Thread Hervé BOUTEMY
epository and was trying to find out if > there is a way to attach a custom error message (or any custom message in > general) to the response so when a command like "mvn deploy" fails due to > an error in the remote repository, the user can see some sort of helpful > message. (Gi

Return a custom error message from the repository

2020-09-08 Thread Steve Abrams
Hello, I'm working on the GitLab maven repository and was trying to find out if there is a way to attach a custom error message (or any custom message in general) to the response so when a command like "mvn deploy" fails due to an error in the remote repository, the user can see

duplicate GAV error message difference between v3.1.1 and v3.2.1

2014-03-17 Thread jieryn
https://github.com/jieryn/maven-duplicate-gav You can use the project above to quickly see the stark difference between error messages produced by Apache Maven v3.1.1 and v3.2.1 when a duplicate GAV is found in the reactor. I think this is a pretty bad regression.

Recognizing custom error message from plugin output

2013-07-31 Thread pikehunter
Hello mavens guru So, I have made mavens pugin based on the ant (maven-plugin-tools-ant) . This my plugin do something what i need with a different success. I can see error message in the output, if errors present during plugins execution, for example: */importing to domain: [echo] connecting

Re: Maven SCM plugin fails to do a scm:update after a scm:checkout with strange error message Command failed.The git-log command failed.

2013-02-28 Thread Andreas Gudian
Hi, Don't you have to use the https or ssh transport for github write access? The git protocol is read-only on github. Anyway you're right, the error message is a bit confusing. ;) Andreas Am Donnerstag, 28. Februar 2013 schrieb seba.wag...@gmail.com : Hi, I have configured a Maven project

Re: Maven SCM plugin fails to do a scm:update after a scm:checkout with strange error message Command failed.The git-log command failed.

2013-02-28 Thread seba.wag...@gmail.com
. Anyway you're right, the error message is a bit confusing. ;) Andreas Am Donnerstag, 28. Februar 2013 schrieb seba.wag...@gmail.com : Hi, I have configured a Maven project to checkout a Git project using: scm developerConnectionscm:git:g...@git.github.com: example

Bad error message on maven-release-plugin

2012-04-25 Thread Matt Walsh
Hi. D'oh! Just spent half an hour trying to figure out why I couldn't do a release. Hopefully this will keep someone else from doing the same. Kept getting the following error message: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-release-plugin:2.2.1:perform (default-cli

RE: Bad error message on maven-release-plugin

2012-04-25 Thread Matt Walsh
To: Maven Users List Subject: Bad error message on maven-release-plugin Hi. D'oh! Just spent half an hour trying to figure out why I couldn't do a release. Hopefully this will keep someone else from doing the same. Kept getting the following error message: [ERROR] Failed

Re: maven compile error message format

2012-04-12 Thread Barrie Treloar
On Thu, Apr 12, 2012 at 2:55 PM, mike digioia mpd...@gmail.com wrote: Thanks Wayne, That is the reason for my two jars, one is source and the other binary. However, this statement does not make sense in all cases, since one can create self-running JAR files with mainclass.mf manifest file to

Re: maven compile error message format

2012-04-12 Thread Wayne Fay
That is the reason for my two jars, one is source and the other binary. However, this statement does not make sense in all cases, since one can create self-running JAR files with mainclass.mf manifest file to run the program with java -jar myProgram.jar. This may include both binary and

Re: maven compile error message format

2012-04-12 Thread Ron Wheeler
Putting the sources in a executable jar just makes it bigger and slower to load at run--time with absolutely no benefit to the execution. Wayne is right that it will not break anything but why do it. People who run programs are not generally the people who read or use source code. People who

Re: maven compile error message format

2012-04-12 Thread Wayne Fay
Putting the sources in a executable jar just makes it bigger and slower to load at run--time with absolutely no benefit to the execution. Wayne is right that it will not break anything but why do it. Actually that is the scary thing... it CAN break things. Go read that old Maven Users email

Re: maven compile error message format

2012-04-12 Thread Ron Wheeler
At least, I got the Wayne is right part correct. Ron On 12/04/2012 11:28 AM, Wayne Fay wrote: Putting the sources in a executable jar just makes it bigger and slower to load at run--time with absolutely no benefit to the execution. Wayne is right that it will not break anything but why do it.

Re: maven compile error message format

2012-04-11 Thread Barrie Treloar
On Wed, Apr 11, 2012 at 4:45 PM, mike digioia mpd...@gmail.com wrote: Can anyone in the world tell me what line number and what error this compiler thinks my error is in source file ServiceDiscovery.java?

Re: maven compile error message format

2012-04-11 Thread mike digioia
ok thnak you very much. This was what I was expecting, however i could not see what the issue was. Here are the lines in the code from line 1 on package com.huawei.cona.android.zeroconf; import java.io.IOException; import jmdns-1.0; import service-1.0; import service.ServiceEvent; import

Re: Re: maven compile error message format

2012-04-11 Thread Thorsten Heit
Hi, ok thnak you very much. This was what I was expecting, however i could not see what the issue was. Here are the lines in the code from line 1 on package com.huawei.cona.android.zeroconf; import java.io.IOException; import jmdns-1.0; import service-1.0; (...) Quite easy: These

Re: Re: Re: maven compile error message format

2012-04-11 Thread Thorsten Heit
Hi, ok thnak you very much. This was what I was expecting, however i could not see what the issue was. Here are the lines in the code from line 1 on package com.huawei.cona.android.zeroconf; import java.io.IOException; import jmdns-1.0; import service-1.0; (...)

Re: maven compile error message format

2012-04-11 Thread Shu
Line 5 column 12 On Wednesday, April 11, 2012 9:15:24 AM UTC+2, mpd wrote: Can anyone in the world tell me what line number and what error this compiler thinks my error is in source file ServiceDiscovery.java?

Re: maven compile error message format

2012-04-11 Thread mike digioia
Hi Barrie, Sorry to take anymore of your time up. But I have not had any success with all the changes I have made to correct this problem. Based on your recommendation I suspect it is a mismatch in what I have in my code and in my pom/environment. I used mvn install to add jar files that I

Re: maven compile error message format

2012-04-11 Thread Barrie Treloar
On Thu, Apr 12, 2012 at 8:22 AM, mike digioia mpd...@gmail.com wrote: Hi Barrie, Sorry to take anymore of your time up. But I have not had any success with all the changes I have made to correct this problem. Based on your recommendation I suspect it is a mismatch in what I have in my code

Re: maven compile error message format

2012-04-11 Thread mike digioia
Thanks I see you don't know what the issue is either. This is not a java programming issue. It is a maven issue. I have been living with the maven manual for a week. But that has not been much time considering what they built. On Wed, Apr 11, 2012 at 4:25 PM, Barrie Treloar baerr...@gmail.com

Re: maven compile error message format

2012-04-11 Thread Barrie Treloar
On Thu, Apr 12, 2012 at 9:12 AM, mike digioia mpd...@gmail.com wrote: Thanks I see you don't know what the issue is either. This is not a java programming issue. It is a maven issue. I have been living with the maven manual for a week. But that has not been much time considering what they

Re: maven compile error message format

2012-04-11 Thread Stephen Connolly
Oh we all know what the issue is. Hint: You don't know what a valid package name is and you don't understand some basic concepts of Java. Trust us, this *is* a java programming issue. This is *not* a maven issue. On 12 April 2012 00:42, mike digioia mpd...@gmail.com wrote: Thanks I see you

Re: maven compile error message format

2012-04-11 Thread Ron Wheeler
I read in my morning mail that you were told how to fix this. import com.huawei.cona.android.jmdns-new; The compiler is not even looking at your maven dependencies. It is telling you that you have a syntax error. jmdns-new is not a legal syntax for a class name in an import statement since it

Re: maven compile error message format

2012-04-11 Thread Wayne Fay
conalab@ching-jen-laptop:~/.m2/repository/com/huawei/cona/android/zeroconf/jmdns/1.0$ mvn install:install-file -Dfile=src.jmdns.jar -Dsources=src.jmdns.jar -DgroupId=src.jmdns -DartifactId=jmdns -Dversion=new -Dpackaging=jar -DgeneratePom=true You have already been sufficiently razed over the

Re: maven compile error message format

2012-04-11 Thread mike digioia
Thanks Wayne, That is the reason for my two jars, one is source and the other binary. However, this statement does not make sense in all cases, since one can create self-running JAR files with mainclass.mf manifest file to run the program with java -jar myProgram.jar. This may include both binary

Re: Hi,guys! I am a new one in Maven. I try to run maven .but get the error message .

2009-07-14 Thread 白鹏
C:\DOCUME~1\ADMINI~1set java JAVA_HOME=C:\Program Files\Java\jdk1.6.0_05 2009/7/14 Mick Knutson mickknut...@gmail.com Where is your JAVA_HOME installed to? --- Thank You… Mick Knutson, President BASE Logic, Inc. Enterprise Architecture, Design, Mentoring Agile Consulting p. (866)

Re: Hi,guys! I am a new one in Maven. I try to run maven .but get the error message .

2009-07-14 Thread Sam Wun
:D 2009/7/14 白鹏 bill.peng@gmail.com: C:\DOCUME~1\ADMINI~1set java JAVA_HOME=C:\Program Files\Java\jdk1.6.0_05 2009/7/14 Mick Knutson mickknut...@gmail.com Where is your JAVA_HOME installed to? --- Thank You... Mick Knutson, President BASE Logic, Inc. Enterprise Architecture,

Re: Hi, guys! I am a new one in Maven. I try to run maven .but get the error message .

2009-07-13 Thread Dirk Olmes
白鹏 wrote: + Error stacktraces are turned on. Apache Maven 2.1.0 (r755702; 2009-03-19 03:10:27+0800) Java version: 1.6.0_05 Java home: C:\Program Files\Java\jdk1.6.0_05\jre Default locale: zh_CN, platform encoding: GBK OS name: windows xp version: 5.1 arch: x86 Family: windows [...] I'd

Re: Hi,guys! I am a new one in Maven. I try to run maven .but get the error message .

2009-07-13 Thread David Weintraub
Try: *C:\DOCUME~1\ADMINI~1 mvn archetype:generate * * *Instead of the archetype:create. The archetype:generate is the newer plugin, and you don't need to worry about providing it with any command line parameters that might cause errors. There could be several issues. Are you using Java 1.5 or

Re: Hi,guys! I am a new one in Maven. I try to run maven .but get the error message .

2009-07-13 Thread Mick Knutson
Where is your JAVA_HOME installed to? --- Thank You… Mick Knutson, President BASE Logic, Inc. Enterprise Architecture, Design, Mentoring Agile Consulting p. (866) BLiNC-411: (254-6241-1) f. (415) 685-4233 Website: http://baselogic.com Linked IN: http://linkedin.com/in/mickknutson Vacation

Re: Hi,guys! I am a new one in Maven. I try to run maven .but get the error message .

2009-07-12 Thread Wayne Fay
C:\DOCUME~1\ADMINI~1mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app FATAL ERROR: Unable to start the embedded plexus container Try mvn -X archetype:... to turn on debug mode and look for more information than you've provided here. The Fatal Error you've got here is just

Re: Hi,guys! I am a new one in Maven. I try to run maven .but get the error message .

2009-07-12 Thread 白鹏
+ Error stacktraces are turned on. Apache Maven 2.1.0 (r755702; 2009-03-19 03:10:27+0800) Java version: 1.6.0_05 Java home: C:\Program Files\Java\jdk1.6.0_05\jre Default locale: zh_CN, platform encoding: GBK OS name: windows xp version: 5.1 arch: x86 Family: windows at

Re: Get Maven's Error Message

2009-06-09 Thread David Nemer
and not the error that shows in the Terminal: Error occurred during initialization of VM java.lang.OutOfMemoryError: unable to create new native thread Does any one knows how to capture the actual error message that shows up in the terminal/console? Cheers, -- David Nemer Sent from Kaiserslautern, RP

Re: Get Maven's Error Message

2009-06-09 Thread David Nemer
and not the error that shows in the Terminal: Error occurred during initialization of VM java.lang.OutOfMemoryError: unable to create new native thread Does any one knows how to capture the actual error message that shows up in the terminal/console? Cheers, -- David Nemer Sent from Kaiserslautern

Get Maven's Error Message

2009-06-08 Thread David Nemer
Hello All, I'm running Maven programatically in Java, so the point is to build the projects (run the pom file), so every time a build process fails, I want to get this error message! Somehow I can get an error message, for my example, it returns: class

Compiler plugin cannot parse error message

2008-11-25 Thread Arnaud Bailly
] [INFO] Compilation failure no more tokens - could not parse error message: -- 1. WARNING in /home/nono/.hudson/jobs/nuxeo-web-engine/workspace/vendor/shindig/java/common/src/main/java/org/apache/shindig/common/crypto/BlobExpiredException.java (at line 26

[SOLVED] Re: Compiler plugin cannot parse error message

2008-11-25 Thread Arnaud Bailly
Sorry for the noise, I was not using the right compiler. Thanks anyway Arnaud Bailly -- View this message in context: http://www.nabble.com/Compiler-plugin-cannot-parse-error-message-tp20684404p20684824.html Sent from the Maven - Users mailing list archive at Nabble.com

A question about error message annotations are not supported in -source 1.3

2008-09-24 Thread thomas2004
target1.5/target /configuration /plugin /plugins /build ... [/code] Someone can help? -- View this message in context: http://www.nabble.com/A-question-about-error-message-%22annotations

Re: A question about error message annotations are not supported in -source 1.3

2008-09-24 Thread Nick Stolwijk
-about-error-message-%22annotations-are-not-supported-in--source-1.3%22-tp19645391p19645391.html Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: Error message

2008-08-24 Thread Brett Porter
not establishes what is the origin of the following error message in Maven 2.0.8. [EMAIL PROTECTED] # mvn [WARNING] Failed to initialize environment variable resolver. Skipping environment substitution in settings. --- constituent[0]: file:/usr

Error message

2008-08-22 Thread Rodrigo Villagran
Dear Members After reviewing manuals and consult on various websites Even I can not establishes what is the origin of the following error message in Maven 2.0.8. [EMAIL PROTECTED] # mvn [WARNING] Failed to initialize environment variable resolver. Skipping environment substitution in settings

weird error message

2008-06-25 Thread Ittay Dror
Component descriptor role: 'org.apache.maven.wagon.CommandExecutor', implementation: 'org.apache.maven.wagon.providers.ssh.external.ScpExternalCommandExecutor', role hint: 'scpexe' has a hint, but there are other implementations that don't Thank you for your help, Ittay

Urgent help needed xalan-j 2.7.1 issue giving error message

2008-04-21 Thread Jonnalagadda, Srinivas (C)(STP)
Hi , I installled jdk 1.5 on linux machine. I downloaded xalan-j 2.7.0 and copied into jdk's lib/endorsed directory and also jre's lib/endorsed diredtory. When I use mave 1 it still complains about not findinf xalan2 or xalan1 in the class path. The following is the error I get. This work around

Re: Misleading error message in Maven2? If not where are .jar files?

2008-03-03 Thread Wayne Fay
Or just use the Geronimo spec jars: http://repo1.maven.org/maven2/geronimo-spec/geronimo-spec-jms/1.1-rc4/ groupIdgeronimo-spec/groupId artifactIdgeronimo-spec-jms/artifactId version1.1-rc4/version Wayne On 2/29/08, Wendy Smoak [EMAIL PROTECTED] wrote: On Fri, Feb 29, 2008 at 9:09 PM,

Re: A new error message - never before seen

2008-03-01 Thread Wayne Fay
get the following error message (see below) I have the following rep in the POM xml file and checked out the dir structure. repository idhttp://people.apache.org/repo/m2-snapshot-repository/id nameApache Repository for Maven2/name urlhttp

A new error message - never before seen

2008-02-29 Thread lanchez
get the following error message (see below) I have the following rep in the POM xml file and checked out the dir structure. repository idhttp://people.apache.org/repo/m2-snapshot-repository/id nameApache Repository for Maven2/name urlhttp

Misleading error message in Maven2? If not where are .jar files?

2008-02-29 Thread lanchez
I decided to give this ActiveMQ thing a spin and created a simple pom. When I run $mvn install I get the following error message (see below). I went to the following URL : http://java.sun.com/products/jms/docs.html to download a jar to put in the repo but at this URL there are only PDF

Re: A new error message - never before seen

2008-02-29 Thread Wayne Fay
artifactIdactivemq-core/artifactId version5.1-SNAPSHOT/version scopedeploy/scope /dependency now when I do: $mvn install I get the following error message (see below) I have the following rep in the POM xml file and checked out the dir structure. repository

Re: Misleading error message in Maven2? If not where are .jar files?

2008-02-29 Thread Wendy Smoak
On Fri, Feb 29, 2008 at 9:09 PM, lanchez [EMAIL PROTECTED] wrote: I went to the following URL : http://java.sun.com/products/jms/docs.html to download a jar to put in the repo but at this URL there are only PDF files (no reference impl's). There's one link for the specification, and

Re: A new error message - never before seen

2008-02-29 Thread lanchez
groupIdorg.apache.activemq/groupId artifactIdactivemq-core/artifactId version5.1-SNAPSHOT/version scopedeploy/scope /dependency now when I do: $mvn install I get the following error message (see below) I have the following rep in the POM xml file and checked out the dir

Mirror URL not showing up in m2 error message

2007-02-07 Thread Carlos.Fernandez
I have a internal proxy specified as a mirror to central. However, when I have an error resolving a dependency I see these error messages: Reason: Unable to download the artifact from any repository . . . from the specified remote repositories: central (http://repo1.maven.org/maven2)

Re: Mirror URL not showing up in m2 error message

2007-02-07 Thread Carlos Sanchez
just noise, if you see the Downloading: lines it'll print the real server it's hitting On 2/7/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have a internal proxy specified as a mirror to central. However, when I have an error resolving a dependency I see these error messages: Reason:

Error message on validate

2006-12-22 Thread soussou97
Hi; I have the following error message when I valid my Maven project : mvn validate [ERROR] FATAL ERROR [INFO] [INFO] Failed to resolve artifact. GroupId: com.alger.apply ArtifactId: apply Version: 1 Reason: Unable

Re: SVN Error Message when using continuum

2006-03-24 Thread Richard C. L. Li
I don't think it is this problem, the LANG is already set to en_US.UTF-8. The strange thing is that the svn command fails in continuum but success when typing it manually (svn update) in the command prompt. Anyway to obtain the exact svn command it execute for debugging? Thanks, Richard Li

Re: SVN Error Message when using continuum

2006-03-24 Thread Emmanuel Venisse
The command is printed in continuum logs but it's svn update Emmanuel Richard C. L. Li a écrit : I don't think it is this problem, the LANG is already set to en_US.UTF-8. The strange thing is that the svn command fails in continuum but success when typing it manually (svn update) in the

Re: SVN Error Message when using continuum

2006-03-24 Thread Richard C. L. Li
SuSE Linux 10.0 Regards, Richard Li Emmanuel Venisse wrote: what is your OS? Emmanuel Richard C. L. Li a écrit : Hi, When building it reports the following error: -- Provider message: The svn command

Re: SVN Error Message when using continuum

2006-03-24 Thread Emmanuel Venisse
Can you try to set LC-MESSAGES like this : export LC_MESSAGES=en_EN.utf8 or something similar Emmanuel Richard C. L. Li a écrit : SuSE Linux 10.0 Regards, Richard Li Emmanuel Venisse wrote: what is your OS? Emmanuel Richard C. L. Li a écrit : Hi, When building it reports the

Re: SVN Error Message when using continuum

2006-03-24 Thread Emmanuel Venisse
http://svnbook.red-bean.com/nightly/en/svn-book.html#svn.advanced.l10n.svnuse Emmanuel Emmanuel Venisse a écrit : Can you try to set LC-MESSAGES like this : export LC_MESSAGES=en_EN.utf8 or something similar Emmanuel Richard C. L. Li a écrit : SuSE Linux 10.0 Regards, Richard Li

Re: SVN Error Message when using continuum

2006-03-24 Thread Richard C. L. Li
I checked the log, copy the command, go to the working directory and execute it - no error. Really strange. Any other suggestions? Regards, Richard Li Emmanuel Venisse wrote: The command is printed in continuum logs but it's svn update Emmanuel Richard C. L. Li a écrit : I don't think it

Re: SVN Error Message when using continuum

2006-03-24 Thread Emmanuel Venisse
No, sorry. Emmanuel Richard C. L. Li a écrit : I checked the log, copy the command, go to the working directory and execute it - no error. Really strange. Any other suggestions? Regards, Richard Li Emmanuel Venisse wrote: The command is printed in continuum logs but it's svn update

SVN Error Message when using continuum

2006-03-22 Thread Richard C. L. Li
Hi, When building it reports the following error: -- Provider message: The svn command failed. Command output: --- svn: Can't convert

Re: SVN Error Message when using continuum

2006-03-22 Thread Emmanuel Venisse
what is your OS? Emmanuel Richard C. L. Li a écrit : Hi, When building it reports the following error: -- Provider message: The svn command failed. Command output:

some developers of maven2 can resolve this question?[line number of error-message of maven output]

2006-01-13 Thread ZhiQiang He
) at org.codehaus.classworlds.Launcher.launch(Launcher.java:255) at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java :430) When i use Maven-2.0.1 to generate the maven site,i get this error message form maven output ,i can not get the error line number,if i can, it more easy

Re: some developers of maven2 can resolve this question?[line number of error-message of maven output]

2006-01-13 Thread Rinku
Users List users@maven.apache.org Sent: Saturday, January 14, 2006 8:08 PM Subject: some developers of maven2 can resolve this question?[line number of error-message of maven output] [ERROR] Error rendering Z:\eBook\Java\Logging\Logging In Java\src\site\apt\07\index.apt: missing

Re: some developers of maven2 can resolve this question?[line number of error-message of maven output]

2006-01-13 Thread Rinku
. HTH, Rahul - Original Message - From: ZhiQiang He [EMAIL PROTECTED] To: Maven Users List users@maven.apache.org Sent: Saturday, January 14, 2006 8:08 PM Subject: some developers of maven2 can resolve this question?[line number of error-message of maven output] [ERROR] Error

Re: [continuum 1.0] BUILD ERROR Message

2005-10-28 Thread Emmanuel Venisse
project before you finish looking for projects to run? -Original Message- From: Allison, Bob [mailto:[EMAIL PROTECTED] Sent: Friday, October 28, 2005 06:43 To: continuum-users@maven.apache.org Subject: RE: [continuum 1.0] BUILD ERROR Message It seems to be an occasional message

Re: Component Descriptor Error Message

2005-06-17 Thread Henry Isidro
Simon McClenahan wrote: I'm running Maven under Windows, and I was unable to specify the drive letter. Conveniently I do everything on my C: drive, and I have ended up using the following: maven.repo.remote=file:///localhost/projects/online/trunk/,http://www.ib iblio.org/maven/ I know it

Component Descriptor Error Message

2005-06-16 Thread Nathaniel Stoddard
a dependency. (Technically there's only one library in the repository, so who knows if I have it setup correctly at all). I'm getting an error message: [INFO] Main Error: Unsupported Protocol: commons-sandbox:commons-id:0.1-dev:pom from the specified remote repositories: http://repo1

Re: Component Descriptor Error Message

2005-06-16 Thread John Casey
that aren't on Ibiblio. Everything seems to be fine with the exception that I can't actually load anything from it when I declare a dependency. (Technically there's only one library in the repository, so who knows if I have it setup correctly at all). I'm getting an error message: [INFO

Re: Component Descriptor Error Message

2005-06-16 Thread Nathaniel Stoddard
in the repository, so who knows if I have it setup correctly at all). I'm getting an error message: [INFO] Main Error: Unsupported Protocol: commons-sandbox:commons-id:0.1-dev:pom from the specified remote repositories: http://repo1.maven.org/maven2, file://dev/repository

Re: Component Descriptor Error Message

2005-06-16 Thread John Casey
. Everything seems to be fine with the exception that I can't actually load anything from it when I declare a dependency. (Technically there's only one library in the repository, so who knows if I have it setup correctly at all). I'm getting an error message: [INFO] Main Error: Unsupported Protocol

RE: Component Descriptor Error Message

2005-06-16 Thread Simon McClenahan
figured this out by trial and error. I'm using Maven 1.0.2. - Simon -Original Message- From: John Casey [mailto:[EMAIL PROTECTED] Sent: Thursday, June 16, 2005 1:46 PM To: Maven Users List Subject: Re: Component Descriptor Error Message -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 just

Re: Component Descriptor Error Message

2005-06-16 Thread Javier Kohen
Hi Nathaniel, El jue, 16-06-2005 a las 13:39 -0400, Nathaniel Stoddard escribi: I'm getting an error message: [INFO] Main Error: Unsupported Protocol: commons-sandbox:commons-id:0.1-dev:pom from the specified remote repositories: http://repo1.maven.org/maven2, file://dev

error message output improvement

2004-04-02 Thread Sonnek, Ryan
unclear where to go for support. So, just as the dependency downloading tells user's where to go for the artifact they are looking for, the error message should tell them where to go for help with their problem. Ex: BUILD FAILED PLUGIN JDEVELOPER ENCOUNTERED AN ERROR. PLEASE SEE http://someurl.com

Re: error message output improvement

2004-04-02 Thread John Casey
on where to go for help. with more and more plugins moving out of maven-core and into the sourceforge project (and other places), it becomes unclear where to go for support. So, just as the dependency downloading tells user's where to go for the artifact they are looking for, the error message

RE: error message output improvement

2004-04-02 Thread Sonnek, Ryan
I'd be happy to dig into this more with a little direction. Where could this be found? -Original Message- From: John Casey [mailto:[EMAIL PROTECTED] Sent: Friday, April 02, 2004 9:56 AM To: Maven Users List Subject: Re: error message output improvement I'd give than