Re: Maven Sites

2007-11-29 Thread Dion Gillard
This is too funny to pass up. On 11/30/07, Morgovsky, Alexander (US - Glen Mills) <[EMAIL PROTECTED]> wrote: > This message (including any attachments) contains confidential information > intended for a specific individual and purpose, and is protected by law. If > you are not the intended reci

Re: Maven Sites

2007-11-29 Thread Marat Radchenko
sorry, "mvn site-deploy" 2007/11/30, Marat Radchenko <[EMAIL PROTECTED]>: > please try "mvn site deploy" instead. > > 2007/11/30, Morgovsky, Alexander (US - Glen Mills) <[EMAIL PROTECTED]>: > > Hello. Calling mvn site:site site:deploy on a multi-module POM produces > > a parent site with no value

Re: Maven Sites

2007-11-29 Thread Marat Radchenko
please try "mvn site deploy" instead. 2007/11/30, Morgovsky, Alexander (US - Glen Mills) <[EMAIL PROTECTED]>: > Hello. Calling mvn site:site site:deploy on a multi-module POM produces > a parent site with no values for children, because the parent is > generated with values before the children ar

Re: Maven Sites

2007-11-29 Thread Morgovsky, Alexander (US - Glen Mills)
Hello. Calling mvn site:site site:deploy on a multi-module POM produces a parent site with no values for children, because the parent is generated with values before the children are created, which creates no values for children in the parent. This message (including any attachments) contains c

Re: Problem with deletion of artifacts

2007-11-29 Thread Brett Porter
Sorry, could you clarify - this has resolved the issue then? On 29/11/2007, Arnaud Bailly <[EMAIL PROTECTED]> wrote: > > Hello, > No, not sure we did it in the right order. I will check. Anyway, things seem > fixed in 1.0 as we have seen the deletion update browser. But then putting > the artifact

Re: no net in java.library.path

2007-11-29 Thread Wayne Fay
This seems to be a JDK issue for you, not a Maven issue (IMO). The error occurs in an internal JDK class/library. You'll have to see if Sun has this posted in their bug db. Can you try a different JDK version eg 1.5.x or a later 1.6 build? Wayne On 11/29/07, ozymandias <[EMAIL PROTECTED]> wrote:

Re: no net in java.library.path

2007-11-29 Thread ozymandias
Wayne Fay wrote: > > What OS? What Java JDK version? What Maven version? > OS - Windows XP JDK - 1.6.0_03 Maven - 2.0.7 Wayne Fay wrote: > > Can you try running mvn with the -X parameter, to capture the full > debug output? > Here is the full debug output. This happens when I try to r

Injecting resources into a project

2007-11-29 Thread /U
I am using Maven 2.0.4. I have a project A which has resource R1 and R2: A/src/main/resources/ /R1 /R2 I have another project at the same level, say B. I need a plugin which would copy R1 and R2 from A/src/main/resources into a specified directory

getting the selected version from a range

2007-11-29 Thread deckrider
Is there some way for me to access the selected version from the range that I put in my pom? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: maven-jar-plugin not working

2007-11-29 Thread Dennis Lundberg
It's here: http://jira.codehaus.org/browse/MJAR-30 pdelaney wrote: Hello; I am building an executable jar file and I am trying to remove my database.properties file from the jar because I want to control the properties outside of the jar file. In my build I execute mvn package I have the mav

Re: maven2 with seam archetype

2007-11-29 Thread Siarhei Dudzin
This is most likely due to conflict of xml parser you try to deploy with the one in JBoss libraries. Remove it from the archive. For the questions regarding the archetype you can contact the author of the library you are trying to use I don't think it's much known here. And no there is no other ar

maven-jar-plugin not working

2007-11-29 Thread pdelaney
Hello; I am building an executable jar file and I am trying to remove my database.properties file from the jar because I want to control the properties outside of the jar file. In my build I execute mvn package I have the maven-dependency-plugin part of the lifecycle to get all of my .class fi

Re: Does Maven 2.0.8 put test dependencies first in classpath?

2007-11-29 Thread Ryan Moquin
Oh really? Wish I would have seen that option sooner. Thanks! I'll go look. On Nov 29, 2007 2:58 PM, <[EMAIL PROTECTED]> wrote: > Ah, I misunderstood. Try running 'mvn test -X', you'll be able to see > the classpath and verify (look for "[DEBUG] (f) classpathElements") > > -Original Mess

RE: Does Maven 2.0.8 put test dependencies first in classpath?

