Re: maven mvn help:system失败 一直失败

2020-07-13 Thread MK Tan
Can you elaborate more? On Mon, Jul 13, 2020 at 5:08 PM 不才 wrote: > > >

Re: for maven short-cut command like mvn clean and mvn package

2015-04-06 Thread MK Tan
Not defined > * integration-test: Not defined > * post-integration-test: Not defined > * verify: Not defined > * install: org.apache.maven.plugins:maven-install-plugin:2.4:install > * deploy: org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy > > regards, > Lin > > On S

Re: for maven short-cut command like mvn clean and mvn package

2015-04-05 Thread MK Tan
t > is to execute clean phase of default lifecycle? Thanks. > > regards, > Lin > > On Sun, Apr 5, 2015 at 11:04 PM, MK Tan wrote: > > > You can try > > http://maven.apache.org/plugins/maven-help-plugin/describe-mojo.html > > > > > > On Mon, Apr 6, 20

Re: for maven short-cut command like mvn clean and mvn package

2015-04-05 Thread MK Tan
You can try http://maven.apache.org/plugins/maven-help-plugin/describe-mojo.html On Mon, Apr 6, 2015 at 12:37 PM, Lin Ma wrote: > Hello Maven experts, > > Comparing to full format command like mvn plugin:goal, for command like mvn > clean and mvn package, how to find which is the exact goal to

Re: dependency plugin automatic version resolution

2014-04-18 Thread MK Tan
Maven will use the dependency plugin from the super pom. Which you can found at http://maven.apache.org/ref/3.2.1/maven-model-builder/super-pom.html On Fri, Apr 18, 2014 at 5:09 PM, Cintia Del Rio wrote: > Hi, > > > I was reading > > http://maven.apache.org/guides/introduction/introduction-to-p

Re: How to gain the new class every time?

2011-02-28 Thread MK Tan
The simple answer is you can't. This is because you are deleting a file but those remaining files have not been modified. It is always a good idea to have a clean build once you delete a source file. So that obsolete class is not polluted you build. On Tue, Mar 1, 2011 at 11:15 AM, jy hu wrote:

Re: M3 fails to download parent pom

2010-11-09 Thread MK Tan
Have you go through https://cwiki.apache.org/MAVEN/maven-3x-compatibility-notes.html#Maven3.xCompatibilityNotes-ParentPOMResolution On Nov 9, 2010 4:37 PM, "mjsell" wrote: > > I ran into this today when trying to move to Maven 3.. any news? Has a > ticket been written? > -- > View this message in

Re: M3 fails to download parent pom

2010-10-28 Thread MK Tan
I had encounter that few days back. And what I did is the location of the parent folder contains the pom.xml into the relativePath just like nl.topicus.onderwijs onderwijs-project-parent 1.3 On Thu, Oct 28, 2010 at 5:22 P

Re: clean then package error

2010-10-18 Thread MK Tan
I should spell check before I sending this mail. Maven need jdk and not jre. And if possible please include environment variable called JAVA_HOME which point to your jdk installation directory 2010/10/18 MK Tan > Haven require jdk but you are refer to jre > > On Oct 18, 2010 8:46

Re: clean then package error

2010-10-18 Thread MK Tan
Haven require jdk but you are refer to jre On Oct 18, 2010 8:46 PM, "冯仁君" wrote: > I'm new in using maven. when I try to package a helloworld maven program after I clean in the Eclipse IDE, it comes to an error. it says : > > [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-

Re: Findbug's Maven2 Plugin future direction

2008-03-13 Thread MK Tan
[X] Release Maven2 Findbugs Plugin 1.2.0 using Findbugs 1.3.x and require Java 5 to run. On Fri, Mar 14, 2008 at 8:51 AM, Garvin LeClaire <[EMAIL PROTECTED]> wrote: > The current version of the Maven2 FindBug plugin (1.1.1) uses Findbugs > 1.2.0 and the 1.2-SNAPSHOT version uses Findbugs 1.2.

Re: pom.xml jar scope

2008-01-28 Thread MK Tan
try change it to provided HTH, On Jan 28, 2008 5:08 PM, faisalloe <[EMAIL PROTECTED]> wrote: > > i have a problem with pom file. > > i have servlet.jar which is already available in tomcat lib folder, i want > to use this jar only to compile and produce class files but not in > project's > lib f

Re: POM - Forcing JDK version

2007-11-28 Thread MK Tan
how abt this: maven-compiler-plugin false 1.5 1.6 1.6 On Nov 28, 2007 5:58 PM, Jo Support <[EMAIL PROTECTED]> wrote: > hi, > > i'm trying to force the use of jdk 1.5 in compile tim

Re: Required goal not found: eclipse:m2eclipse

2007-09-20 Thread MK Tan
probably just run mvn eclipse:eclipse ;$-) enjoy On 9/21/07, thebugslayer <[EMAIL PROTECTED]> wrote: > > Does any knows what's the requirement to run: > $ mvn eclipse:m2eclipse > > ??? > > -- > /bugslayer > > - > To unsubscribe,

Re: maven deps problem

2007-07-11 Thread MK Tan
you are welcome ;-) On 7/12/07, Eric Yu <[EMAIL PROTECTED]> wrote: ye, that's the problem :-( thank you very much! On 7/12/07, MK Tan <[EMAIL PROTECTED]> wrote: > > Shouldn't it groupId refer to org.springframework? > > HTH, > MK Tan

Re: maven deps problem

2007-07-11 Thread MK Tan
Shouldn't it groupId refer to org.springframework? HTH, MK Tan On 7/12/07, Eric Yu <[EMAIL PROTECTED]> wrote: hi, all I hava a problem here. My project deps on spring, so I add spring(the whole package) as my deps, since my project also deps on struts2-spring-plugin, and the plu

Re: how to run both Maven1 & Maven2 in a single machine..

2007-06-21 Thread MK Tan
I would suggest you set MAVEN_HOME point to maven1 and set M2_HOME point to your maven2. This is because maven2 does not need to know MAVEN_HOME. HTH, MK Tan - Original Message From: Kiran Kodlady <[EMAIL PROTECTED]> To: users@maven.apache.org Sent: Friday, June 22, 2007 2:31

Re: where is xml-apis-1.0.b2.jar coming from ?

2007-05-29 Thread MK Tan
Is your war file using commons-logging 1.1? AFAIK, commons-logging will include xml-apis as indirect dependency. just exclude it will solve the problem - Original Message From: Jeff Mutonho <[EMAIL PROTECTED]> To: Maven Users List Sent: Tuesday, May 29, 2007 6:03:31 PM Subject: wher