Re: Maven variables

2010-07-13 Thread Anders Hammar
No, you're not configuring the property that way. You're configuring the
plugin, but you're not setting the property.
A property is set in hte properties section of the pom.

/Anders

On Tue, Jul 13, 2010 at 00:34, Flavio Pompermaier fla8...@gmail.com wrote:

 I set that variable via the configuration section of the compiler
 plugin of my pom.xml but the result of help:evaluate of that variable
 returns null! My question is: how can I retrieve the default values of
 the parameters of a certain plugin version?if I look at the plugin
 site I can see that its default value is 1.5. But this is valid for
 the current version..if I want to know its default value for an older
 version what am I supposed to do??

 2010/7/12, Anders Hammar and...@hammar.net:
  This does work for me:
 
  mvn help:evaluate -Dmaven.compiler.source=1.5
  -Dexpression=maven.compiler.source
 
  I'm setting the maven.compiler.source property here on command line
 instead
  of specifying it in the project, which should work the same.
 
  /Anders
 
  On Mon, Jul 12, 2010 at 23:27, Justin Edelson
  justinedel...@gmail.comwrote:
 
  From a shell, help:evaluate should be the right thing to do.
 
  Could it be that maven.compiler.source is, in fact, null?
 
  On 7/12/10 5:23 PM, Flavio Pompermaier wrote:
   I mean,how can I display their value?
  
   2010/7/12, Justin Edelson justinedel...@gmail.com:
   what do you mean by inspect?
  
   On 7/12/10 1:13 PM, Flavio Pompermaier wrote:
   Hi to all,
   is there a way to inspect maven.* variables (such as
   ${maven.compiler.source})?
   I tried to use the help:evaluate tool but it tells me null object
 or
   invalid expression.
  
   Any idea??
  
   Best regards,
   Flavio
  
  
 -
   To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
   For additional commands, e-mail: users-h...@maven.apache.org
  
  
  
   -
   To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
   For additional commands, e-mail: users-h...@maven.apache.org
  
  
  
 
 
  -
  To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
  For additional commands, e-mail: users-h...@maven.apache.org
 
 
 

 --
 Inviato dal mio dispositivo mobile

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




Re: Maven variables

2010-07-13 Thread Flavio Pompermaier
This is the description on the source paramenter of the compiler
plugin page (of the goal compile:compile):

source:
The -source argument for the Java compiler.

* Type: java.lang.String
* Since: 2.0
* Required: No
* Expression: ${maven.compiler.source}
* Default: 1.5

How can I get that value? If it is not evaluable as an expression, how
can I know how it will be evaluated by the plugin?
My JavaHome points to a Java 1.6 but as far as I know the 2.0.2
compiler use 1.4 compilation, isn't it?

2010/7/13 Anders Hammar and...@hammar.net:
 No, you're not configuring the property that way. You're configuring the
 plugin, but you're not setting the property.
 A property is set in hte properties section of the pom.

 /Anders

 On Tue, Jul 13, 2010 at 00:34, Flavio Pompermaier fla8...@gmail.com wrote:

 I set that variable via the configuration section of the compiler
 plugin of my pom.xml but the result of help:evaluate of that variable
 returns null! My question is: how can I retrieve the default values of
 the parameters of a certain plugin version?if I look at the plugin
 site I can see that its default value is 1.5. But this is valid for
 the current version..if I want to know its default value for an older
 version what am I supposed to do??

 2010/7/12, Anders Hammar and...@hammar.net:
  This does work for me:
 
  mvn help:evaluate -Dmaven.compiler.source=1.5
  -Dexpression=maven.compiler.source
 
  I'm setting the maven.compiler.source property here on command line
 instead
  of specifying it in the project, which should work the same.
 
  /Anders
 
  On Mon, Jul 12, 2010 at 23:27, Justin Edelson
  justinedel...@gmail.comwrote:
 
  From a shell, help:evaluate should be the right thing to do.
 
  Could it be that maven.compiler.source is, in fact, null?
 
  On 7/12/10 5:23 PM, Flavio Pompermaier wrote:
   I mean,how can I display their value?
  
   2010/7/12, Justin Edelson justinedel...@gmail.com:
   what do you mean by inspect?
  
   On 7/12/10 1:13 PM, Flavio Pompermaier wrote:
   Hi to all,
   is there a way to inspect maven.* variables (such as
   ${maven.compiler.source})?
   I tried to use the help:evaluate tool but it tells me null object
 or
   invalid expression.
  
   Any idea??
  
   Best regards,
   Flavio
  
  
 -
   To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
   For additional commands, e-mail: users-h...@maven.apache.org
  
  
  
   -
   To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
   For additional commands, e-mail: users-h...@maven.apache.org
  
  
  
 
 
  -
  To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
  For additional commands, e-mail: users-h...@maven.apache.org
 
 
 

 --
 Inviato dal mio dispositivo mobile

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




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



