Re: maven plugin for eclipse: cant access sites for plugin.

2012-03-04 Thread Wayne Fay
 I am trying to download the eclipse plugin for maven2.

The only eclipse plugin for Maven2 that is supported on this list is
the maven-eclipse-plugin. This runs from the command line and simply
builds the Eclipse dot-files (.project etc) that you will need to open
your Maven2 project in Eclipse.
http://maven.apache.org/plugins/maven-eclipse-plugin/

 Using the software update manager tool in eclipse where i can add site to
 update and install new plugins i have added repositories from codehaus,

None of this is supported here. You can get support for this via
Eclipse's m2e site and lists:
http://www.eclipse.org/m2e/

Wayne

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: Maven Plugin for Eclipse 2.0

2007-10-03 Thread Wendy Smoak
On 10/3/07, LukeLallu [EMAIL PROTECTED] wrote:

 But could not install it as all these versions are COMPLIANT with Eclipse
 3.1 and above.

 I am using WSAD 5.1.0 version is having Eclipse 2.0 version

I don't know that there's an IDE plugin available for something that old.

Have you tried 'mvn eclipse:eclipse' at the command line to generate
the .project and .classpath files, then opening the project?

-- 
Wendy

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven Plugin for Eclipse 2.0

2007-10-03 Thread LukeLallu

I am very new to Maven,

How do I do 'mvn eclipse:eclipse' when plugin could not be installed.

I am trying to install the plugin in the WSAD.

The Error I get is 
--
Feature requires feature com.ibm.wswb (2.1.1), or compatible.
  WebSphere Application Server - Express (5.1.0): Feature requires feature
com.ibm.wswb (2.1.1), or compatible.
  XML Tools (5.1.0): Feature requires feature com.ibm.wswb (2.1.1), or
compatible




Please do help. I stuck for the whole day.

Regards

Luke

Wendy Smoak-3 wrote:
 
 On 10/3/07, LukeLallu [EMAIL PROTECTED] wrote:
 
 But could not install it as all these versions are COMPLIANT with Eclipse
 3.1 and above.

 I am using WSAD 5.1.0 version is having Eclipse 2.0 version
 
 I don't know that there's an IDE plugin available for something that old.
 
 Have you tried 'mvn eclipse:eclipse' at the command line to generate
 the .project and .classpath files, then opening the project?
 
 -- 
 Wendy
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

-- 
View this message in context: 
http://www.nabble.com/Maven-Plugin-for-Eclipse-2.0-tf4562031s177.html#a13019963
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven Plugin for Eclipse 2.0

2007-10-03 Thread Wayne Fay
As Wendy already told you, there is no Maven plugin for Eclipse 2.0.
If you want to use a Maven plugin Eclipse, you will need to upgrade to
a newer release ie Eclipse 3.3.

Assuming you have installed Maven 2.0.7 properly (and set up an
Internet proxy etc if necessary), go to your project directory (which
has a pom.xml file) and run mvn eclipse:eclipse to generate the
.classpath and .project files for Eclipse.

Then you can point Eclipse at those files and it should successfully
open/import your project.

Wayne

On 10/3/07, LukeLallu [EMAIL PROTECTED] wrote:

 I am very new to Maven,

 How do I do 'mvn eclipse:eclipse' when plugin could not be installed.

 I am trying to install the plugin in the WSAD.

 The Error I get is
 --
 Feature requires feature com.ibm.wswb (2.1.1), or compatible.
   WebSphere Application Server - Express (5.1.0): Feature requires feature
 com.ibm.wswb (2.1.1), or compatible.
   XML Tools (5.1.0): Feature requires feature com.ibm.wswb (2.1.1), or
 compatible

 


 Please do help. I stuck for the whole day.

 Regards

 Luke

 Wendy Smoak-3 wrote:
 
  On 10/3/07, LukeLallu [EMAIL PROTECTED] wrote:
 
  But could not install it as all these versions are COMPLIANT with Eclipse
  3.1 and above.
 
  I am using WSAD 5.1.0 version is having Eclipse 2.0 version
 
  I don't know that there's an IDE plugin available for something that old.
 
  Have you tried 'mvn eclipse:eclipse' at the command line to generate
  the .project and .classpath files, then opening the project?
 
  --
  Wendy
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

 --
 View this message in context: 
 http://www.nabble.com/Maven-Plugin-for-Eclipse-2.0-tf4562031s177.html#a13019963
 Sent from the Maven - Users mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven Plugin for Eclipse 2.0

