Is it possible to run Maven 2 within IntelliJ?

2006-05-04 Thread Wesslan
Well, the subject says it all, doesn't it? ;-) I wonder if it is possible to execute maven 2-stuff from within IDEA IntelliJ? I know about MevenideIdeaIntegration (http://www.intellij.org/twiki/bin/view/Main/MevenideIdeaIntegration) and MavenPlugin (http://www.intellij.org/twiki/bin/view/Main/Mav

XMLBeans Plugin + Eclipse Mayhem

2006-05-04 Thread Wilfred Springer
Hi all, I am using the XMLBeans Maven Plugin in a couple of projects, but using this plugin in combination with Eclipse is giving me a headache. I was just wondering if somebody has already solved it. The layout of my project is a little like this: project +--- pom.xml +--- project-xml-bindin

Re: EJB3 Build

2006-05-04 Thread Tim Kettler
Hi, what EJB3 specific functionality are you talking about? -Tim Todd Orr schrieb: I understood that ejb3 functionality will not be built into the ejb-plugin until the spec is final. It looks like it's all set (http://www.theserverside.com/news/thread.tss?thread_id=40199). When can we expect t

RE: [m1] m1 equivalent of mvn install:install-file?

2006-05-04 Thread Jeff Jensen
Smarty ;-) I didn't think there was, but just in case... -Original Message- From: Lukas Theussl [mailto:[EMAIL PROTECTED] Sent: Thursday, May 04, 2006 3:33 PM To: Maven Users List Subject: Re: [m1] m1 equivalent of mvn install:install-file? I don't know of any equivalent in m1. Want to

Re: Where to find reference documentation for parameter Types?

2006-05-04 Thread Edwin Punzalan
Dave, I'll tell you what I know... to others, if i'm wrong, please correct me. ^_^ Native parameters are common-sense, so I won't describe them anymore. For collection types, like List, removing the s at the parameter name would be filling the collection. For example: Also, in your

Re: [m2] weird behaviour when using assembly plugin in a multiproject

2006-05-04 Thread Edwin Punzalan
When you want to put run assembly from inside the pom, use the goal "attached" instead of "assembly" Dario Luis Coneglian Oliveros wrote: Hi there, I've noticed a weird behaviour with the mave-assembly-plugin (2.1-SNAPSHOT) and still not sure whether it's a bug. Suppose you have a multiproj

Re: [mvn2.0.4] maven-javadoc-plugin aggregate true bug?

2006-05-04 Thread Maria Odea Ching
Hi Rob, I think you should put the plugin configuration in the section and execute "mvn javadoc:javadoc". If it's in the section, you should execute "mvn site" instead.. Thanks, Odea Rob Dickens wrote: Dear Maven Users, I can't get this to work. Looking back at previous posts, it appears

Re: Where to get maven-jar-plugin-2.1-SNAPSHOT?

2006-05-04 Thread Maria Odea Ching
Hi Darren, You could checkout the latest version of the maven jar plugin from svn http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-jar-plugin, and install it locally. Then try to build the Repository Manager agai

[m2] Archetype/packageName/directory structure

2006-05-04 Thread bryan hansen
I am creating a custom archetype and am not seeing a way to have folders carried throught the archetype. I have a source file in the resources directory such as: src/main/resources/archetype-resources/src/main/java/App.java When I run this through the archetype:create command it will place this f

Re: [m2] common site.xml for all modules

2006-05-04 Thread Arik Kfir
which version of the site plugin are you using? I'm using the trunk version, and I have a single site.xml file at the parent project. The modules inside don't have a site.xml, unless specifically required, and it works greatbut it I think it can only work in the trunk version - not the plugin'

Re: Intalled pom version is not expanded resulting in a bogus pom version in the repository.

2006-05-04 Thread Brett Porter
Please reply to your original message asking for a response in future. Creating new threads gets confusing. On 5/5/06, LaCasse, John <[EMAIL PROTECTED]> wrote: Hi, If the version in the pom is specified using a property such as ${env.version} the install plugin is installing the pom in the re

Re: parent version element in installed pom isn't being expanded

2006-05-04 Thread Brett Porter
This is a known issue. We have: - an open JIRA for automatic parent versioning in Maven 2.1 to remove the need for this altogether - I'm aware that there is an issue with not writing in environment specific properties on deployment as we should, but I'm not sure if this is in JIRA. You can use th

