maven jetty plugin - running two jetty's with different ports

2011-02-28 Thread Hauschel Fred Robert
Hi List, is it possible to run two jetty instances one on port 8080 and one on port 8090? Both jetty's should start several webApps. Running Multiple Webapps is decribed in http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin I hope this works. Thanks Fredy

AW: maven jetty plugin - running two jetty's with different ports

2011-02-28 Thread Hauschel Fred Robert
As that's a specific question for that plugin, you should probably ask on a mailing list specific for that plugin. I believe these are the appropriate ones: http://jetty.codehaus.org/jetty/maven-plugin/mail-lists.html /Anders On Mon, Feb 28, 2011 at 10:59, Hauschel Fred Robert fredrobert.hausc

maven3 - maven-checkstyle-plugin:2.5 - Property ${basedir} has not been set

2011-02-16 Thread Hauschel Fred Robert
Hi all, I've configured checkstyle for a project. 1. If I use the default check style, all works. 2. If I use a absolute path in file system configLocation//xxx\yyy\Checkstyle\ISPA_checkstyle.xml/configLocation The same error as with 3. Happens! 3. If I use:

maven-assembly-plugin and .folder

2011-02-10 Thread Hauschel Fred Robert
Hi all, I will zip a folder with the name '.metadata' but assembly plugin is ignoring me ;-) This is ignored: include.metadata/version.ini/include Does anybody have an idea, why assembly is ignoring '.metadata'? Or is it a feature of the fileset ?? fileSets fileSet

AW: adding a jar as resource to a webapp

2011-02-02 Thread Hauschel Fred Robert
Hi Marc, that is exactly what I need! Thank you very much!! @Antonio, Martin: Because of classpath manipulation (switching 3rdParty libraries) while runtime! The library should not be loaded from the webapp classloader. Fredy -Ursprüngliche Nachricht- Von: Marc Rohlfs

AW: Inermediatte surefire reports

