[ANN] Maven Reporting Implementation 2.0.4.2 Released

2009-07-23 Thread Dennis Lundberg
The Maven team is pleased to announce the release of the Maven Reporting Implementation, version 2.0.4.2 This shared component contains abstract classes to manage report generation. http://maven.apache.org/shared/maven-reporting-impl/ You should specify the version in your project's dependency c

[ANN] Maven Project Info Reports Plugin 2.1.2 Released

2009-07-23 Thread Dennis Lundberg
The Maven team is pleased to announce the release of the Maven Project Info Reports Plugin, version 2.1.2 The Maven Project Info Reports plugin is used to generate reports information about the project. http://maven.apache.org/plugins/maven-project-info-reports-plugin/ You should specify the ver

Disk upgrades on Central

2009-07-23 Thread Brian Fox
We're scheduling a disk upgrade tonight at midnight pst. During this time, the repository may be offline while data is moved to larger disks. Thanks, Brian - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For addition

[PLEASE TEST] Maven 2.2.1-RC1

2009-07-23 Thread John Casey
Hi everyone, It looks like we've got some pretty major regressions with Maven 2.2.0, as I'm sure you've noticed. Please give this version a try at: http://bit.ly/4swtGu (https://repository.apache.org/content/repositories/maven-staging-025/org/apache/maven/apache-maven/2.2.1-RC1/) --- I thin

Re: quick question: remove .timestamp on "mvn clean"

2009-07-23 Thread Nicholas Tung
On Thu, Jul 23, 2009 at 2:43 AM, Martin Höller wrote: > On Thursday 23 July 2009 Nicholas Tung wrote: > > Hi all, > > > >Does anyone know how to remove the .timestamp on "mvn > > clean"? If I don't, it doesn't rebuild Scala files. > > Configure the maven-clean-plugin to delete this additional

RE: Repository problems

2009-07-23 Thread igorcomputacao
I have the same problem... Occurs on maven 2.1.0 and 2.2.0. Do you have any solution? mgainty wrote: > > > looks like the HttpWagon saw an EOF.. > > can you post the pom.xml > also I would validate the pom.xml for well-formed > > Martin > __ > Ve

[ANN] Maven Jarsigner Plugin 1.0 Released

2009-07-23 Thread Benjamin Bentmann
The Maven team is pleased to announce the release of the Maven Jarsigner Plugin, version 1.0. This plugin signs and verifies the project artifacts using the jarsigner tool. See the plugin's site for more details: http://maven.apache.org/plugins/maven-jarsigner-plugin/ The new plugin is mea

Deploy Maven 2.1.0

2009-07-23 Thread igorcomputacao
Hello for all, I have a problem in execute the deploy of my application. On determinate moment, my deploy is freezing and show-me this mensagen: artifact com.lowagie:itext: checking for updates from jaspersoft Someone help me? -- View this message in context: http://www.nabble.com/Deploy-Ma

Re: copy\move plugin

2009-07-23 Thread Alexander
Oh, I found assembly plugin suitable for my needs. Thanks lot to all! [?] 2009/7/23 Alexander Vaysberg > I think, it was better the common project, server and client project > created. But other solution can be a assembling plugin. The first soluction > with project for me was better. I can a r

Packaging external jars used within the ejb...

2009-07-23 Thread n000b
Hi all, I have ejb that uses some external libraries, I have configured my pom.xml for that and the jars are found during compile time and the ejb jar is generated. What I want to do is to package the libs used by the ejb with the ejb itself i.e. placing those lib under |_ _ _ META-INF

RE: Prevent Install of Assembly

2009-07-23 Thread Nord, James
http://maven.apache.org/plugins/maven-assembly-plugin/single-mojo.html#attach > -Original Message- > From: Jim Collings [mailto:jlistn...@gmail.com] > Sent: 23 July 2009 16:43 > To: Maven Users List > Subject: Re: Prevent Install of Assembly > > Didn't work. Neither did changing to fal

Re: Prevent Install of Assembly

2009-07-23 Thread Jim Collings
Didn't work. Neither did changing to false. Anybody have additional ideas? On Thu, Jul 23, 2009 at 11:25 AM, Jim Collings wrote: > http://maven.apache.org/plugins/maven-assembly-plugin/usage.html > > So the docs I found at the link above had this to say: > > "When the assembly is created it will

Re: Prevent Install of Assembly

2009-07-23 Thread Jim Collings
http://maven.apache.org/plugins/maven-assembly-plugin/usage.html So the docs I found at the link above had this to say: "When the assembly is created it will use the assemblyId as the artifact's classifier and will attach the created assembly to the project and will be uploaded into the repositor

Prevent Install of Assembly

2009-07-23 Thread Jim Collings
So I have a sub module that has an assembly. It is associated with the "package" goal. Each time I run install though, the zip file created is placed in the repository. There is no need for this. How can I prevent it? Jim C. -