2007-11-29 Thread Blue . Thomas
Ah, I misunderstood. Try running 'mvn test -X', you'll be able to see the classpath and verify (look for "[DEBUG] (f) classpathElements") -Original Message- From: Ryan Moquin [mailto:[EMAIL PROTECTED] Sent: Thursday, November 29, 2007 2:49 PM To: Maven Users List Subject: Re: Does Mave

Re: Does Maven 2.0.8 put test dependencies first in classpath?

2007-11-29 Thread Ryan Moquin
But I mean, if I had a subproject that generates a jar file containing test resources and in include it in another project as a test scoped dependency, will those classes also be first in the classpath since they are an included test resource? On Nov 29, 2007 2:04 PM, <[EMAIL PROTECTED]> wrote: >

Re: Maven Sites

2007-11-29 Thread Dennis Lundberg
What is it that is not working? Morgovsky, Alexander (US - Glen Mills) wrote: Could someone please explain to properly create multi-module sites in Maven 2? I have tried calling mvn site:site (custom site goals) site:deploy site:site (custom site goals), and duplicating calls so that my site wo

dependency:analyze problem when using constants defined in an interface from a different module

2007-11-29 Thread Iker Almandoz
Hi everyone, I am using maven 2.0.7 with dependency plugin versoin 2.0-alpha-4. I have 2 projects as seen in the end of the e-mail (This are some test files to reproduce the problem) My first project contains a single interface that defines a String constant. My second project, uses the String co

RE: Does Maven 2.0.8 put test dependencies first in classpath?

2007-11-29 Thread Blue . Thomas
It's supposed to: http://maven.apache.org/release-notes.html * MNG-3118 - Test-classes should come before classes in the classpath. This may slightly alter behavior of tests. The test-classes is now included first in the classpath to allow test resources to override normal runtime ones. -Ori

Maven Sites

2007-11-29 Thread Morgovsky, Alexander (US - Glen Mills)
Could someone please explain to properly create multi-module sites in Maven 2? I have tried calling mvn site:site (custom site goals) site:deploy site:site (custom site goals), and duplicating calls so that my site would work, but it does not. I understand that the parent site gets generated befo

Does Maven 2.0.8 put test dependencies first in classpath?

2007-11-29 Thread Ryan Moquin
So if I have a test dependency I include that is meant to override configuration files in a subproject I am building, should the test jar dependency override the compile time dependencies in the project being built? I was hoping this is how 2.0.8 would behave, but either it's not, or I have an err

Is there a way to determine which repository resolved artifact?

2007-11-29 Thread James Chamberlain
I am writing a small utility that uses the Maven Embedder to resolve transitive project dependencies and track things like licenses. I have it working where it can resolve the dependencies, but I don't see a way to know which of the repositories actually resolved the dependency. Is there a way to g

Re: Configure heap size used by Maven2

2007-11-29 Thread Yan Huang
I'm setting this in MAVEN_OPTS on windows 2003 server: -Xms512m -Xmx1024m -XX:MaxPermSize=256m However, when I tried with more than 1G in the max heap size, the build under maven2 immediately aborted the build by complaining about as such: 2007-11-29 08:23:26,072 [Thread-16] WARN Maven2Script

maven2 with seam archetype

2007-11-29 Thread �rico
I'm trying to deploy a sample app from the current site : http://software.softeu.cz/seam/usage.html When I run the command mvn jboss:deploy -e I get the error : [INFO] No server specified for authentication - using defaults [INFO]

Re: Configure heap size used by Maven2

2007-11-29 Thread Wayne Fay
You took the words out of my mouth, Wendy. ;-) Make sure your heap size parameters etc are accepted by Javac before attempting to run them in Maven. There are many "Maven errors" post in this list which are actually "Javac errors" due to bad params, params not supported in the version of the jdk y

Re: gathe rlist of plugin in poms

2007-11-29 Thread Dennis Lundberg
You can use the maven-help-plugin for this. The following command will give you *lots* of information, but it will include the plugins that you have configured. mvn help:effective-pom Sonar, Nishant wrote: Hi I want to gather list of all plugins used in the poms , with there versions,gro

Re: Configure heap size used by Maven2

2007-11-29 Thread Wendy Smoak
On Nov 29, 2007 9:29 AM, Yan Huang <[EMAIL PROTECTED]> wrote: > It seems to me that maven (version 2.0.7) does not allow me to allocate more > than 1024MB for max heap size and otherwise it aborts the build complaining > it could not allocate the required heap size. Is it true? How can I get > aro

Re: maven-webstart-plugin status?