2010-12-22 Thread Hauschel Fred Robert
Hi sridharl, divide and conquer ;-) I can't imagine a artifact, which needs 2 hours for unit-test. Maybe you should rethink the modularization. To you question, I don't think, that it is possible to see the reports immediately in one artifact. But it is sure possible if you divide your code (or

AW: AW: AW: AW: releas:perform with profiles fails

2010-12-22 Thread Hauschel Fred Robert
: releas:perform with profiles fails On 22/12/2010 2:56 AM, Hauschel Fred Robert wrote: See inline... -Ursprüngliche Nachricht- Von: Ron Wheeler [mailto:rwhee...@artifact-software.com] Gesendet: Dienstag, 21. Dezember 2010 17:17 An: users@maven.apache.org Betreff: Re: AW: AW: releas:perform

AW: AW: releas:perform with profiles fails

2010-12-21 Thread Hauschel Fred Robert
, Hauschel Fred Robert wrote: Found a workarround: http://www.tutorials.de/java/347377-maven-release-plugin-und-profile-activation.html Fredy You will be back. Search this forum for discussions of profiles and environments. The road to Maven hell is paved with profiles. Just as good intentions

AW: AW: releas:perform with profiles fails

2010-12-21 Thread Hauschel Fred Robert
Ok, maybe packagingExcludesWEB-INF/lib/*.jar/packagingExcludes Explained in http://maven.apache.org/plugins/maven-war-plugin/examples/skinny-wars.html is a better way ;-) Fredy -Ursprüngliche Nachricht- Von: Hauschel Fred Robert [mailto:fredrobert.hausc...@cirquent.de] Gesendet

AW: AW: AW: releas:perform with profiles fails

2010-12-21 Thread Hauschel Fred Robert
See inline... -Ursprüngliche Nachricht- Von: Ron Wheeler [mailto:rwhee...@artifact-software.com] Gesendet: Dienstag, 21. Dezember 2010 17:17 An: users@maven.apache.org Betreff: Re: AW: AW: releas:perform with profiles fails On 21/12/2010 4:28 AM, Hauschel Fred Robert wrote: Ok, maybe

AW: AW: Dependency on pom-project not resolved in reactor on multi-module build

2010-12-20 Thread Hauschel Fred Robert
Nachricht- Von: Hauschel Fred Robert [mailto:fredrobert.hausc...@xxx.de] Gesendet: Freitag, 17. Dezember 2010 13:39 An: Maven Users List Betreff: AW: AW: Dependency on pom-project not resolved in reactor on multi-module build So I can't see a difference to my test, expecting version

releas:perform with profiles fails

2010-12-20 Thread Hauschel Fred Robert
Hi list, I've a multi module with differences between the prod and dev environment. Threfor I've defined some profiles. mvn clean install -P devContainerSettings,dependencies,!eclipse works fine! but mvn --batch-mode release:prepare -P devContainerSettings,dependencies,!eclipse fails with

AW: releas:perform with profiles fails

2010-12-20 Thread Hauschel Fred Robert
Found a workarround: http://www.tutorials.de/java/347377-maven-release-plugin-und-profile-activation.html Fredy -Ursprüngliche Nachricht- Von: Hauschel Fred Robert [mailto:fredrobert.hausc...@cirquent.de] Gesendet: Montag, 20. Dezember 2010 15:23 An: Maven Users List Betreff

Maven and environment Properties - Feature or bug ??

2010-12-17 Thread Hauschel Fred Robert
In windows: set test=dev and using ${env.test} in the pom for example in name myArtifact _${env.test}/name Results in: Building myArtifact_${env.test} 00.01-SNAPSHOT set TEST=dev and using ${env.TEST} in the pom for example in name myArtifact _${env.TEST}/name Results in: Building

AW: Dependency on pom-project not resolved in reactor on multi-module build

2010-12-17 Thread Hauschel Fred Robert
What happens, if you use mvn install? Fredy -Ursprüngliche Nachricht- Von: Florian Rampp [mailto:florian.ra...@jambit.com] Gesendet: Freitag, 17. Dezember 2010 10:51 An: users@maven.apache.org Betreff: Dependency on pom-project not resolved in reactor on multi-module build Hello, I

AW: Dependency on pom-project not resolved in reactor on multi-module build

2010-12-17 Thread Hauschel Fred Robert
How is the reactor solving the order of your modules? How is the order in your parent pom? Fredy -Ursprüngliche Nachricht- Von: Florian Rampp [mailto:florian.ra...@jambit.com] Gesendet: Freitag, 17. Dezember 2010 10:51 An: users@maven.apache.org Betreff: Dependency on pom-project not

activating a profile by two environment variables/values

2010-12-17 Thread Hauschel Fred Robert
Hi, I have four profiles prodDeps, prodResources, devDeps, devResources. If I set ENVIRONMENT=devContainer - prodDeps and devResources should be activated If I set ENVIRONMENT=prodContainer - prodDeps and prodResources should be activated If I set ENVIRONMENT=eclipse - devDeps and devResources

AW: Maven and environment Properties - Feature or bug ??

2010-12-17 Thread Hauschel Fred Robert
Rtfm ;-) Thanks!!! Fredy -Ursprüngliche Nachricht- Von: Benjamin Bentmann [mailto:benjamin.bentm...@udo.edu] Gesendet: Freitag, 17. Dezember 2010 12:18 An: Maven Users List Betreff: Re: Maven and environment Properties - Feature or bug ?? Hauschel Fred Robert wrote: Or did I have

AW: AW: Dependency on pom-project not resolved in reactor on multi-module build

2010-12-17 Thread Hauschel Fred Robert
Hello Florian, have you defined the typepom/type ?? dependencies dependency groupIdmygroup/groupId artifactIdA/artifactId version${parent.version}/version typepom/type /dependency Fredy -Ursprüngliche Nachricht- Von: Florian Rampp

AW: AW: Dependency on pom-project not resolved in reactor on multi-module build

2010-12-17 Thread Hauschel Fred Robert
-- Florian Rampp, Software Architect Phone: +49.89.45 23 47-64 -Ursprüngliche Nachricht- Von: Hauschel Fred Robert [mailto:fredrobert.hausc...@cirquent.de] Gesendet: Freitag, 17. Dezember 2010 13:12 An: Maven Users List Betreff: AW: AW: Dependency on pom-project not resolved in reactor

Missing M2Eclipse extensions: Checking out a Maven project from several SCM repositories

2010-12-16 Thread Hauschel Fred Robert
Hi list, A few weeks ago I think I've installed this feature from: m2eclipse Extras - http://m2eclipse.sonatype.org/sites/m2e-extras But now the feature is not available any more ?!?! Any Idea ?? Thanks Fredy - To unsubscribe,

[M3] release plugin

2010-12-01 Thread Hauschel Fred Robert
Hey all, i've some problems with releasing my artifacts with m3: [INFO] [ERROR] Plugin org.apache.maven.plugins:maven-source-plugin:2.2-SNAPSHOT or one of its dependencies could not be resolved: Failure to find org.apache.maven.plugins:maven-source-plugin:jar:2.2-2 0100510.060623-403 in

[m3] maven-site-plugin - out of memory

2010-11-04 Thread Hauschel Fred Robert
Hey all, I'm running site:site on a windows cmd line: C:\temp\scoreset maven_opts MAVEN_OPTS=-Xmx1536m Configuration in my parent pom: build plugins plugin groupIdorg.apache.maven.plugins/groupId

[m3] maven documentation - maven-site-plugin

2010-11-02 Thread Hauschel Fred Robert
Hey all, what is happening with the maven-site-plugin in future? Will it be supported for maven 3? I heard from any other plans keyword: idiom: access wiki. Does anybody have some information? Actually my sit generation crashes ;-( Fredy