Re: [m2] source jars for test-jar jars

2006-05-04 Thread Maria Odea Ching
Hi Dan, You can execute the goal "test-jar" in the maven source plugin to produce the test-jar you want. I'm not sure if the latest version is already available in the central repo or in the snapshot repo. But you can download the latest source of the plugin from SVN and install it locally.

Re: EJB Client Jar Problem

2006-05-04 Thread Pete Marvin King
if you don't provide excludes, then the default excludes will override the includes if both contains the same pattern. for the meantime try overriding the exclusion rules / assigning your own values default excludes: **/*Bean.class

Re: M2 - Best practice for common jars between EJB,WAR modules in EAR

2006-05-04 Thread Lee Meador
I've got two ejb jars, a few wars and they are all in an ear. I'm using Webshere 6. I do the same thing you do but exclude the jars from the wars. There used to be a bug where you could exclude everything from the war or nothing. Maybe that is fixed and you can exclude piecemeal. I got by by exc

Re: [m2] common site.xml for all modules

2006-05-04 Thread Lee Meador
I did this in an ugly but effective way. I put the shared site.xml in the parent project of all the projects that share it. Then I added an ant script to that project. In that ant script is some tags that copy the site.xml file to all the children that need it. The shared file mostly just adds l

Re: Maven2 w/ MyEclipse

2006-05-04 Thread Lee Meador
I am using MyEclipse and Maven 2 together with WAS 6. I find that the part of MyEclipse that allows debugging inside the server is really hard to make work with Maven. Perhaps it is possible. I have not made it work yet. MyEclipse has some really nice other features that I use a lot. The spring

Re: Help me about changes plugin

2006-05-04 Thread Lee Meador
Its funny, the changelog only seems to care about "sources" and changes to things like pom.xml and other files that are not considered source cause that message. On 5/2/06, Gautham Pamu <[EMAIL PROTECTED]> wrote: Hi Lee, I tried to generate the changelog report. I have the scm defined in my po

Re: Problem with Eclipse plugin

2006-05-04 Thread Lee Meador
Somewhere there should be some java compiler style error messages showing what the compiler errors were. If we could see those, it might help. Thanks. On 5/2/06, Jose Gonzalez Gomez <[EMAIL PROTECTED]> wrote: Ok, now I get the following: Compiling 5 source files to U:\proyectos\otros\netflux\

Re: [m2] getting a file path for a JAR

2006-05-04 Thread Torsten Curdt
On 5/5/06, Mark Hansen <[EMAIL PROTECTED]> wrote: I want to write a plugin that I can pass a groupId/artifactId to, and it will upload the artifact to a specific directory (say - to build a lib directory). Does anyone know how I can get a file reference to the artifacts that Maven builds, so tha

weired problem in SNAPSHOT version

2006-05-04 Thread raghurajan . x . gurunathan
HI All, I have this weired problem while using snapshot version dependencies I have 2 project as P-A, P-B both version i have it as 1.0-SNAPSHOT and my P-B project depends on P-A i already successfully ran mvn deploy for my P-A then when i tried to do mvn deploy on P-B it looks for P-A and it

Re: Re: Changing working directory for Maven2-Continuum-Build?

2006-05-04 Thread Thomas Marti (HSR)
you can't. Why do you add a project from root dir and not root/Code? Hi Emmanuel Because we want a new build also if something is checked into to Documentation-Folder... Bye, Thomas

Re: EJB Client Jar Problem

2006-05-04 Thread raghurajan . x . gurunathan
Well i tried with 2.1 ejb plugin noticed that client includes works fine but when i tried to include *Session.class its not doing that i think by default its filtering Session.class, i reopened the issue with Jira Thanks, Raghu Pete Marvin King <[EMAIL PROTECTED]> 05/04/2006 04:54 AM

[m2] Is there a way to create an artifact with antrun and have it install/deploy automatically

2006-05-04 Thread Jason Chaffee
Currently, I am using the antrun plugin during the package phase to create a self-extraction archive by concating a shell script to a tar.gz assembly. However, I am not able to get this new file to install/deploy automatically during those phases. Is there a way to make maven aware of this artifa

Re: organizationUrl with ','