2007-11-29 Thread Wayne Fay
In the future, you can also use: mvn org.codehaus.mojo:webstart-maven-plugin::jnlp But it is easier to simply add the plugin declaration (you should really include a version btw) and then mvn webstart:jnlp should just work. Wayne On 11/29/07, Adrian Robert <[EMAIL PROTECTED]> wrote: > > prefix b

Configure heap size used by Maven2

2007-11-29 Thread Yan Huang
Hello, It seems to me that maven (version 2.0.7) does not allow me to allocate more than 1024MB for max heap size and otherwise it aborts the build complaining it could not allocate the required heap size. Is it true? How can I get around it? I want to allocate 3G on a 32-bit machine though ... T

[ANN] Maven Site Plugin 2.0-beta-6 Released

2007-11-29 Thread Dennis Lundberg
The Maven team is pleased to announce the release of Maven Site Plugin, version 2.0-beta-6. http://maven.apache.org/plugins/maven-site-plugin/ You can run 'mvn -up' to get the latest version of the plugin, or specify the version in your project's plugin configuration: org.apache.maven.plugins

Re: Continuum 1.1: Appearance feature

2007-11-29 Thread Ken Turner
Well, I upgraded to Firefox 2.0.0.10 as you suggested, and even shut down/restarted the Continuum app, but no joy :-(. Only thing I haven't done is reboot the PC. -- View this message in context: http://www.nabble.com/Continuum-1.1%3A-Appearance-feature-tf4897268.html#a14026452 Sent from the Co

Message from my annotation processor don't appear in console

2007-11-29 Thread Sahoo
Hi, Recently I was writing an annotation processor [1] which gets called from javac. JDK 6 javac exposes an API called Messager to be used to report warnings or errors or diagnostic information. I noticed that if I launch javac from command line, my messages appear in the output, but when ja

Inheriting developers list from parent POM.xml

2007-11-29 Thread Artsiukhou, Yauhen
Hello. I have a problem: I've defined pom.xml which I'm going to use an custom super-pom file: http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";>   4.0.0

Re: Continuum 1.1: Appearance feature

2007-11-29 Thread olivier lamy
Hi, Upgrade to firefox 2.0.0.10 :-) No issue here. -- Olivier 2007/11/29, Ken Turner <[EMAIL PROTECTED]>: > > > I have provided company POM information - Name, URL and Logo URL, and the > result is very pretty when viewed using IE6, but doesn't work at all with > Firefox 2.0.0.9. > > Anybody know

Continuum 1.1: Appearance feature

2007-11-29 Thread Ken Turner
I have provided company POM information - Name, URL and Logo URL, and the result is very pretty when viewed using IE6, but doesn't work at all with Firefox 2.0.0.9. Anybody know of a workaround for this? -- View this message in context: http://www.nabble.com/Continuum-1.1%3A-Appearance-feature

RE: obfuscation