2007-10-03 Thread LukeLallu

Thank You so  much for the reply for it is something like this for a web
project right

Step 1 :
After Maven 2.0.7 installtion
mvn -U archetype:create -DgroupId=com.mycompany.app -DartifactId=my-web-app
-Dpackagename=com.mycompany.app -DarchetypeArtifactId=maven-archetype-webapp

Create a Web Project

Step 2:
cd my-web-app

Step 3:

As u said from my-web-app folder run

mvn eclipse:eclipse right

Step 4 :
Make the Parent Folder of my-web-app as the workspace in Eclipse and open
my-web-app (This part alone not very clear)

Thanks and Regards

Luke

Wayne Fay wrote:
 
 As Wendy already told you, there is no Maven plugin for Eclipse 2.0.
 If you want to use a Maven plugin Eclipse, you will need to upgrade to
 a newer release ie Eclipse 3.3.
 
 Assuming you have installed Maven 2.0.7 properly (and set up an
 Internet proxy etc if necessary), go to your project directory (which
 has a pom.xml file) and run mvn eclipse:eclipse to generate the
 .classpath and .project files for Eclipse.
 
 Then you can point Eclipse at those files and it should successfully
 open/import your project.
 
 Wayne
 
 On 10/3/07, LukeLallu [EMAIL PROTECTED] wrote:

 I am very new to Maven,

 How do I do 'mvn eclipse:eclipse' when plugin could not be installed.

 I am trying to install the plugin in the WSAD.

 The Error I get is
 --
 Feature requires feature com.ibm.wswb (2.1.1), or compatible.
   WebSphere Application Server - Express (5.1.0): Feature requires
 feature
 com.ibm.wswb (2.1.1), or compatible.
   XML Tools (5.1.0): Feature requires feature com.ibm.wswb (2.1.1), or
 compatible

 


 Please do help. I stuck for the whole day.

 Regards

 Luke

 Wendy Smoak-3 wrote:
 
  On 10/3/07, LukeLallu [EMAIL PROTECTED] wrote:
 
  But could not install it as all these versions are COMPLIANT with
 Eclipse
  3.1 and above.
 
  I am using WSAD 5.1.0 version is having Eclipse 2.0 version
 
  I don't know that there's an IDE plugin available for something that
 old.
 
  Have you tried 'mvn eclipse:eclipse' at the command line to generate
  the .project and .classpath files, then opening the project?
 
  --
  Wendy
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

 --
 View this message in context:
 http://www.nabble.com/Maven-Plugin-for-Eclipse-2.0-tf4562031s177.html#a13019963
 Sent from the Maven - Users mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

-- 
View this message in context: 
http://www.nabble.com/Maven-Plugin-for-Eclipse-2.0-tf4562031s177.html#a13020769
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven Plugin for Eclipse 2.0

2007-10-03 Thread Daniele De Francesco
Hi,
excuse me, just for sake of curiosity, what u can do with Eclipse2.0 that u
cannot with Eclipse 3.x?
I mean Eclipse 2.0 is a big piece of software but it just dates back 5
years

I wait curious for your answer :-)

Bye