2006-05-04 Thread Eric Redmond
Try to replace the comma with an XML, or URL entity (http://users.easystreet.com/ovid/cgi_course/appendices/appendix2.html) Eric On 5/4/06, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: Hi, my organization has ',' in their URL: http://www.europe.nokia.com/nokia/0,,64463,00.html when I try to

Re: JUnit Eclipse vs. Maven Question

2006-05-04 Thread Stephen Duncan
It still doesn't work. As I said before, setting it just in doesn't even result it in being set at all. Any pointers on why that might be? -Stephen On 5/3/06, Stephen Duncan <[EMAIL PROTECTED]> wrote: I'll have him try it tomorrow. However, we initially had it in the argLine, and it wasn't

RE: [m2] cactus plugin?

2006-05-04 Thread Vincent Massol
> -Original Message- > From: Mark Hansen [mailto:[EMAIL PROTECTED] > Sent: jeudi 4 mai 2006 21:16 > To: Maven Users List > Subject: [m2] cactus plugin? > > Is there a cactus plugin for m2? Any documentation/samples out there? > Thanks. No there isn't one yet AFAIK. The only really miss

ClasspathElements

2006-05-04 Thread Jagan Padmanabha Pillai -X \(jpadmana - Insight Solutions, Inc. at Cisco\)
Is there no getProvidedClasspathElements() ? There are getRuntimeClasspathelements, getCompilexx, getTestxx. Any idea how to get the classpaths which are in provided scope. Thanks -Jagan

Re: Jar File Creation Destroys Images in Maven2

2006-05-04 Thread Wayne Fay
Read about filtering here: http://maven.apache.org/guides/getting-started/index.html#How%20do%20I%20filter%20resource%20files? Wayne On 5/4/06, mas <[EMAIL PROTECTED]> wrote: What exactly do the mean by filter? -- View this message in context: http://www.nabble.com/RE%3A-Jar-File-Creation

Re: [m1] m1 equivalent of mvn install:install-file?

2006-05-04 Thread Lukas Theussl
I don't know of any equivalent in m1. Want to write an extension for the artifact plugin? :) -Lukas Jeff Jensen wrote: Hi, What is the equivalent in m1 of m2's "mvn install:install-file"? Or is it "manually rename jars"? -

Re: Jar File Creation Destroys Images in Maven2

2006-05-04 Thread maskkkk
What exactly do the mean by filter? -- View this message in context: http://www.nabble.com/RE%3A-Jar-File-Creation-Destroys-Images-in-Maven2-t1557762.html#a4236722 Sent from the Maven - Users forum at Nabble.com. - To unsubscri

Re: svn authentication with m2 release plugin

2006-05-04 Thread Alexandre Poitras
There is a mistake there, the plugin uses "username" ("user.name" is the OS user in Java). On 5/4/06, Andrew Kreps <[EMAIL PROTECTED]> wrote: I'm not using SVN, but on the Maven site I found this: Use a different username in the SCM server than he one in the operating system: Run mvn -Duser.n

Re: [m2] priority/order of dependencies

2006-05-04 Thread Wayne Fay
Two options: 1. Use the exclusions tag in the jfreechart dependency to specifically exclude gnujaxp. See here: http://maven.apache.org/guides/introduction/introduction-to-optional-and-excludes-dependencies.html 2. Add dependency for gnujaxp and use provided. This will probably work, but really o

Re: problem with scm url yet

2006-05-04 Thread Lee Meador
As much as this question pops up it looks like the error message could be more specific and provide some info on what is allowed. -- Lee On 5/4/06, Emmanuel Venisse <[EMAIL PROTECTED]> wrote: Vandermi Joao da Silva a écrit : > > I try put my project url (with modules) below > > scm:svn:https

Re: svn authentication with m2 release plugin

2006-05-04 Thread Andrew Kreps
I'm not using SVN, but on the Maven site I found this: Use a different username in the SCM server than he one in the operating system: Run mvn -Duser.name=your_username release:prepare It's on this page: http://maven.apache.org/plugins/maven-release-plugin/howto.html Hopefully that will help

[m2] priority/order of dependencies

2006-05-04 Thread Dan Adams
I'm using htmlunit and jfreechart for something and both depend on an xml parser. The problem is that jfreechart depends on gnujaxp which throws up tons of warnings and actually causes my htmlunit tests to fail. I have xerces on the classpath but it comes after gnujaxp. Any suggestions on how to ge

svn authentication with m2 release plugin

2006-05-04 Thread Aaron Anderson
I am using subversion for scm and would like to use the m2 release plugin. I run release:prepare but I always get an "authorization failed" error from svn. After doing a network trace I can that the svn client is sending my operating system credentials (!) instead of my subversion credentials.

[m1] m1 equivalent of mvn install:install-file?

2006-05-04 Thread Jeff Jensen
Hi, What is the equivalent in m1 of m2's "mvn install:install-file"? Or is it "manually rename jars"? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[m2] cactus plugin?

2006-05-04 Thread Mark Hansen
Is there a cactus plugin for m2? Any documentation/samples out there? Thanks. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [m1] FindBugs Plug-in 1.2-SNAPSHOT release!

2006-05-04 Thread Lukas Theussl
There is one in the sandbox at mojo: http://mojo.codehaus.org/findbugs-maven-plugin/ -Lukas [EMAIL PROTECTED] wrote: Any chance a similar plugin will be made for maven 2? -j --- Justin Fung [EMAIL PROTECTED] Sr. Analyst, Business Systems IT B

Re: [m1] FindBugs Plug-in 1.2-SNAPSHOT release!

2006-05-04 Thread justin_fung
Any chance a similar plugin will be made for maven 2? -j --- Justin Fung [EMAIL PROTECTED] Sr. Analyst, Business Systems IT Banking Systems, e-Business HSBC Bank Canada http://www.hsbc.ca p: (604) 643-6605 f: (604) 643-6727 Lukas Theussl <[

[m2] getting a file path for a JAR

2006-05-04 Thread Mark Hansen
I want to write a plugin that I can pass a groupId/artifactId to, and it will upload the artifact to a specific directory (say - to build a lib directory). Does anyone know how I can get a file reference to the artifacts that Maven builds, so that I can copy them elsewhere? Thanks, Mark ---

Intalled pom version is not expanded resulting in a bogus pom version in the repository.

2006-05-04 Thread LaCasse, John
Hi, If the version in the pom is specified using a property such as ${env.version} the install plugin is installing the pom in the repository without expanding this property. Hence the pom that gets installed into the repository has a version of ${env.version} which is a totally bogus version.

organizationUrl with ','

2006-05-04 Thread andreas.ebbert-karroum
Hi, my organization has ',' in their URL: http://www.europe.nokia.com/nokia/0,,64463,00.html when I try to enter that in the pom and generate the site, the team overview does not pick up the complete URL, but only the part after the last ',' - is there a chance to get around it? Even enclosin

[m2] source jars for test-jar jars

2006-05-04 Thread Dan Adams
How do you produce a source jar for a test-jar type jar like you do with normal jars? -- Dan Adams Software Engineer Interactive Factory 617.235.5857 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: EJB Client Jar Problem

2006-05-04 Thread raghurajan . x . gurunathan
Thanks, Yes its working with 2.1 snapshot plugin Thanks, Raghu Pete Marvin King <[EMAIL PROTECTED]> 05/04/2006 04:54 AM Please respond to "Maven Users List" To: Maven Users List cc: Subject:Re: EJB Client Jar Problem verified, it's already

Re: [m2] including non-maven jars with your project

2006-05-04 Thread Wayne Fay
You should really install them in your local repository using "mvn install:install-file..." If you can't/won't do this, you can use the system, but this is generally not recommended. Wayne On 5/4/06, Dan Adams <[EMAIL PROTECTED]> wrote: I have a jar or two that are not in the maven repository

Re: [m1] FindBugs Plug-in 1.2-SNAPSHOT release!

2006-05-04 Thread Lukas Theussl
Thanks Jeff for pushing this out! There is a small error in the install instructions below: since it is a snapshot the repo.remote property should be: -Dmaven.repo.remote=http://maven-plugins.sourceforge.net/snapshot-repository and the address for manual installation is http://maven-plugins

[m2] including non-maven jars with your project

2006-05-04 Thread Dan Adams
I have a jar or two that are not in the maven repository and don't have a pom. Is there a way that I can just package these with my project or do I have to install them in the repository? -- Dan Adams Software Engineer Interactive Factory 617.235.5857 ---

Re: [Maven 2] Integration Testing?

2006-05-04 Thread Dan Adams
If you haven't already, I would highly suggest taking a look at the maven 2 book "Better Builds with Maven". There is a whole chapter on this topic. http://www.mergere.com/m2book_download.jsp On Thu, 2006-05-04 at 11:31 -0400, Mark Hansen wrote: > I'm trying to understand how to best do integrati

Re: [m2][site] Skin developmetn advice wanted

2006-05-04 Thread Mikael Andersson
Aha, thanks. On 04/05/06, Alexandre Poitras <[EMAIL PROTECTED]> wrote: It's seems to have been moved to the doxia project (make more sense) : http://svn.apache.org/repos/asf/maven/doxia/trunk/doxia-site-renderer/src/main/resources/org/apache/maven/doxia/siterenderer/resources/default-site.vm

Re: specifying versions in sub-projects

2006-05-04 Thread Wayne Fay
I believe the "right" way of doing this is by specifying a in parent pom, and removing version numbers from all plugin references everywhere else. ;-) Wayne On 5/4/06, jerome lacoste <[EMAIL PROTECTED]> wrote: Hi. if I have P1 |- P2 Now P2 requires a particular version of a plugin, newer

Re: Jar File Creation Destroys Images in Maven2

2006-05-04 Thread Wayne Fay
If you open your garbled images in a hex editor, you will probably notice a few tokens were replaced by Maven filtering. You should run strings on the corrupted file just to see what's in it. ;-) Assume the random bits in a JPG just happened to align with a Maven token like ${buildDirectory}, it

[Maven 2] Integration Testing?

2006-05-04 Thread Mark Hansen
I'm trying to understand how to best do integration testing with Maven 2.x. I am using the pre-integration-test and post-integration-test phases to execute a plugin goal that I wrote to deploy some EJBs to a container. These EJBs are used in the integration test. Now, how do I run the tests

Re: Changing working directory for Maven2-Continuum-Build?

2006-05-04 Thread Emmanuel Venisse
you can't. Why do you add a project from root dir and not root/Code? Emmanuel Thomas Marti (HSR) a écrit : Hello everyone Our directory layout looks like this: / Code/ src/ build.xml jdo_2_0.dtd pom.xml Documentation/ If I cd to /Cod

RE: Jar File Creation Destroys Images in Maven2

2006-05-04 Thread Edelson, Justin
> Also just as a side note...I tried making the jar from scratch using just > the jar command and everything is fine. (But it'd still be really nice to > use mvn to do it instead...) I assum you're running jar on the contents of src/main/resources, which isn't what maven is doing. Take a look at t

Re: specifying versions in sub-projects

2006-05-04 Thread jerome lacoste
On 5/4/06, Feniks Nator <[EMAIL PROTECTED]> wrote: This in discussed in the book Better Builds with Maven which you find here (for free): http://www.mergere.com/m2book_download.jsp See the following sections: p54: 3.4 Managing Dependencies p.57: 3.6 Resolving dependency conflicts I think tho

Changing working directory for Maven2-Continuum-Build?

2006-05-04 Thread Thomas Marti (HSR)
Hello everyone Our directory layout looks like this: / Code/ src/ build.xml jdo_2_0.dtd pom.xml Documentation/ If I cd to /Code and start 'mvn test' or some other goal it works fine. But when I configure Continuum to read the POM from

Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Wayne Fay
Implement both, after 30 or 60 days, decide which one you like best and drop the other. ;-) Wayne On 5/4/06, Eric Pugh <[EMAIL PROTECTED]> wrote: I think a lot of it just comes down to personal preference. If your decision isn't driven by a specific feature/missing feature of one or the other,

Re: specifying versions in sub-projects

2006-05-04 Thread Feniks Nator
This in discussed in the book Better Builds with Maven which you find here (for free): http://www.mergere.com/m2book_download.jsp See the following sections: p54: 3.4 Managing Dependencies p.57: 3.6 Resolving dependency conflicts I think those solutions are rather good. On 5/4/06, jerome la

Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Eric Pugh
I think a lot of it just comes down to personal preference. If your decision isn't driven by a specific feature/missing feature of one or the other, then go with the one you are more comfortable with! Often having expertise in one or the other is a better reason to pick it. After all, it

Re: Proxy settings

2006-05-04 Thread Wayne Fay
I agree with you Alexandre. Sounds like a good JIRA Enhancement request for 2.1. Wayne On 5/4/06, Alexandre Poitras <[EMAIL PROTECTED]> wrote: You can't change the proxy settings using a profile. I think they forgot about laptop. On 5/4/06, Henry S. Isidro <[EMAIL PROTECTED]> wrote: > On Tuesd

specifying versions in sub-projects

2006-05-04 Thread jerome lacoste
Hi. if I have P1 |- P2 Now P2 requires a particular version of a plugin, newer than the one taken by default by P1. After changing P2's pom, if I build from P2, then my P2 build will work. But if I build from P1, P2 will fail. My solution was to move the plugin-version specification in the r

Re: Issues downloading from repos

2006-05-04 Thread Alexandre Poitras
Another thing you should try is to use Maven Proxy if you are planning that more than one people are going to use Maven in your corporation. Also, you can modify the repository updatePolicy in the settings.xml file to change Maven's online behaviour. On 5/4/06, Simon Kitching <[EMAIL PROTECTED]>

[m1] FindBugs Plug-in 1.2-SNAPSHOT release!

2006-05-04 Thread Jeff Jensen
We are pleased to announce the FindBugs Plug-in 1.2-SNAPSHOT release! http://maven-plugins.sourceforge.net/maven-findbugs-plugin A plugin to automate FindBugs tasks === Changes in this version include: New Feature

Re: [m2] setting up internal repository

2006-05-04 Thread Alexandre Poitras
If you want to control what's put in the repository just use a FTP (or any other protocol) in which normal users don't have write access. Then assign some administrators who get write acces rights and are able to upload dependencies. When normal users want a new dependency, they just need to ask t

[m2] test-jar and dependencies

2006-05-04 Thread Dan Adams
So I have a normal 2 module webapp project (one for the webapp and one for the integration tests) and we also have another project that provides some base classes for testing which I need. So in my integration-tests module I have a dependency set to type 'test-jar' and it looks like maven gets it a

Re: Proxy settings

2006-05-04 Thread Alexandre Poitras
You can't change the proxy settings using a profile. I think they forgot about laptop. On 5/4/06, Henry S. Isidro <[EMAIL PROTECTED]> wrote: On Tuesday 02 May 2006 9:47 am, Alexandre Poitras wrote: > Hi, > > I was wondering how laptops users were dealing with proxy settings in > Maven 2. For my

Re: [m2][site] Skin developmetn advice wanted

2006-05-04 Thread Alexandre Poitras
It's seems to have been moved to the doxia project (make more sense) : http://svn.apache.org/repos/asf/maven/doxia/trunk/doxia-site-renderer/src/main/resources/org/apache/maven/doxia/siterenderer/resources/default-site.vm On 5/4/06, Mikael Andersson <[EMAIL PROTECTED]> wrote: Hi, I can't find a

RE: M2 - EAR deployment

2006-05-04 Thread Vijay Shanker
David, I tried installing your with the same pom and the same packaging type but had the same problem so using ejbdeploy.sh for deployment code generation work directly. Thanks, Vijay From: David J. M. Karlsen [mailto:[EMAIL PROTECTED] Sent: Wed 5/3/2006 6

paths in META-INF/maven.com.mycompany.app/my-app/pom.xml (Tutorial example)

2006-05-04 Thread Jansen Werner
Hallo everybody, I'm new to maven so I stepped through the tutorial and examined the results of the operations there. Within my-app-1.0-SNAPSHOT.jar I found META-INF/maven/com.mycompany.app/my-app/pom.xml. This file includes all information from when the jar file was built. But why does it have t

RE: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Siegmann Daniel, NY
> clean site:deploy deploy). I have never used cruise control > but I heard it's hard to configure. I have not found CruiseControl difficult to configure. It's not more difficult than Maven is, and adding more projects to the configuration is mostly copy-paste. CC also comes with a nice web-base

RE: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Siegmann Daniel, NY
We have been using CruiseControl for awhile now, with a number of projects running on M1. We are happy with it - happy enough that we will not be evaluating Continuum. When we switch to M2 (we're working on converting an ant project) we will continue using CC. The latest version of CC supports M2.

RE: problem with scm url yet

2006-05-04 Thread Vandermi Joao da Silva
I try put my project url (with modules) below scm:svn:https://myserver.com.br/repos/projects/trunk but continuum says[ You must provide a valid url ] My project have four modules and the first module compile the others. In maven command line, I compile my parent pom.xml and it work very go

RE: shell script in continuum

2006-05-04 Thread Vandermi Joao da Silva
Sorry but I have three questions. Can I resolve that with continuum upgrade? Is necessary create a pom.xml file? Is there a tag to shell in pom.xml? I put the shell script according scm file url. Best Regards Vandermi Silva R&D MAO - Core Engines BenQ Eletroeletrônica Ltda. TEL +55(

Re: Jar File Creation Destroys Images in Maven2

2006-05-04 Thread maskkkk
Is there anyway of modifiying this so that it uses the standard jar command? -- View this message in context: http://www.nabble.com/Jar-File-Creation-Destroys-Images-in-Maven2-t1554529.html#a4227968 Sent from the Maven - Users forum at Nabble.com. ---

Re: Jar File Creation Destroys Images in Maven2

2006-05-04 Thread maskkkk
Actually I tried including some BMPs and strangly nothing happens to them. I think maybe it has something to do with the fact that gifs and pngs are already compressed. Also just as a side note...I tried making the jar from scratch using just the jar command and everything is fine. (But it'd s

Re: [m2] Site deploy tries to create a directory

2006-05-04 Thread Sebastien Arbogast
Bingo! You got it right! I was using the wrong URL. Now it's fine, the site has been successfully deployed. Thanks a lot. 2006/5/4, Julien Henry <[EMAIL PROTECTED]>: Are you sure your url is correct ? I work on a project on sourceforge, and the url is : scp://shell.sourceforge.net/home/groups/

Re: [m2] Site deploy tries to create a directory

2006-05-04 Thread Julien Henry
Are you sure your url is correct ? I work on a project on sourceforge, and the url is : scp://shell.sourceforge.net/home/groups/j/jw/jwebunit/htdocs ++ Sebastien Arbogast a écrit : I'm trying to deploy my site to sourceforge using either SCP or SFTP and I keep getting an error because it tri

Re: [m2] Site deploy tries to create a directory

2006-05-04 Thread Dennis Lundberg
Sebastien Arbogast wrote: I'm trying to deploy my site to sourceforge using either SCP or SFTP and I keep getting an error because it tries to create a root directory, which it shouldn't do because of sourceforge security policy. Here is my distributionManagement section: sou

Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Geoffrey De Smet
I 've used both continuum and cruisecontrol, IMHO continuum is a lot better and easier, especially for maven 2 multiprojects. Sebastien Arbogast wrote: I'm trying to find the best CI tool for a brand new Maven2-built project and I'd like to have your experience feedback about which one to choo

Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread jerome lacoste
On 5/4/06, Eric Pugh <[EMAIL PROTECTED]> wrote: I used to be a big advocate of CC. I've had a contribution committed to the main code base in almost everyone of the last couple point releases. My big beef with CC breaks down to two things: 1) Speed 2) Web interface I find that with long build

Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Eric Pugh
I used to be a big advocate of CC. I've had a contribution committed to the main code base in almost everyone of the last couple point releases. My big beef with CC breaks down to two things: 1) Speed 2) Web interface I find that with long builds that output a lot of data, the CC method

[m2] Site deploy tries to create a directory

2006-05-04 Thread Sebastien Arbogast
I'm trying to deploy my site to sourceforge using either SCP or SFTP and I keep getting an error because it tries to create a root directory, which it shouldn't do because of sourceforge security policy. Here is my distributionManagement section: sourceforge SourceF

Re: Jar File Creation Destroys Images in Maven2

2006-05-04 Thread jerome lacoste
On 5/4/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I'm creating a jar file which contains several compressed images (gifs, and pngs) I noticed that when I retrieve and display them in my application inside the packaged jar they display all garbled. It's still evedent that they are the im

Re: Two new Sun jars available in Maven repos (Thanks Carlos)

2006-05-04 Thread jerome lacoste
On 5/3/06, Wayne Fay <[EMAIL PROTECTED]> wrote: Just wanted to post and let everyone know that Carlos Sanchez has recently uploaded two new Sun jars into the Maven repos. This was not discussed on the User or Dev list, nor did I see any relevant JIRA emails, so I thought I'd send this notificatio

RE : Configuring path for picking submodule site

2006-05-04 Thread Olivier Lamy
Hi, As I understand you have a structure as Root pom.xml Module A pom.xml Site pom.xml src/site/site.xml Just try to move Site/src/site/site.xml to the root Root pom.xml src/site/site.xml (with ${modules}) Module A pom.xml src/site/site.xml (with ${parentProject}

Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread jerome lacoste
On 5/4/06, Kaare Nilsen <[EMAIL PROTECTED]> wrote: Well.. i use it myself :) But yes there are several limitations in multi-module projects and cruise control in general. As of now we do not have any clever solutions for making sure that when one module changes, then the modules that depends on i

Configuring path for picking submodule site

2006-05-04 Thread RobJac
I have created a multiproject web site from the parent project where in it has a menu that list all the sub modules. When i click on a particular sub module menu say ,SubModule_A link. It tries to look for the SubModule_A index.html from some default path like C:\parentProject\target\site\SubModu

Re: Maven 1.1 and optional ant tasks (xmlvalidate)

2006-05-04 Thread Arnaud HERITIER
Unknow tasks are silently ignored :-( http://maven.apache.org/maven-1.x/reference/backwards-compatibility.html *Bundled Ant version changed from 1.5.3-1 to 1.6.5* While in most cases this change should be transparent, those using optional tasks will need to add them as a dependency to their plug

Re: Issues downloading from repos

2006-05-04 Thread Simon Kitching
Hi, You can also put true in your settings.xml file to disable remote access permanently, once you've managed to download all the necessary dependencies. http://maven.apache.org/ref/current/maven-settings/settings.html Regards, Simon On Wed, 2006-05-03 at 15:21 +0200, Kees de Kooter wrote: >

Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Kaare Nilsen
Sorry about that.. I have everything setup on my machine, so I forgot to point out that there is something more to be done, when building plugins in the sanbox :) But you will need to add the repositories as documented here: http://mojo.codehaus.org/using-sandbox-plugins.html to your checked out

Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Sebastien Arbogast
I've checked it out, and when I tried to run mvn install on it, I got the following exception: W:\data\dev\cruisecontrol-maven-plugin>mvn install [INFO] Scanning for projects... [INFO] [ERROR] FATAL ERROR [INFO]

Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Kaare Nilsen
Well.. i use it myself :) But yes there are several limitations in multi-module projects and cruise control in general. As of now we do not have any clever solutions for making sure that when one module changes, then the modules that depends on it also get build, the reactor build order is not con

Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Sebastien Arbogast
It's fine for Subversion and mail notifications. But are these the only limitations of this development version ? In particular, is it safe to use it on a multi-module project ? 2006/5/4, Kaare Nilsen <[EMAIL PROTECTED]>: There is one(cruisecontrol config generation) started at the mojo projec

Re: Two new Sun jars available in Maven repos (Thanks Carlos)

2006-05-04 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > I think these are the only releases that can be put in maven's > repositories, > as they are the first releases (of these two products) which use the CDDL > license (instead of the old one which doesn't permit distributing them in > maven's repo with

Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Kaare Nilsen
There is one(cruisecontrol config generation) started at the mojo project. http://svn.mojo.codehaus.org/trunk/mojo/mojo-sandbox/cruisecontrol-maven-plugin/ You can download this and install it manually and give it a go (though very early in the dev process, and only supports subversion and mail n

Re: Two new Sun jars available in Maven repos (Thanks Carlos)

2006-05-04 Thread Arik Kfir
I think these are the only releases that can be put in maven's repositories, as they are the first releases (of these two products) which use the CDDL license (instead of the old one which doesn't permit distributing them in maven's repo without a click-thru) On 5/4/06, Thorsten Heit <[EMAIL PROT

Re: [m2] Continuum or CruiseControl as a CI server ?

2006-05-04 Thread Sebastien Arbogast
Honestly, intuitively I have a small preference for CruiseControl. The only thing that bothers me is the redundancy of information between the POM and CC configuration file. So if there was a Maven2 plugin to generate the latter from the former, as there was one for Maven1, that would be great. 2

Re: Two new Sun jars available in Maven repos (Thanks Carlos)

2006-05-04 Thread Thorsten Heit
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Wayne, > Just wanted to post and let everyone know that Carlos Sanchez has > recently uploaded two new Sun jars into the Maven repos. This was not > discussed on the User or Dev list, nor did I see any relevant JIRA > emails, so I thought I'd send

  1   2   >