Re: Maven variables

2010-07-13 Thread Stephen Connolly
On 13 July 2010 07:40, Flavio Pompermaier fla8...@gmail.com wrote:

 This is the description on the source paramenter of the compiler
 plugin page (of the goal compile:compile):

 source:
 The -source argument for the Java compiler.

* Type: java.lang.String
* Since: 2.0
* Required: No
* Expression: ${maven.compiler.source}

This means that if the property maven.compiler.source is defined, use that
value, otherwise assume that the value is...

* Default: 1.5

 How can I get that value? If it is not evaluable as an expression, how
 can I know how it will be evaluated by the plugin?
 My JavaHome points to a Java 1.6 but as far as I know the 2.0.2
 compiler use 1.4 compilation, isn't it?

 2010/7/13 Anders Hammar and...@hammar.net:
  No, you're not configuring the property that way. You're configuring the
  plugin, but you're not setting the property.
  A property is set in hte properties section of the pom.
 
  /Anders
 
  On Tue, Jul 13, 2010 at 00:34, Flavio Pompermaier fla8...@gmail.com
 wrote:
 
  I set that variable via the configuration section of the compiler
  plugin of my pom.xml but the result of help:evaluate of that variable
  returns null! My question is: how can I retrieve the default values of
  the parameters of a certain plugin version?if I look at the plugin
  site I can see that its default value is 1.5. But this is valid for
  the current version..if I want to know its default value for an older
  version what am I supposed to do??
 
  2010/7/12, Anders Hammar and...@hammar.net:
   This does work for me:
  
   mvn help:evaluate -Dmaven.compiler.source=1.5
   -Dexpression=maven.compiler.source
  
   I'm setting the maven.compiler.source property here on command line
  instead
   of specifying it in the project, which should work the same.
  
   /Anders
  
   On Mon, Jul 12, 2010 at 23:27, Justin Edelson
   justinedel...@gmail.comwrote:
  
   From a shell, help:evaluate should be the right thing to do.
  
   Could it be that maven.compiler.source is, in fact, null?
  
   On 7/12/10 5:23 PM, Flavio Pompermaier wrote:
I mean,how can I display their value?
   
2010/7/12, Justin Edelson justinedel...@gmail.com:
what do you mean by inspect?
   
On 7/12/10 1:13 PM, Flavio Pompermaier wrote:
Hi to all,
is there a way to inspect maven.* variables (such as
${maven.compiler.source})?
I tried to use the help:evaluate tool but it tells me null
 object
  or
invalid expression.
   
Any idea??
   
Best regards,
Flavio
   
   
  -
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org
   
   
   
   
 -
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org
   
   
   
  
  
   -
   To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
   For additional commands, e-mail: users-h...@maven.apache.org
  
  
  
 
  --
  Inviato dal mio dispositivo mobile
 
  -
  To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
  For additional commands, e-mail: users-h...@maven.apache.org
 
 
 

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




Use separate property filters for the varaible in war file and the assembly files

2010-07-13 Thread bangalore

Hi,

 

The project structure:

 

|-- pom.xml

 

`-- src

 `-- main

 |-- java

 |   `-- com

 |   `-- example

 |   `-- projects

 |   `-- SampleAction.java

 |-- resources

 |   `-- assembly.xml

  `-- assemblyfilter.properties

  `-- filterwar.properties

 `-- webapp

 |-- WEB-INF

 |   `-- web.xml

 |-- index.html

 `-- sample1.html
 

