Re: [mojo-user] [ANN] JSZip Maven Plugin 0.1-alpha-1 released

2012-06-01 Thread martin.eisengardt
Hi. I would like to help too. Especially with Extjs :) Greetings Martin

Re: Recommendations to resolve artifact/version fubar

2012-06-01 Thread Ron Wheeler
On 01/06/2012 8:29 PM, Rolf Lear wrote: Hi again everyone. I have taken some time and installed a nexus locally, and I have been playing with different alternatives for how to solve my problem To recap, I have JDOM versions 1.x and 2.x both currently deployed in the artifact 'jdom' even

Re: How does one mirror a maven repository?

2012-06-01 Thread Phillip Hellewell
On Fri, Jun 1, 2012 at 12:47 PM, Lyons, Roy wrote: > I think that this is what you might be looking for... > > http://mojo.codehaus.org/wagon-maven-plugin/merge-maven-repos-mojo.html > Sweet, thanks! I'll give it a try. That looks like just what I was looking for. Phillip

Re: [mojo-user] [ANN] JSZip Maven Plugin 0.1-alpha-1 released

2012-06-01 Thread Christopher Hunt
On 02/06/2012, at 12:30 AM, Stephen Connolly wrote: > Oh I know about that but it prevents the live editing that is possible > by using the jszip packaging type. With the MJS setup, it is normal to edit the js files having previously invoked "mvn jetty:run" on the command line. In another termina

Re: Recommendations to resolve artifact/version fubar

2012-06-01 Thread Rolf Lear
Hi again everyone. I have taken some time and installed a nexus locally, and I have been playing with different alternatives for how to solve my problem To recap, I have JDOM versions 1.x and 2.x both currently deployed in the artifact 'jdom' even though these versions internally have dif

Re: Using scope in dependencyManagement: good idea or bad?

2012-06-01 Thread Mirko Friedenhagen
Hello, we use this for dependencies which should go the test scope by default as well. This prevents stuff like junit or mockito to be part of WARs, e.g. The only drawback here are our integration test suites where a lot of the code resides in src/main. Same goes for logback-classic, which may be

Re: How does one mirror a maven repository?

2012-06-01 Thread Ron Wheeler
Given how easy it is to backup a repo and restore it, it might just make sense to do that on a regular basis at a frequency based on your cost/benefit analysis. I do a nightly backup since I think that I can stand to reinstall up to 1 day's worth of effort. I have never had a repo fail so it h

[ANN] Maven Shade Plugin 1.7 Released

2012-06-01 Thread Benson Margulies
The Maven team is pleased to announce the release of the Maven Shade Plugin, version 1.7 Repackages the project classes together with their dependencies into a single uber-jar, optionally renaming classes or removing unused classes. http://maven.apache.org/plugins/maven-shade-plugin/ You s

Re: How does one mirror a maven repository?

2012-06-01 Thread Wayne Fay
> On a related note, is it safe to use both Nexus set up with a proxy > repository, and to also have rsync routinely updating it? ...snip... >> Is there any way to accomplish this with Nexus, or do I just need to set >> up rsync or something? Nexus has its own mailing lists. Please use them. Wayn

RE: Central repository not being hit

2012-06-01 Thread Chad.Davis
> I'm a relative newbie to Maven. When you say "effective pom" are you > referring to the project's pom or a global pom for Maven? If global, where > would it be located? > The "effective pom" is your pom plus all the stuff it inherits from parent poms it declares, and from the Maven "super pom"

RE: How does one mirror a maven repository?

2012-06-01 Thread Lyons, Roy
I think that this is what you might be looking for... http://mojo.codehaus.org/wagon-maven-plugin/merge-maven-repos-mojo.html -Original Message- From: Phillip Hellewell [mailto:ssh...@gmail.com] Sent: Friday, June 01, 2012 12:48 PM To: Maven Users List Subject: Re: How does one mirror a

RE: Central repository not being hit

2012-06-01 Thread Hartzman, Les X. -ND
Chad, I'm a relative newbie to Maven. When you say "effective pom" are you referring to the project's pom or a global pom for Maven? If global, where would it be located? Thanks. Les -Original Message- From: chad.da...@emc.com [mailto:chad.da...@emc.com] Sent: Friday, June 01, 2

Re: Maven && Coverage on Application Server (Glassfish)

2012-06-01 Thread cortes
Nobody has an idea? -- View this message in context: http://maven.40175.n5.nabble.com/Maven-Coverage-on-Application-Server-Glassfish-tp5710497p5710562.html Sent from the Maven - Users mailing list archive at Nabble.com. - To un

RE: Central repository not being hit

2012-06-01 Thread Chad.Davis
You should check the effective pom. I think that's a part of the maven help plugin. > -Original Message- > From: Hartzman, Les X. -ND [mailto:les.x.hartzman@disney.com] > Sent: Friday, June 01, 2012 10:35 AM > To: users@maven.apache.org > Subject: Central repository not being hit >

Re: How to overwrite property values defined in parent POM?

2012-06-01 Thread Curtis Rueden
Hi Jirong, These properties are defined in top-level parent POM which I have no right > to > change. How can I overwrite these values in my project? A child POM can overwrite the value of a property defined in a parent (unlike properties in Ant). So it should be fine to just put a section in yo

How to overwrite property values defined in parent POM?