On 10/3/07, LukeLallu [EMAIL PROTECTED] wrote:


 Thank You so  much for the reply for it is something like this for a web
 project right

 Step 1 :
 After Maven 2.0.7 installtion
 mvn -U archetype:create -DgroupId=com.mycompany.app-DartifactId=my-web-app
 -Dpackagename=com.mycompany.app-DarchetypeArtifactId=maven-archetype-webapp

 Create a Web Project

 Step 2:
 cd my-web-app

 Step 3:

 As u said from my-web-app folder run

 mvn eclipse:eclipse right

 Step 4 :
 Make the Parent Folder of my-web-app as the workspace in Eclipse and open
 my-web-app (This part alone not very clear)

 Thanks and Regards

 Luke

 Wayne Fay wrote:
 
  As Wendy already told you, there is no Maven plugin for Eclipse 2.0.
  If you want to use a Maven plugin Eclipse, you will need to upgrade to
  a newer release ie Eclipse 3.3.
 
  Assuming you have installed Maven 2.0.7 properly (and set up an
  Internet proxy etc if necessary), go to your project directory (which
  has a pom.xml file) and run mvn eclipse:eclipse to generate the
  .classpath and .project files for Eclipse.
 
  Then you can point Eclipse at those files and it should successfully
  open/import your project.
 
  Wayne
 
  On 10/3/07, LukeLallu [EMAIL PROTECTED] wrote:
 
  I am very new to Maven,
 
  How do I do 'mvn eclipse:eclipse' when plugin could not be installed.
 
  I am trying to install the plugin in the WSAD.
 
  The Error I get is
  --
  Feature requires feature com.ibm.wswb (2.1.1), or compatible.
WebSphere Application Server - Express (5.1.0): Feature requires
  feature
  com.ibm.wswb (2.1.1), or compatible.
XML Tools (5.1.0): Feature requires feature com.ibm.wswb (2.1.1),
 or
  compatible
 
  
 
 
  Please do help. I stuck for the whole day.
 
  Regards
 
  Luke
 
  Wendy Smoak-3 wrote:
  
   On 10/3/07, LukeLallu [EMAIL PROTECTED] wrote:
  
   But could not install it as all these versions are COMPLIANT with
  Eclipse
   3.1 and above.
  
   I am using WSAD 5.1.0 version is having Eclipse 2.0 version
  
   I don't know that there's an IDE plugin available for something that
  old.
  
   Have you tried 'mvn eclipse:eclipse' at the command line to generate
   the .project and .classpath files, then opening the project?
  
   --
   Wendy
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
  
 
  --
  View this message in context:
 
 http://www.nabble.com/Maven-Plugin-for-Eclipse-2.0-tf4562031s177.html#a13019963
  Sent from the Maven - Users mailing list archive at Nabble.com.
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

 --
 View this message in context:
 http://www.nabble.com/Maven-Plugin-for-Eclipse-2.0-tf4562031s177.html#a13020769
 Sent from the Maven - Users mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




RE: Re: Maven plugin for Eclipse

2007-09-11 Thread Eric Wood
How do you download the Q4E plug-in? The link below says that no download are 
avilable.

Eric 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carlos Sanchez
Sent: Monday, September 10, 2007 1:15 PM
To: Maven Users List
Subject: Re: Re: Maven plugin for Eclipse

it's a known issue with m2eclipse 0.0.10
http://jira.codehaus.org/browse/MNGECLIPSE-265

There's another Eclipse plugin Q4E http://code.google.com/p/q4e/ that me and 
other maven users are working on and doesn't have that bug.
Feel free to check it out.