The assembly.xml creates a zip file with index.html and sample1.html. The
war also contains index.html and sample1.html.
I have to apply separate filters for the zip files and the htmls in the war
files. The assembly files always get the common filter
(filterwar.properties) if it is defined; else it takes the values from
assemblyfilter.properties.
How can I apply separate filters for the files added with assembly and the
war .

 
Thanks.

-- 
View this message in context: 
http://maven.40175.n5.nabble.com/Use-separate-property-filters-for-the-varaible-in-war-file-and-the-assembly-files-tp1046593p1046593.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-mail: users-h...@maven.apache.org



Use separate property filters for the varaible in war file and the assembly files.

2010-07-13 Thread Joice, Binny
Hi,

The project structure:

|-- pom.xml

`-- src
 `-- main
 |-- java
 |   `-- com
 |   `-- example
 |   `-- projects
 |   `-- SampleAction.java
 |-- resources
 |   `-- assembly.xml
  `-- assemblyfilter.properties
  `-- filterwar.properties
 `-- webapp
 |-- WEB-INF
 |   `-- web.xml
 |-- index.html
 `-- sample1.html

The assembly.xml creates a zip file with index.html and sample1.html. The war 
also contains index.html and sample1.html.

I have to apply separate filters for the zip files and the htmls in the war 
files. The assembly files always get the common filter (filterwar.properties) 
if it is defined; else it takes the values from assemblyfilter.properties.

How can I apply separate filters for the files added with assembly and the war .

Thanks.
**
 
This message may contain confidential or proprietary information intended only 
for the use of the 
addressee(s) named above or may contain information that is legally privileged. 
If you are 
not the intended addressee, or the person responsible for delivering it to the 
intended addressee, 
you are hereby notified that reading, disseminating, distributing or copying 
this message is strictly 
prohibited. If you have received this message by mistake, please immediately 
notify us by  
replying to the message and delete the original message and any copies 
immediately thereafter. 

Thank you. 
**
 
CLLD


Running antrun plugin twice in same phase with another plugin in between?

2010-07-13 Thread Wim Deblauwe
Hi,

I need to run the antrun plugin twice in the packaging phase. I found this
on the wiki:
http://docs.codehaus.org/display/MAVENUSER/MiniGuide-AntMultiPhase

However, it speaks of different lifecycle phases. I tried with the same
phase and that works, however, I need to run another plugin in between. Is
this possible?

I was hoping that all plugins' executions would be sorted by their id. That
way, i could use id's like 'step-1-do-something',
'step-2-do-something-else', to force a certain order of plugin execution.

regards,

Wim


Re : Running antrun plugin twice in same phase with another plugin in between?

2010-07-13 Thread Julien HENRY
Hi,

Have you tried the following configuration?

build
plugins
  plugin
artifactIdmaven-antrun-plugin/artifactId
executions
  execution
idtask1/id
phaseyourphase/phase
configuration
  tasks
!-- Some task --
  /tasks
/configuration
goals
  goalrun/goal
/goals
  /execution
/executions
  /plugin
  plugin
artifactIdyour middle plugin/artifactId
executions
  execution
idtask2/id
phaseyourphase/phase
configuration
   ...
/configuration
goals
  ...
/goals
  /execution
/executions
  /plugin
  plugin
artifactIdmaven-antrun-plugin/artifactId
executions
  execution
idtask3/id
phaseyourphase/phase
configuration
  tasks
!-- Some other task --
  /tasks
/configuration
goals
  goalrun/goal
/goals
  /execution
/executions
  /plugin
/plugins
  /build
I have not tested so I'm not sure it will work.

Regards,

Julien



- Message d'origine 
 De : Wim Deblauwe wim.debla...@gmail.com
 À : Maven Users List users@maven.apache.org
 Envoyé le : Mar 13 juillet 2010, 11h 09min 36s
 Objet : Running antrun plugin twice in same phase with another plugin in  