Re: copy\move plugin

2009-07-23 Thread Markku Saarela
Also you could use jar plugin to make extra artifact for project with classifier like server and configure that jar plugin execution to include server specific resource files. - Markku Saarela Alexander Vaysberg wrote: I think, it was better the common project, server and client project crea

Re: Source dependency problem between ejb-jar and gwt-war

2009-07-23 Thread Rutton
nicolas de loof wrote: > > The plugin has a resource goal that can detect the necessary gwt source code > > to include (based on gtw.xml module file), and avoid your jar to contain ALL > > server-side code > > > Hmm. All the gwt-multiproject setup examples just copy all source code resources

Re: copy\move plugin

2009-07-23 Thread Alexander Vaysberg
I think, it was better the common project, server and client project created. But other solution can be a assembling plugin. The first soluction with project for me was better. I can a release for common, client and server make. With assembling can I only default release make but not for clien

RE: copy\move plugin

2009-07-23 Thread Jonathan Woods
Then it might be more naturally 'Maven' to have 3 projects, 2 of them depending on the common third. > -Original Message- > From: Alexander [mailto:the.malk...@gmail.com] > Sent: 23 July 2009 10:37 > To: Maven Users List > Subject: Re: copy\move plugin > > Nope, client looks exactly lik

Re: quick question: remove .timestamp on "mvn clean"

2009-07-23 Thread Martin Höller
On Thursday 23 July 2009 Nicholas Tung wrote: > Hi all, > >Does anyone know how to remove the .timestamp on "mvn > clean"? If I don't, it doesn't rebuild Scala files. Configure the maven-clean-plugin to delete this additional file: http://maven.apache.org/plugins/maven-clean-plugin/examples/de

AW: copy\move plugin

2009-07-23 Thread Lewis, Eric
You may also want to take a look at the assembly plugin. http://maven.apache.org/plugins/maven-assembly-plugin/ And be sure to read http://www.sonatype.com/books/maven-book/reference/assemblies.html It may be a bit of an overkill for your application, but you can definitely do anything you like

Re: copy\move plugin

2009-07-23 Thread Alexander
Nope, client looks exactly like server. They have no code difference. Only some configuration files. 2009/7/23 Alexander Vaysberg > The simply was create 2 project client and server. You can it make with > multi-project. In this case you have a separetly you client and server > application. > >

Re: copy\move plugin

2009-07-23 Thread Alexander Vaysberg
The simply was create 2 project client and server. You can it make with multi-project. In this case you have a separetly you client and server application. Alexander schrieb: Hello, I must distribute different set of resource files\ bat files\ images at server and client application. For serv

Re: copy\move plugin

2009-07-23 Thread Alexander
Hello, I must distribute different set of resource files\ bat files\ images at server and client application. For server I have to copy bat files to register in servers, properties with db configuration and so on. But client don't need them - it only connects to server. I want to type "mvn packag

Re: copy\move plugin

2009-07-23 Thread Alexander Vaysberg
The Maven is not same as Ant. The first question is why you need the same file on different places? If you try make a project for alls, that the maven, isn't for you. Alexander schrieb: Hello, It seems like it is impossible to copy one file to several different locations not under target dire

AW: copy\move plugin

2009-07-23 Thread Lewis, Eric
Well, you could always repeat the configuration and specify different output directories. Not very elegant, though... :-) Best regards, Eric > -Ursprüngliche Nachricht- > Von: Alexander [mailto:the.malk...@gmail.com] > Gesendet: Donnerstag, 23. Juli 2009 11:03 > An: Maven Users List >

Re: copy\move plugin

2009-07-23 Thread Alexander
Hello, It seems like it is impossible to copy one file to several different locations not under target directory. Sure, I can copy several different files to one directory but not otherwise. 2009/7/23 Lewis, Eric > No, by specifying outputDirectory, you can copy anywhere you like. > > See > htt

AW: copy\move plugin

2009-07-23 Thread Lewis, Eric
No, by specifying outputDirectory, you can copy anywhere you like. See http://maven.apache.org/plugins/maven-resources-plugin/copy-resources-mojo.html Just make sure your files aren't filtered, for instance my_output my_input false It's really flexible, read th

Re: copy\move plugin

2009-07-23 Thread Alexander
Hello, You copy files to output (target) directory or to any other? I thought resource plugin helps with copying files from somewhere to output (target) only directory. 2009/7/23 Lewis, Eric > I do my copying with the resource plugin, which works nicely. > > Best regards, > Eric > > > -Ursp

AW: copy\move plugin

2009-07-23 Thread Lewis, Eric
I do my copying with the resource plugin, which works nicely. Best regards, Eric > -Ursprüngliche Nachricht- > Von: Alexander [mailto:the.malk...@gmail.com] > Gesendet: Donnerstag, 23. Juli 2009 08:32 > An: Maven Users List > Betreff: Re: copy\move plugin > > Hello, > > I knew about t