On 9/10/07, De Vleeschauwer Nele [EMAIL PROTECTED] wrote:
 Hi,

 Even when I use the Refresh Settings option, Eclipse still tries to connect 
 to the Internet Maven Repo instead of the mirror I defined in my maven 
 settings.xml file.



 -Original Message-
 From: news [mailto:[EMAIL PROTECTED] On Behalf Of Achim Abeling
 Sent: vrijdag 7 september 2007 8:41
 To: users@maven.apache.org
 Subject: Re: Maven plugin for Eclipse

 Hi,

 did you refresh the settings in eclipse?
 It has to be done under
 Window-Preferences-Maven-Refresh Settings.

 Best regards
 Achim

 De Vleeschauwer Nele wrote:
  Hi,
 
  I have configured my settings.xml in this way and if I execute a maven 
  command from a dos box, it is using our company's repository.
  But if I call a maven command out of Eclipse, it goes directly to the Maven 
  Repo site.
 
 
 
  -Original Message-
  From: COPPENS, Fabien [mailto:[EMAIL PROTECTED]
  Sent: donderdag 6 september 2007 14:14
  To: Maven Users List
  Subject: RE: Maven plugin for Eclipse
 
 
 
  I believe you can configure this in your maven settings.xml file via 
  a profile :
 
  pluginRepositories
pluginRepository
idMyDevRepo/id
url
http://myrepository
/url
snapshots
enabledtrue/enabled
/snapshots
releases
enabledfalse/enabled
/releases
/pluginRepository
/pluginRepositories
/profile
 
 
  -Message d'origine-
  De : De Vleeschauwer Nele [mailto:[EMAIL PROTECTED]
  Envoyé : jeudi 6 septembre 2007 14:11 À : Maven Users List Objet : 
  Maven plugin for Eclipse
 
  Hi,
 
  For the moment I'm using version 3.3 of Eclipse with the Maven plugin 
  installed.
 
  Each time when I execute a maven command in Eclipse, Eclipse tries to 
  download the necessary artiftacts from the Maven Repo site 
  (repo1.maven.org).
  How can I configure that Eclipse should use the company's central Maven 
  Repository to download new artifacts instead of the one on the Maven site ?
 


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 -
 Visit our website! http://www.nbb.be

 DISCLAIMER: The content of this e-mail message should not be 
 construed as binding on the part of the National Bank of Belgium
 (NBB) unless otherwise and previously stated. The opinions expressed 
 in this message are solely those of the author and do not necessarily 
 reflect NBB viewpoints, particularly when the content of this message, 
 or part thereof, is private by nature or does not fall within the 
 professional scope of its author.

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




--
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
 -- The Princess Bride

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Re: Maven plugin for Eclipse

2007-09-11 Thread Hayes, Peter
http://code.google.com/p/q4e/wiki/Installation 

-Original Message-
From: Eric Wood [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 11, 2007 8:01 AM
To: Maven Users List
Subject: RE: Re: Maven plugin for Eclipse

How do you download the Q4E plug-in? The link below says that no download are 
avilable.

Eric 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carlos Sanchez
Sent: Monday, September 10, 2007 1:15 PM
To: Maven Users List
Subject: Re: Re: Maven plugin for Eclipse

it's a known issue with m2eclipse 0.0.10
http://jira.codehaus.org/browse/MNGECLIPSE-265

There's another Eclipse plugin Q4E http://code.google.com/p/q4e/ that me and 
other maven users are working on and doesn't have that bug.
Feel free to check it out.


On 9/10/07, De Vleeschauwer Nele [EMAIL PROTECTED] wrote:
 Hi,

 Even when I use the Refresh Settings option, Eclipse still tries to connect 
 to the Internet Maven Repo instead of the mirror I defined in my maven 
 settings.xml file.



 -Original Message-
 From: news [mailto:[EMAIL PROTECTED] On Behalf Of Achim Abeling
 Sent: vrijdag 7 september 2007 8:41
 To: users@maven.apache.org
 Subject: Re: Maven plugin for Eclipse

 Hi,

 did you refresh the settings in eclipse?
 It has to be done under
 Window-Preferences-Maven-Refresh Settings.

 Best regards
 Achim

 De Vleeschauwer Nele wrote:
  Hi,
 
  I have configured my settings.xml in this way and if I execute a maven 
  command from a dos box, it is using our company's repository.
  But if I call a maven command out of Eclipse, it goes directly to the Maven 
  Repo site.
 
 
 
  -Original Message-
  From: COPPENS, Fabien [mailto:[EMAIL PROTECTED]
  Sent: donderdag 6 september 2007 14:14
  To: Maven Users List
  Subject: RE: Maven plugin for Eclipse
 
 
 
  I believe you can configure this in your maven settings.xml file via 
  a profile :
 
  pluginRepositories
pluginRepository
idMyDevRepo/id
url
http://myrepository
/url
snapshots
enabledtrue/enabled
/snapshots
releases
enabledfalse/enabled
/releases
/pluginRepository
/pluginRepositories
/profile
 
 
  -Message d'origine-
  De : De Vleeschauwer Nele [mailto:[EMAIL PROTECTED]
  Envoyé : jeudi 6 septembre 2007 14:11 À : Maven Users List Objet : 
  Maven plugin for Eclipse
 
  Hi,
 
  For the moment I'm using version 3.3 of Eclipse with the Maven plugin 
  installed.
 
  Each time when I execute a maven command in Eclipse, Eclipse tries to 
  download the necessary artiftacts from the Maven Repo site 
  (repo1.maven.org).
  How can I configure that Eclipse should use the company's central Maven 
  Repository to download new artifacts instead of the one on the Maven site ?
 


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 -
 Visit our website! http://www.nbb.be

 DISCLAIMER: The content of this e-mail message should not be 
 construed as binding on the part of the National Bank of Belgium
 (NBB) unless otherwise and previously stated. The opinions expressed 
 in this message are solely those of the author and do not necessarily 
 reflect NBB viewpoints, particularly when the content of this message, 
 or part thereof, is private by nature or does not fall within the 
 professional scope of its author.

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




--
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
 -- The Princess Bride

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Re: Maven plugin for Eclipse

2007-09-10 Thread De Vleeschauwer Nele
Hi,

Even when I use the Refresh Settings option, Eclipse still tries to connect to 
the Internet Maven Repo instead of the mirror I defined in my maven 
settings.xml file. 



-Original Message-
From: news [mailto:[EMAIL PROTECTED] On Behalf Of Achim Abeling
Sent: vrijdag 7 september 2007 8:41
To: users@maven.apache.org
Subject: Re: Maven plugin for Eclipse

Hi,

did you refresh the settings in eclipse?
It has to be done under
Window-Preferences-Maven-Refresh Settings.

Best regards
Achim

De Vleeschauwer Nele wrote:
 Hi,
 
 I have configured my settings.xml in this way and if I execute a maven 
 command from a dos box, it is using our company's repository.
 But if I call a maven command out of Eclipse, it goes directly to the Maven 
 Repo site.
 
  
 
 -Original Message-
 From: COPPENS, Fabien [mailto:[EMAIL PROTECTED] 
 Sent: donderdag 6 september 2007 14:14
 To: Maven Users List
 Subject: RE: Maven plugin for Eclipse
 
 
  
 I believe you can configure this in your maven settings.xml file 
 via a profile :
 
 pluginRepositories
   pluginRepository
   idMyDevRepo/id
   url
   http://myrepository
   /url
   snapshots
   enabledtrue/enabled
   /snapshots
   releases
   enabledfalse/enabled
   /releases
   /pluginRepository
   /pluginRepositories
   /profile
 
 
 -Message d'origine-
 De : De Vleeschauwer Nele [mailto:[EMAIL PROTECTED] 
 Envoyé : jeudi 6 septembre 2007 14:11
 À : Maven Users List
 Objet : Maven plugin for Eclipse
 
 Hi,
 
 For the moment I'm using version 3.3 of Eclipse with the Maven plugin 
 installed.
 
 Each time when I execute a maven command in Eclipse, Eclipse tries to 
 download the necessary artiftacts from the Maven Repo site (repo1.maven.org). 
 How can I configure that Eclipse should use the company's central Maven 
 Repository to download new artifacts instead of the one on the Maven site ?
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
Visit our website! http://www.nbb.be

DISCLAIMER: The content of this e-mail message should not be
construed as binding on the part of the National Bank of Belgium
(NBB) unless otherwise and previously stated. The opinions
expressed in this message are solely those of the author and do not
necessarily reflect NBB viewpoints, particularly when the content
of this message, or part thereof, is private by nature or does not
fall within the professional scope of its author.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Re: Maven plugin for Eclipse

2007-09-10 Thread Carlos Sanchez
it's a known issue with m2eclipse 0.0.10
http://jira.codehaus.org/browse/MNGECLIPSE-265

There's another Eclipse plugin Q4E http://code.google.com/p/q4e/ that
me and other maven users are working on and doesn't have that bug.
Feel free to check it out.


On 9/10/07, De Vleeschauwer Nele [EMAIL PROTECTED] wrote:
 Hi,

 Even when I use the Refresh Settings option, Eclipse still tries to connect 
 to the Internet Maven Repo instead of the mirror I defined in my maven 
 settings.xml file.



 -Original Message-
 From: news [mailto:[EMAIL PROTECTED] On Behalf Of Achim Abeling
 Sent: vrijdag 7 september 2007 8:41
 To: users@maven.apache.org
 Subject: Re: Maven plugin for Eclipse

 Hi,

 did you refresh the settings in eclipse?
 It has to be done under
 Window-Preferences-Maven-Refresh Settings.

 Best regards
 Achim

 De Vleeschauwer Nele wrote:
  Hi,
 
  I have configured my settings.xml in this way and if I execute a maven 
  command from a dos box, it is using our company's repository.
  But if I call a maven command out of Eclipse, it goes directly to the Maven 
  Repo site.
 
 
 
  -Original Message-
  From: COPPENS, Fabien [mailto:[EMAIL PROTECTED]
  Sent: donderdag 6 september 2007 14:14
  To: Maven Users List
  Subject: RE: Maven plugin for Eclipse
 
 
 
  I believe you can configure this in your maven settings.xml file
  via a profile :
 
  pluginRepositories
pluginRepository
idMyDevRepo/id
url
http://myrepository
/url
snapshots
enabledtrue/enabled
/snapshots
releases
enabledfalse/enabled
/releases
/pluginRepository
/pluginRepositories
/profile
 
 
  -Message d'origine-
  De : De Vleeschauwer Nele [mailto:[EMAIL PROTECTED]
  Envoyé : jeudi 6 septembre 2007 14:11
  À : Maven Users List
  Objet : Maven plugin for Eclipse
 
  Hi,
 
  For the moment I'm using version 3.3 of Eclipse with the Maven plugin 
  installed.
 
  Each time when I execute a maven command in Eclipse, Eclipse tries to 
  download the necessary artiftacts from the Maven Repo site 
  (repo1.maven.org).
  How can I configure that Eclipse should use the company's central Maven 
  Repository to download new artifacts instead of the one on the Maven site ?
 


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 -
 Visit our website! http://www.nbb.be

 DISCLAIMER: The content of this e-mail message should not be
 construed as binding on the part of the National Bank of Belgium
 (NBB) unless otherwise and previously stated. The opinions
 expressed in this message are solely those of the author and do not
 necessarily reflect NBB viewpoints, particularly when the content
 of this message, or part thereof, is private by nature or does not
 fall within the professional scope of its author.

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-- 
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
 -- The Princess Bride

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven plugin for Eclipse

2007-09-07 Thread Achim Abeling

Hi,

did you refresh the settings in eclipse?
It has to be done under
Window-Preferences-Maven-Refresh Settings.

Best regards
Achim

De Vleeschauwer Nele wrote:

Hi,

I have configured my settings.xml in this way and if I execute a maven command 
from a dos box, it is using our company's repository.
But if I call a maven command out of Eclipse, it goes directly to the Maven 
Repo site.

 


-Original Message-
From: COPPENS, Fabien [mailto:[EMAIL PROTECTED] 
Sent: donderdag 6 september 2007 14:14

To: Maven Users List
Subject: RE: Maven plugin for Eclipse


 
I believe you can configure this in your maven settings.xml file 
via a profile :


pluginRepositories
pluginRepository
idMyDevRepo/id
url
http://myrepository
/url
snapshots
enabledtrue/enabled
/snapshots
releases
enabledfalse/enabled
/releases
/pluginRepository
/pluginRepositories
/profile


-Message d'origine-
De : De Vleeschauwer Nele [mailto:[EMAIL PROTECTED] 
Envoyé : jeudi 6 septembre 2007 14:11

À : Maven Users List
Objet : Maven plugin for Eclipse

Hi,

For the moment I'm using version 3.3 of Eclipse with the Maven plugin installed.

Each time when I execute a maven command in Eclipse, Eclipse tries to download the necessary artiftacts from the Maven Repo site (repo1.maven.org). 
How can I configure that Eclipse should use the company's central Maven Repository to download new artifacts instead of the one on the Maven site ?





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Maven plugin for Eclipse

2007-09-06 Thread COPPENS, Fabien

 
I believe you can configure this in your maven settings.xml file 
via a profile :

pluginRepositories
pluginRepository
idMyDevRepo/id
url
http://myrepository
/url
snapshots
enabledtrue/enabled
/snapshots
releases
enabledfalse/enabled
/releases
/pluginRepository
/pluginRepositories
/profile


-Message d'origine-
De : De Vleeschauwer Nele [mailto:[EMAIL PROTECTED] 
Envoyé : jeudi 6 septembre 2007 14:11
À : Maven Users List
Objet : Maven plugin for Eclipse

Hi,

For the moment I'm using version 3.3 of Eclipse with the Maven plugin installed.

Each time when I execute a maven command in Eclipse, Eclipse tries to download 
the necessary artiftacts from the Maven Repo site (repo1.maven.org). 
How can I configure that Eclipse should use the company's central Maven 
Repository to download new artifacts instead of the one on the Maven site ?


-
Visit our website! http://www.nbb.be

DISCLAIMER: The content of this e-mail message should not be construed as 
binding on the part of the National Bank of Belgium
(NBB) unless otherwise and previously stated. The opinions expressed in this 
message are solely those of the author and do not necessarily reflect NBB 
viewpoints, particularly when the content of this message, or part thereof, is 
private by nature or does not fall within the professional scope of its author.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Maven plugin for Eclipse

2007-09-06 Thread De Vleeschauwer Nele
Hi,

I have configured my settings.xml in this way and if I execute a maven command 
from a dos box, it is using our company's repository.
But if I call a maven command out of Eclipse, it goes directly to the Maven 
Repo site.

 

-Original Message-
From: COPPENS, Fabien [mailto:[EMAIL PROTECTED] 
Sent: donderdag 6 september 2007 14:14
To: Maven Users List
Subject: RE: Maven plugin for Eclipse


 
I believe you can configure this in your maven settings.xml file 
via a profile :

pluginRepositories
pluginRepository
idMyDevRepo/id
url
http://myrepository
/url
snapshots
enabledtrue/enabled
/snapshots
releases
enabledfalse/enabled
/releases
/pluginRepository
/pluginRepositories
/profile


-Message d'origine-
De : De Vleeschauwer Nele [mailto:[EMAIL PROTECTED] 
Envoyé : jeudi 6 septembre 2007 14:11
À : Maven Users List
Objet : Maven plugin for Eclipse

Hi,

For the moment I'm using version 3.3 of Eclipse with the Maven plugin installed.

Each time when I execute a maven command in Eclipse, Eclipse tries to download 
the necessary artiftacts from the Maven Repo site (repo1.maven.org). 
How can I configure that Eclipse should use the company's central Maven 
Repository to download new artifacts instead of the one on the Maven site ?


-
Visit our website! http://www.nbb.be

DISCLAIMER: The content of this e-mail message should not be construed as 
binding on the part of the National Bank of Belgium
(NBB) unless otherwise and previously stated. The opinions expressed in this 
message are solely those of the author and do not necessarily reflect NBB 
viewpoints, particularly when the content of this message, or part thereof, is 
private by nature or does not fall within the professional scope of its author.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Maven plugin for Eclipse

2007-09-06 Thread COPPENS, Fabien

 
Which plugin and version of plugin are you using ?
I think I've noticed something similar using v0.0.10 of the m2 plugin on 
Eclipse 3.2.2.
In my case the eclipse maven plugin is unable to retrieve the maven plugins, so 
I always
have first populate my local repo by running once the mvn command line goals.


-Message d'origine-
De : De Vleeschauwer Nele [mailto:[EMAIL PROTECTED] 
Envoyé : jeudi 6 septembre 2007 15:21
À : Maven Users List
Objet : RE: Maven plugin for Eclipse

Hi,

I have configured my settings.xml in this way and if I execute a maven command 
from a dos box, it is using our company's repository.
But if I call a maven command out of Eclipse, it goes directly to the Maven 
Repo site.

 

-Original Message-
From: COPPENS, Fabien [mailto:[EMAIL PROTECTED]
Sent: donderdag 6 september 2007 14:14
To: Maven Users List
Subject: RE: Maven plugin for Eclipse


 
I believe you can configure this in your maven settings.xml file 
via a profile :

pluginRepositories
pluginRepository
idMyDevRepo/id
url
http://myrepository
/url
snapshots
enabledtrue/enabled
/snapshots
releases
enabledfalse/enabled
/releases
/pluginRepository
/pluginRepositories
/profile


-Message d'origine-
De : De Vleeschauwer Nele [mailto:[EMAIL PROTECTED] 
Envoyé : jeudi 6 septembre 2007 14:11
À : Maven Users List
Objet : Maven plugin for Eclipse

Hi,

For the moment I'm using version 3.3 of Eclipse with the Maven plugin installed.

Each time when I execute a maven command in Eclipse, Eclipse tries to download 
the necessary artiftacts from the Maven Repo site (repo1.maven.org). 
How can I configure that Eclipse should use the company's central Maven 
Repository to download new artifacts instead of the one on the Maven site ?


-
Visit our website! http://www.nbb.be

DISCLAIMER: The content of this e-mail message should not be construed as 
binding on the part of the National Bank of Belgium
(NBB) unless otherwise and previously stated. The opinions expressed in this 
message are solely those of the author and do not necessarily reflect NBB 
viewpoints, particularly when the content of this message, or part thereof, is 
private by nature or does not fall within the professional scope of its author.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Maven plugin for Eclipse

2007-09-06 Thread De Vleeschauwer Nele
We are using the 0.0.10 Maven plugin on Elipse 3.3.0
 

-Original Message-
From: COPPENS, Fabien [mailto:[EMAIL PROTECTED] 
Sent: donderdag 6 september 2007 15:38
To: Maven Users List
Subject: RE: Maven plugin for Eclipse


 
Which plugin and version of plugin are you using ?
I think I've noticed something similar using v0.0.10 of the m2 plugin on 
Eclipse 3.2.2.
In my case the eclipse maven plugin is unable to retrieve the maven plugins, so 
I always
have first populate my local repo by running once the mvn command line goals.


-Message d'origine-
De : De Vleeschauwer Nele [mailto:[EMAIL PROTECTED] 
Envoyé : jeudi 6 septembre 2007 15:21
À : Maven Users List
Objet : RE: Maven plugin for Eclipse

Hi,

I have configured my settings.xml in this way and if I execute a maven command 
from a dos box, it is using our company's repository.
But if I call a maven command out of Eclipse, it goes directly to the Maven 
Repo site.

 

-Original Message-
From: COPPENS, Fabien [mailto:[EMAIL PROTECTED]
Sent: donderdag 6 september 2007 14:14
To: Maven Users List
Subject: RE: Maven plugin for Eclipse


 
I believe you can configure this in your maven settings.xml file 
via a profile :

pluginRepositories
pluginRepository
idMyDevRepo/id
url
http://myrepository
/url
snapshots
enabledtrue/enabled
/snapshots
releases
enabledfalse/enabled
/releases
/pluginRepository
/pluginRepositories
/profile


-Message d'origine-
De : De Vleeschauwer Nele [mailto:[EMAIL PROTECTED] 
Envoyé : jeudi 6 septembre 2007 14:11
À : Maven Users List
Objet : Maven plugin for Eclipse

Hi,

For the moment I'm using version 3.3 of Eclipse with the Maven plugin installed.

Each time when I execute a maven command in Eclipse, Eclipse tries to download 
the necessary artiftacts from the Maven Repo site (repo1.maven.org). 
How can I configure that Eclipse should use the company's central Maven 
Repository to download new artifacts instead of the one on the Maven site ?


-
Visit our website! http://www.nbb.be

DISCLAIMER: The content of this e-mail message should not be construed as 
binding on the part of the National Bank of Belgium
(NBB) unless otherwise and previously stated. The opinions expressed in this 
message are solely those of the author and do not necessarily reflect NBB 
viewpoints, particularly when the content of this message, or part thereof, is 
private by nature or does not fall within the professional scope of its author.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven plugin for Eclipse

2003-12-23 Thread Gilles Dodinet
Jonathan,

theres mevenide.sf.net that aims to integrate maven into eclipse. Jeff 
has done a great job recently and a M6-compatible version should be 
released in the near future.

-- gd

Jonathan Hawkes wrote:

Hey all,

I've noticed some documentation on the Maven site concerning Eclipse.  Is there a Maven plugin for Eclipse yet?

Thanks!
Jonathan Hawkes
 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]