between?
 
 Hi,
 
 I need to run the antrun plugin twice in the packaging phase. I found  this
 on the wiki:
 http://docs.codehaus.org/display/MAVENUSER/MiniGuide-AntMultiPhase
 
 However,  it speaks of different lifecycle phases. I tried with the same
 phase and  that works, however, I need to run another plugin in between. Is
 this  possible?
 
 I was hoping that all plugins' executions would be sorted by  their id. That
 way, i could use id's like  'step-1-do-something',
 'step-2-do-something-else', to force a certain order  of plugin execution.
 
 regards,
 
 Wim
 


 

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



Nexus Cluster

2010-07-13 Thread bpommerenke

Is there anyone use Nexus in cluster mode Active/Active or Active/Standby?
Many thanks,
Benoit.
-- 
View this message in context: 
http://maven.40175.n5.nabble.com/Nexus-Cluster-tp1046651p1046651.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-mail: users-h...@maven.apache.org



Re: Re : Running antrun plugin twice in same phase with another plugin in between?

2010-07-13 Thread Wim Deblauwe
Hi Julien,

yes, I tried that too and it does not work. task1 does not get executed :(

regards,

Wim

2010/7/13 Julien HENRY henr...@yahoo.fr

 Hi,

 Have you tried the following configuration?

 build
plugins
  plugin
artifactIdmaven-antrun-plugin/artifactId
executions
  execution
idtask1/id
phaseyourphase/phase
configuration
  tasks
!-- Some task --
  /tasks
/configuration
goals
  goalrun/goal
/goals
  /execution
/executions
  /plugin
  plugin
artifactIdyour middle plugin/artifactId
executions
  execution
idtask2/id
phaseyourphase/phase
configuration
   ...
/configuration
goals
  ...
/goals
  /execution
/executions
  /plugin
  plugin
artifactIdmaven-antrun-plugin/artifactId
executions
  execution
idtask3/id
phaseyourphase/phase
configuration
  tasks
!-- Some other task --
  /tasks
/configuration
goals
  goalrun/goal
/goals
  /execution
/executions
  /plugin
/plugins
  /build
 I have not tested so I'm not sure it will work.

 Regards,

 Julien



 - Message d'origine 
  De : Wim Deblauwe wim.debla...@gmail.com
  À : Maven Users List users@maven.apache.org
  Envoyé le : Mar 13 juillet 2010, 11h 09min 36s
  Objet : Running antrun plugin twice in same phase with another plugin in
 between?
 
  Hi,
 
  I need to run the antrun plugin twice in the packaging phase. I found
  this
  on the wiki:
  http://docs.codehaus.org/display/MAVENUSER/MiniGuide-AntMultiPhase
 
  However,  it speaks of different lifecycle phases. I tried with the same
  phase and  that works, however, I need to run another plugin in between.
 Is
  this  possible?
 
  I was hoping that all plugins' executions would be sorted by  their id.
 That
  way, i could use id's like  'step-1-do-something',
  'step-2-do-something-else', to force a certain order  of plugin
 execution.
 
  regards,
 
  Wim
 




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




call maven-jar-plugin after build-helper-plugin

2010-07-13 Thread Kapila Kohli
Hi,
I am facing an issue in which have settings in pom.xml as
generate war as default artifactid package,  also generate jar with some
specific folder set. Once done copy this new jar to some other machine.

Issue is- once build is done, it calls plugin-build-helper instead of
calling first mavne-jar-plugin.
hence build fails since jar doesnt get generated.
Can anyone suggest?

Hence pom.ml is like-

 groupIdmmt/groupId
artifactId${artifactname.application}/artifactId
packaging${packaging.application}/packaging
version${version.bus-application}/version

 plugin
groupIdorg.apache.maven.plugins/groupId
artifactIdmaven-jar-plugin/artifactId
version2.3/version
executions
execution
phaseinstall/phase
goals
goaljar/goal
/goals
configuration
includes

include**/dir/**/*.*/include

include**/dir/**/*.*/include
/includes
/configuration
/execution
/executions
/plugin
plugin
groupIdorg.codehaus.mojo/groupId

artifactIdbuild-helper-maven-plugin/artifactId
version1.3/version
configuration
artifacts
artifact
file

target/${artifactname.application}-${version.application}.jar
/file
typejar/type
/artifact
/artifacts
/configuration
executions
execution
idattach-artifacts/id
phasepackage/phase
goals

goalattach-artifact/goal
/goals
/execution
/executions
/plugin
/plugins


JUnit test fails with Javamail

2010-07-13 Thread Gajo Csaba

 Hello,

I wrote a simple JUnit 4 test. It just sends a plain email with 
JavaMail. When I run this test class from Eclipse, it passes without 
problems. However, when I run it with mvn test, the test will fail.


Here is part of the stack trace:

DEBUG SMTP: trying to connect to host mail.website.com, port 465, 
isSSL false

java.lang.AssertionError
at 
com.sun.mail.smtp.SMTPTransport.readServerResponse(SMTPTransport.java:1578)

at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1369)
at 
com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:412)