2007-11-29 Thread Richard Chamberlain
Thanks Ben and Steve! -Original Message- From: Stephen Connolly [mailto:[EMAIL PROTECTED] Sent: 29 November 2007 11:08 To: Maven Users List Subject: Re: obfuscation We use JavaGuard with the following in the pom.xml You could probably adapt it to your config

Repository scanning problem in 1.0?

2007-11-29 Thread ArneD
Hi all, first of all, congratulations to all Archiva developers for releasing the 1.0 version! I started playing around with it a little bit, and ran into the following problem: After starting up a fresh instance with default configuration, I copied parts of my existing repository to Archiva's

Re: 2.0.8 broken war build

2007-11-29 Thread Damien Lecan
Similar problem for me when swithcing from 2.07 to 2.0.8 Despite http://jira.codehaus.org/browse/MNG-3118, config files are now read by surefire classloader in target/classes first, then in target/test-classes Try a simple getClass().getResource("/my.property") As a workaround, I configured sure

set property value based on build's lifecycle or plugin?

2007-11-29 Thread Erez Nahir
Hi, Is there a way to set a different value for given property on different build phase? or based on running plugin? Thanks, Erez.

Re: obfuscation

2007-11-29 Thread Stephen Connolly
We use JavaGuard with the following in the pom.xml You could probably adapt it to your config org.codehaus.mojo exec-maven-plugin package

Re: Upgrade from 1.1-beta-3 to 1.1 failed

2007-11-29 Thread Julien Stern
On Thu, Nov 29, 2007 at 11:22:08AM +0100, Emmanuel Venisse wrote: > Are you on windows? No. Linux 2.6.18-amd64. Java 1.6. I tried to stop and start it a few more times. No problem. And now it's been working like a charm... -- Julien > Emmanuel > > Julien Stern a écrit : > >On Thu, Nov 29, 2007

Re: obfuscation

2007-11-29 Thread ben short
Have a look at the antrun plugin [1] [1] http://maven.apache.org/plugins/maven-antrun-plugin/ On Nov 29, 2007 10:29 AM, Richard Chamberlain <[EMAIL PROTECTED]> wrote: > Hi all, > > > > I've got a requirement to obfuscate the java code we produce. > > > > Currently we use yguard with ant, there do

Re: maven-webstart-plugin status?

2007-11-29 Thread Adrian Robert
> prefix being looked up correctly and mapped to > "org.apache.maven.plugins:maven-webstart-plugin", but then this fails > to find anything at central with "does not exist or no valid version > could be found". Scratch this, putting the below into my pom worked. I'm still not sure where the mappi

Re: JUnit, NetBeans 6

2007-11-29 Thread Milos Kleint
a picture speak thousand words. I've tried to build my own project externally (maven 2.0.7) and everything seems to work as expected. I get the test error hyperlinked in output, I get the test failure stacktrace hyperlinked, I even get the JUnit window output if I trigger the "Test project" action

Re: JUnit, NetBeans 6

2007-11-29 Thread Stephen Connolly
have a look in target/surefire-reports/*.txt On Nov 28, 2007 8:02 PM, Lally Singh <[EMAIL PROTECTED]> wrote: > That fixes my pom problem, but it leaves me in the same state as > before: no JUnit results. The JUnit integration doesn't work with an > external maven. > > I just get a pass/fail resul

Maven build error not detected

2007-11-29 Thread Olivier ETIENNE
Hi, When I build my maven 2 project, the build fails but the status of the project is "success" ! The build logs contains : [INFO] [compiler:compile] [INFO] Compiling 176 source files to P:\Indernas\continuum-1.1-beta-4\apps\continuum\webapp\WEB-INF\working-directory\25\target\classes [INFO]

Re: FW: [ANNOUNCE] VelocityTools 1.4

2007-11-29 Thread Stuart McCulloch
On 29/11/2007, Misura, Gabriel <[EMAIL PROTECTED]> wrote: > > I get the impression this release broke the maven examples. > > > mvn archetype:create -DarchetypeGroupId=org.apache.maven.archetypes > -DarchetypeArtifactID=maven-archetype-webapp -DgroupId=com.mycompany.app > -DartifactID=my-webapp t

Re: Upgrade from 1.1-beta-3 to 1.1 failed

2007-11-29 Thread Emmanuel Venisse
Restart Continuum to see if this exception always appear. Emmanuel Julien Stern a écrit : Hi list, I had a bit of time so I tried to upgrade from beta3 to 1.1. I followed the instructions on the upgrade page in order to restore the databases. When I start the new version (1.1) after the datab

Re: [1.1] problem with usermanagement

2007-11-29 Thread Cla Emanuel Monsch
yes. i have a clue what the problem could be: when i use the way over the "Register" function i have to activate my account by clicking a link. after doing that i can see a green icon under "Validated" under the user overview. when i add a user over the "Create New User" function i can't see

Re: clearcase update doesn't show autor,date,comment

2007-11-29 Thread Emmanuel Venisse
what is the language used for the cleartool output? english? Do you have the same date on the continuum machine and your clearcase server? Emmanuel I am Who i am a écrit : Hi All I'm using continuum with clearcase, update and builds are happening fine, but when i see the build page of projec

Re: [1.1] problem with usermanagement

2007-11-29 Thread Emmanuel Venisse
Do you use the same login/password with both ways? Emmanuel Cla Emanuel Monsch a écrit : hi there i've noticed a strange behavior. when i add (as Admin) a normal user account, i cannot use it. every try to log in with the new account ends with the following message: --> You have entered an

FW: [ANNOUNCE] VelocityTools 1.4

2007-11-29 Thread Misura, Gabriel
I get the impression this release broke the maven examples. mvn archetype:create -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactID=maven-archetype-webapp -DgroupId=com.mycompany.app -DartifactID=my-webapp [INFO] Scanning for projects... [INFO] Searching repository for plugin w

maven-webstart-plugin status?

2007-11-29 Thread Adrian Robert
Hi, I read about the maven-webstart-plugin and am interested in trying it out. However an attempt to do 'mvn webstart:jnlp' resulted in the prefix being looked up correctly and mapped to "org.apache.maven.plugins:maven-webstart-plugin", but then this fails to find anything at central with "does n