2012-06-01 Thread hujirong
These properties are defined in top-level parent POM which I have no right to change. How can I overwrite these values in my project? I don't use these properties directly. C:/IBM/WID7/runtimes C:/IBM/WID7_WTE/runtimes/bi_v7 Thanks Jirong -- View this message in context: http://maven.40

Re: How does one mirror a maven repository?

2012-06-01 Thread Phillip Hellewell
On a related note, is it safe to use both Nexus set up with a proxy repository, and to also have rsync routinely updating it? Phillip On Fri, Jun 1, 2012 at 10:53 AM, Phillip Hellewell wrote: > Hi, > > Our company would like to mirror our Maven repository at a remote > location. Currently we'v

Central repository not being hit

2012-06-01 Thread Hartzman, Les X. -ND
Hi, We have a build machine with 2.2.1 on it and it is not querying repo1.maven.org when it can't find a dependency in a local repository. There are no mirrors defined to override this. Not until the repo was added to the settings.xml did the dependency get downloaded. Is this a configuration

Re: Using scope in dependencyManagement: good idea or bad?

2012-06-01 Thread Mark Struberg
I sometimes use this for libraries (like e.g. openwebbeans-impl) which I normally only have a runtime dependency for (generally defined via dependencyManagement). But in some cases you need to access some internal details. Usually I move those parts to some 'utility' module which then has a c

RE: Using scope in dependencyManagement: good idea or bad?

2012-06-01 Thread Thiessen, Todd (Todd)
+1 here. I find it valuable to changing scope to provided. > -Original Message- > From: Wayne Fay [mailto:wayne...@gmail.com] > Sent: Friday, June 01, 2012 10:53 AM > To: Maven Users List > Subject: Re: Using scope in dependencyManagement: good idea or bad? > > > the subject say it all: I

Re: Using scope in dependencyManagement: good idea or bad?

2012-06-01 Thread Wayne Fay
> the subject say it all: Is declaring scopes in the dependencyManagement > section of your parent POM a good idea or a bad idea? Unless you are employing an approach wherein all of those deps will be scope provided [because you are providing them in the application server's shared libs folder], I

Re: Using scope in dependencyManagement: good idea or bad?

2012-06-01 Thread Andreas Sewe
Joachim Van der Auwera wrote: > In my experience a bad idea (bitten by this in the past). If the same > dependency is mentioned in dependencyManagement in various places, then > you may end up with the wrong scope. > > I use dependencyManagement to specify the version and possibly > exclusions. Sc

Re: [jszip-dev] Re: [mojo-user] [ANN] JSZip Maven Plugin 0.1-alpha-1 released

2012-06-01 Thread Stephen Connolly
Yes, though jars don't work as well for packaging... let's drop the other mailing lists (left on BCC to let them know they are being dropped ;-) ) and move to just jszip-...@googlegroups.com On 1 June 2012 15:24, LeClaire Garvin wrote: > I think there is also some overlap with the web jar reposit

Re: [mojo-user] [ANN] JSZip Maven Plugin 0.1-alpha-1 released

2012-06-01 Thread Stephen Connolly
On 1 June 2012 15:19, Christopher Hunt wrote: > Hi Stephen, > > Not sure if you know, but the JS Import project (1) can already utilise zip > files with a "www" classifier. The regular Assembly plugin can be used to > make these packages. The following type of dependency declaration can then be

Re: [mojo-user] [ANN] JSZip Maven Plugin 0.1-alpha-1 released

2012-06-01 Thread LeClaire Garvin
I think there is also some overlap with the web jar repository (https://github.com/webjars/webjars.github.com) project Regards, Garvin LeClaire garvin.lecla...@gmail.com On Jun 1, 2012, at 10:19 AM, Christopher Hunt wrote: Hi Stephen, Not sure if you know, but the JS Import project (1) can

Re: [mojo-user] [ANN] JSZip Maven Plugin 0.1-alpha-1 released

2012-06-01 Thread Christopher Hunt
Hi Stephen, Not sure if you know, but the JS Import project (1) can already utilise zip files with a "www" classifier. The regular Assembly plugin can be used to make these packages. The following type of dependency declaration can then be made: org.code

Re: Using scope in dependencyManagement: good idea or bad?

2012-06-01 Thread Joachim Van der Auwera
In my experience a bad idea (bitten by this in the past). If the same dependency is mentioned in dependencyManagement in various places, then you may end up with the wrong scope. I use dependencyManagement to specify the version and possibly exclusions. Scope is still managed in the dependency

Using scope in dependencyManagement: good idea or bad?

2012-06-01 Thread Andreas Sewe
Hi all, the subject say it all: Is declaring scopes in the dependencyManagement section of your parent POM a good idea or a bad idea? Best wishes, Andreas - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additio

Re: [ANN] JSZip Maven Plugin 0.1-alpha-1 released

2012-06-01 Thread Stephen Connolly
Doeth: http://jszip.org On 1 June 2012 10:13, Stephen Connolly wrote: > Hi everyone, > > So I have been working on my view of what JavaScript based web > application development should be like with Maven, to that end I have > created the JSZip set of projects. The first semi-ready piece of work

[ANN] JSZip Maven Plugin 0.1-alpha-1 released

2012-06-01 Thread Stephen Connolly
Hi everyone, So I have been working on my view of what JavaScript based web application development should be like with Maven, to that end I have created the JSZip set of projects. The first semi-ready piece of work from that set of projects is the JSZip Maven Plugin. This is very early code, but