at javax.mail.Service.connect(Service.java:248)
at javax.mail.Service.connect(Service.java:105)

By following the stack trace, I saw that in SMTPTransport.java:1578 
there is the following line:


assert Thread.holdsLock(this);

This is why it fails. Any idea how to run Maven so that this doesn't fail?

Thanks, Csaba


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



Re: call maven-jar-plugin after build-helper-plugin

2010-07-13 Thread Justin Edelson
On 7/13/10 6:31 AM, Kapila Kohli wrote:
 Hi,
 I am facing an issue in which have settings in pom.xml as
 generate war as default artifactid package,  also generate jar with some
 specific folder set. Once done copy this new jar to some other machine.
 
 Issue is- once build is done, it calls plugin-build-helper instead of
 calling first mavne-jar-plugin.
 hence build fails since jar doesnt get generated.
 Can anyone suggest?

Maven is doing *exactly* what you are telling it to do. The jar plugin
is bound to a later phase (install) than the build helper plugin (package).

I suspect you want to bind the jar plugin to the package phase.

Justin


 
 Hence pom.ml is like-
 
  groupIdmmt/groupId
 artifactId${artifactname.application}/artifactId
 packaging${packaging.application}/packaging
 version${version.bus-application}/version
 
  plugin
 groupIdorg.apache.maven.plugins/groupId
 artifactIdmaven-jar-plugin/artifactId
 version2.3/version
 executions
 execution
 phaseinstall/phase
 goals
 goaljar/goal
 /goals
 configuration
 includes
 
 include**/dir/**/*.*/include
 
 include**/dir/**/*.*/include
 /includes
 /configuration
 /execution
 /executions
 /plugin
 plugin
 groupIdorg.codehaus.mojo/groupId
 
 artifactIdbuild-helper-maven-plugin/artifactId
 version1.3/version
 configuration
 artifacts
 artifact
 file
 
 target/${artifactname.application}-${version.application}.jar
 /file
 typejar/type
 /artifact
 /artifacts
 /configuration
 executions
 execution
 idattach-artifacts/id
 phasepackage/phase
 goals
 
 goalattach-artifact/goal
 /goals
 /execution
 /executions
 /plugin
 /plugins
 


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



Re: Running antrun plugin twice in same phase with another plugin in between?

2010-07-13 Thread Justin Edelson
You can't do this.

On 7/13/10 5:09 AM, Wim Deblauwe wrote:
 Hi,
 
 I need to run the antrun plugin twice in the packaging phase. I found this
 on the wiki:
 http://docs.codehaus.org/display/MAVENUSER/MiniGuide-AntMultiPhase
 
 However, it speaks of different lifecycle phases. I tried with the same
 phase and that works, however, I need to run another plugin in between. Is
 this possible?
 
 I was hoping that all plugins' executions would be sorted by their id. That
 way, i could use id's like 'step-1-do-something',
 'step-2-do-something-else', to force a certain order of plugin execution.
 
 regards,
 
 Wim
 


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



Re: Running antrun plugin twice in same phase with another plugin in between?

2010-07-13 Thread Wayne Fay
 However, it speaks of different lifecycle phases. I tried with the same
 phase and that works, however, I need to run another plugin in between. Is
 this possible?

You could:
release the maven-antrun-plugin under your own artifactId, say wim-antrun-plugin
then use (in order): m-antrun-p, plugin2, w-antrun-p in your pom

But this seems like a lot of extra work to me.

Wayne

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



Re: Running antrun plugin twice in same phase with another plugin in between?

2010-07-13 Thread Wim Deblauwe
I had a look at the maven 2.2.x code and I created a small patch that does
it. See http://jira.codehaus.org/browse/MNG-4727
All the patch does is sorting the 'MojoExecution' classes based on their id.
It is very few lines of code really.

It is a bit hackish as you need to use step- in your id/ declaration,
but it works perfectly. I hope the maven devs will pick it up under some
form or another.

regards,

Wim

2010/7/13 Wayne Fay wayne...@gmail.com

  However, it speaks of different lifecycle phases. I tried with the same
  phase and that works, however, I need to run another plugin in between.
 Is
  this possible?

 You could:
 release the maven-antrun-plugin under your own artifactId, say
 wim-antrun-plugin
 then use (in order): m-antrun-p, plugin2, w-antrun-p in your pom

 But this seems like a lot of extra work to me.

 Wayne

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




Using Eclipse without maven plugin (multiple module project)

2010-07-13 Thread Bahadýr Konu
To create a multimodule project and use it with eclipse+SVN
I have done everything that is described here: 
http://maven.apache.org/guides/mini/guide-ide-eclipse.html

Multiple Module Project

I have created my multi-module project and checked in to SVN
I checked out the project to a directory, ran mvn eclipse:eclipse
then I import the project to Eclipse (import existing project)
Everything is fine...

But the problem is: I cannot use the SVN plugin of eclipse now... in other 
words TEAM-commit  etc.. is not working. Eclipse treats the project as not 
under SVN control. 
 
The article says:
In both cases you will be able to synchronize your changes using eclipse.
 
But no luck... 
 
Any help is appreciated. I don't understand why this crucial integration is 
still so complicated. (if it is)
 
Thanks..
Bahadir
 
 
 

 


  

Re: Using Eclipse without maven plugin (multiple module project)

2010-07-13 Thread Ron Wheeler

 Why aren't you checking the project out in Eclipse?

BTW. I suggest using the STS version of Eclipse since all your plug-ins 
come preinstalled except for Subversion which is mostly included.




On 13/07/2010 11:31 AM, Bahadýr Konu wrote:

 To create a multimodule project and use it with eclipse+SVN I have
 done everything that is described here:
 http://maven.apache.org/guides/mini/guide-ide-eclipse.html

 Multiple Module Project

 I have created my multi-module project and checked in to SVN I
 checked out the project to a directory, ran mvn eclipse:eclipse
 then I import the project to Eclipse (import existing project)
 Everything is fine...

 But the problem is: I cannot use the SVN plugin of eclipse now... in
 other words TEAM-commit  etc.. is not working. Eclipse treats the
 project as not under SVN control.

 The article says: In both cases you will be able to synchronize your
 changes using eclipse.

 But no luck...

 Any help is appreciated. I don't understand why this crucial
 integration is still so complicated. (if it is)

 Thanks.. Bahadir










on


GWT on Maven Central

2010-07-13 Thread Justin Edelson
Does anyone know who is responsible for getting the GWT jars up on Maven
Central?

Thanks,
Justin

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



Re: Using Eclipse without maven plugin (multiple module project)

2010-07-13 Thread Antonio Petrelli
2010/7/13 Bahadýr Konu bahadir_k...@yahoo.com:
 I have created my multi-module project and checked in to SVN
 I checked out the project to a directory, ran mvn eclipse:eclipse
 then I import the project to Eclipse (import existing project)

Try using m2eclipse, it's a life-saver. Remember to install the
Subversion-m2eclipse integration that is available in the extras
repository:
http://m2eclipse.sonatype.org/
Checkout using Check out as Maven project.

Antonio

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



Re: Using Eclipse without maven plugin (multiple module project)

2010-07-13 Thread Ron Wheeler

 On 13/07/2010 2:19 PM, Antonio Petrelli wrote:

2010/7/13 Bahadýr Konubahadir_k...@yahoo.com:

I have created my multi-module project and checked in to SVN
I checked out the project to a directory, ran mvn eclipse:eclipse
then I import the project to Eclipse (import existing project)

Try using m2eclipse, it's a life-saver. Remember to install the
Subversion-m2eclipse integration that is available in the extras
repository:
http://m2eclipse.sonatype.org/
Checkout using Check out as Maven project.

Antonio

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



STS Eclipse has this already built-in.

Ron

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



Re: Using Eclipse without maven plugin (multiple module project)

2010-07-13 Thread Antonio Petrelli
2010/7/13 Ron Wheeler rwhee...@artifact-software.com:
  On 13/07/2010 2:19 PM, Antonio Petrelli wrote:

 2010/7/13 Bahadır Konubahadir_k...@yahoo.com:

 I have created my multi-module project and checked in to SVN
 I checked out the project to a directory, ran mvn eclipse:eclipse
 then I import the project to Eclipse (import existing project)

 Try using m2eclipse, it's a life-saver. Remember to install the
 Subversion-m2eclipse integration that is available in the extras
 repository:
 http://m2eclipse.sonatype.org/
 Checkout using Check out as Maven project.

 Antonio

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


 STS Eclipse has this already built-in.

You are right, but since the OP is already using Eclipse, I think that
downloading a plugin directly could be more fruitful.
I have more arguments, but I don't want to start an OT flame about Eclipse :-D

Antonio

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



Re: GWT on Maven Central

2010-07-13 Thread Brett Randall
The developer: 
http://maven.apache.org/guides/mini/guide-central-repository-upload.html

Send a request to the project developers/maintainers in the first instance.

Brett


On 7/14/10, Justin Edelson justinedel...@gmail.com wrote:
 Does anyone know who is responsible for getting the GWT jars up on Maven
 Central?

 Thanks,
 Justin

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



-- 
Sent from my mobile device

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



Re: GWT on Maven Central

2010-07-13 Thread Justin Edelson
I understand that's the case most of the time, but AFAIK, it is not the
case with GWT.

Justin

On 7/13/10 6:39 PM, Brett Randall wrote:
 The developer: 
 http://maven.apache.org/guides/mini/guide-central-repository-upload.html
 
 Send a request to the project developers/maintainers in the first instance.
 
 Brett
 
 
 On 7/14/10, Justin Edelson justinedel...@gmail.com wrote:
 Does anyone know who is responsible for getting the GWT jars up on Maven
 Central?

 Thanks,
 Justin

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


 


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



What does reloading a plugin container mean in maven?

2010-07-13 Thread Rajesh Koilpillai
What does reloading a plug-in container mean in maven? This happens in just
a single machine, every other machine seems to be fine. How do I fix this
issue?

[INFO] Reloading plugin container for: org.apache.maven.plugins:m
aven-clean-plugin:2.4.1. The plugin artifact has changed.
[INFO] [clean:clean {execution: default-clean}]
[INFO] Reloading plugin container for: org.codehaus.mojo:versions
-maven-plugin:1.2. The plugin artifact has changed.
[INFO] Reloading plugin container for: org.apache.maven.plugins:m
aven-compiler-plugin:2.3.1. The plugin artifact has changed.
[INFO] Reloading plugin container for: org.apache.maven.plugins:m
aven-jar-plugin:2.3.1. The plugin artifact has changed.
[INFO] Reloading plugin container for: org.apache.maven.plugins:m
aven-clean-plugin:2.4.1. The plugin artifact has changed.
[INFO] Reloading plugin container for: org.apache.maven.plugins:m
aven-site-plugin:2.1.1. The plugin artifact has changed.
[INFO] Reloading plugin container for: org.apache.maven.plugins:m

aven-install-plugin:2.3.1. The plugin artifact has changed.
[INFO] [site:attach-descriptor {execution: default-attach-descrip...


-- 
Thanks,
- Rajesh Koilpillai