[ANN] Release Maven Help Plugin 3.5.0 released

2024-08-21 Thread Michael Osipov
The Apache Maven team is pleased to announce the release of the Maven 
Help Plugin version 3.5.0.


https://maven.apache.org/plugins/maven-help-plugin/

You should specify the version in your project's plugin configuration:


  org.apache.maven.plugins
  maven-help-plugin
  3.5.0



Release Notes - Maven Help Plugin - Version 3.5.0

** Task
* [MPH-189] - Get rid of commons-lang3

** Dependency upgrade
* [MPH-212] - Upgrade to Doxia 2.0.0 Milestone Stack
* [MPH-215] - Upgrade to Parent 43


NOTE: Read the details on this release here: 
https://cwiki.apache.org/confluence/display/MAVEN/Towards+Doxia+2.0.0+Stack


Enjoy,

-The Apache Maven team

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



[ANN] Release Maven Help Plugin 3.4.1 released

2024-06-05 Thread Michael Osipov
The Apache Maven team is pleased to announce the release of the Maven 
Help Plugin version 3.4.1.


https://maven.apache.org/plugins/maven-help-plugin/

You should specify the version in your project's plugin configuration:


  org.apache.maven.plugins
  maven-help-plugin
  3.4.1



Release Notes - Maven Help Plugin - Version 3.4.1

** Test
* [MPH-207] - Exercise output of an expression returning a null object.

** Dependency upgrade
* [MPH-211] - Upgrade maven-plugin parent to 41
* [MPH-213] - Upgrade org.codehaus.plexus:plexus-interactivity-api 
from 1.3

* [MPH-214] - Upgrade to Parent 42


Enjoy,

-The Apache Maven team

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



[ANN] Release Maven Help Plugin 3.4.0 released

2023-03-18 Thread Slawomir Jaranowski
The Apache Maven team is pleased to announce the release of the Maven Help
Plugin version 3.4.0.

The Maven Help Plugin is used to get relative information about a project
or the system.

https://maven.apache.org/plugins/maven-help-plugin/

You should specify the version in your project's plugin configuration:


  org.apache.maven.plugins
  maven-help-plugin
  3.4.0


You can download the appropriate sources etc. from the download page:

https://maven.apache.org/plugins/maven-help-plugin/download.html

Release Notes - Maven Help Plugin - Version 3.4.0

** Improvement
* [MPH-185] - Require Maven 3.6.3
* [MPH-195] - Get rid of ${localRepository} from mojo parameter
* [MPH-198] - Get rid of maven-reporting-exec
* [MPH-201] - Improvement of usage maven-plugin-tools-generators

** Task
* [MPH-200] - Refresh download page

** Dependency upgrade
* [MPH-194] - Upgrade Parent to 39
* [MPH-196] - Bump xstream to 1.4.20
* [MPH-197] - Upgrade plexus-utils to 3.5.1
* [MPH-199] - Bump mockito-core from 2.28.2 to 4.11.0
* [MPH-202] - Bump mrm-maven-plugin from 1.4.1 to 1.5.0
* [MPH-203] - Bump commons-lang3 from 3.8.1 to 3.12.0

Enjoy,

-The Apache Maven team


[ANN] Release Maven Help Plugin 3.3.0 released

2022-08-16 Thread Michael Osipov
The Apache Maven team is pleased to announce the release of the Maven 
Help Plugin version 3.3.0.


This module generates browsable HTML pages from Java source code.

https://maven.apache.org/plugins/maven-help-plugin/

You should specify the version in your project's plugin configuration:


  org.apache.maven.plugins
  maven-help-plugin
  3.3.0



Release Notes - Maven Help Plugin - Version 3.3.0

** Bug
* [MPH-164] - Effective-pom ignores artifact argument
* [MPH-171] - Plugin repositories are not preserved from project pom

** Improvement
* [MPH-162] - Allow all mojos to be configured to produce 
repeatable output

* [MPH-167] - make build Reproducible
* [MPH-170] - Require Maven 3.1.1 (drop dependency to Maven 3.0)

** Task
* [MPH-187] - Upgrade to JDK minimum
* [MPH-188] - Cleanup - Pom

** Dependency upgrade
* [MPH-174] - Upgrade XStream to 1.4.17
* [MPH-179] - Upgrade XStream to 1.4.18
* [MPH-186] - maven-parent to 37
* [MPH-190] - Upgrade Maven Reporting API to 3.1.1


Enjoy,

-The Apache Maven team

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: Reporting in maven. help please

2020-11-29 Thread Bernd Eckenfels
Hello,

There are a number of static code analyses which also happen to have a maven 
plugin (with sire reporting integration), for example pmd, findbugs/spotbugs, 
checker framework, checkstyle, (static-Code-analysis) Javancss, taglist, l10n 
status, jdepend and dependency-Check, and a few external tools with maven 
integration like sonarqube, lgtm or Snyk, see also here 
https://maven.apache.org/code-quality-management.html

Most of those plugins are best used when you have a matching CI plugin to 
record long term trends or if they have their own database (like sonarqube).

Gruss
Bernd
--
http://bernd.eckenfels.net

Von: Aitor Iturriondobeitia 
Gesendet: Sunday, November 29, 2020 6:47:13 PM
An: Maven Users List 
Betreff: Reporting in maven. help please

Hello
i am new using maven and i am reading documentation.
Can you say me which plugins can i use for reporting the code quality?
any example?
thanks


Re: Reporting in maven. help please

2020-11-29 Thread John Patrick
Is this the documentation you said you are reading
https://maven.apache.org/plugins/index.html, as it has a reporting
section for maven maintained plugins.

but to highlight some, take a look at;
checkstyle https://maven.apache.org/plugins/maven-checkstyle-plugin/
pmd/cpd https://maven.apache.org/plugins/maven-pmd-plugin/
spotbugs (was findbugs) https://spotbugs.github.io/spotbugs-maven-plugin/

harder setup as requires installing separate tooling, and most overlap
with checkstyle, pmd and sportbugs in the free version.
sonarqube 
https://docs.sonarqube.org/latest/analysis/scan/sonarscanner-for-maven/

for your dependencies look at owasp and
https://jeremylong.github.io/DependencyCheck/dependency-check-maven/index.html

If you're on github or bitbucket and are an open source project then
they have lots of both apps or integration tooling that can check
dependencies, code coverage. But if it's a closed private repo then it
will cost you something $$$ per month.

John

On Sun, 29 Nov 2020 at 17:47, Aitor Iturriondobeitia
 wrote:
>
> Hello
> i am new using maven and i am reading documentation.
> Can you say me which plugins can i use for reporting the code quality?
> any example?
> thanks

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Reporting in maven. help please

2020-11-29 Thread Aitor Iturriondobeitia
Hello
i am new using maven and i am reading documentation.
Can you say me which plugins can i use for reporting the code quality?
any example?
thanks


[ANN] Apache Maven Help Plugin 3.2.0 Released

2019-04-22 Thread Hervé Boutemy
The Apache Maven team is pleased to announce the release of the Apache Maven 
Help Plugin, version 3.2.0

The Maven Help Plugin is used to get relative information about a project or 
the system. It can be used to get a description of a particular plugin, 
including the plugin's goals with their parameters and component requirements, 
the effective POM and effective settings of the current build, and the 
profiles applied to the current project being built.

https://maven.apache.org/plugins/maven-help-plugin/

You should specify the version in your project's plugin configuration:


org.apache.maven.plugins
maven-help-plugin
3.2.0


You can download the appropriate sources etc. from the download page:

https://maven.apache.org/plugins/maven-help-plugin/download.cgi


Release Notes - Maven Help Plugin - Version 3.2.0

** New Feature
* [MPH-160] - help:effective-pom -Dverbose: add source location as 
comments in effective pom.xml

** Improvement
* [MPH-161] - add color to goal or plugin description

Enjoy,

-The Apache Maven team



-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



[ANN] Apache Maven Help Plugin Version 3.1.1 Released

2018-12-12 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the 
Apache Maven Help Plugin Version 3.1.1
 
https://maven.apache.org/plugins/maven-help-plugin/

You should specify the version in your project's plugin configuration:

Important Notes since Version 3.0.0

 * Maven 3+ only
 * JDK 7 minimum requirement
 

  org.apache.maven.plugins
  maven-help-plugin
  3.1.1


You can download the appropriate sources etc. from the download page:
 
https://maven.apache.org/plugins/maven-help-plugin/download.cgi
 
Release Notes Maven Help Plugin 3.1.1

https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317522&version=12343422


Improvement:

 * [MPH-154] - The output of the plugin should be flushed when using forceStdout

Dependency upgrades:

 * [MPH-153] - Upgrade maven-plugins parent to version 32
 * [MPH-156] - Upgrade maven-artifact-transfer to 0.10.0
 * [MPH-157] - Upgrade plexus-interactivity-api 1.0-alpha-6
 * [MPH-158] - Upgrade xstream 1.4.11.1
 * [MPH-159] - Upgrade JUnit 4.12

Enjoy,
 
- The Apache Maven team

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



[ANN] Apache Maven Help Plugin Version 3.1.0 Released

2018-06-09 Thread Karl Heinz Marbaise
The Apache Maven team is pleased to announce the release of the 
Apache Maven Help Plugin Version 3.1.0
 
https://maven.apache.org/plugins/maven-help-plugin/

You should specify the version in your project's plugin configuration:

Important Notes since Version 3.0.0

 * Maven 3+ only
 * JDK 7 minimum requirement
 

  org.apache.maven.plugins
  maven-help-plugin
  3.1.0


You can download the appropriate sources etc. from the download page:
 
https://maven.apache.org/plugins/maven-help-plugin/download.cgi
 
Release Notes Maven Help Plugin 3.1.0

https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317522&version=12343004


New Feature:

 * [MPH-144] - Add ability to print mvn help:evaluate output to stdout in quiet 
mode

Improvement:

 * [MPH-151] - Add documentation information for GitHub

Tasks:

 * [MPH-145] - Upgrade mave-surefire/failsafe-plugin 2.21.0
 * [MPH-146] - JavaDoc Issues / Code cleanups

Dependency upgrades:

 * [MPH-147] - plexus-interactivity-api to 1.0-alpha-6
 * [MPH-148] - Upgrade xstream to 1.4.10
 * [MPH-149] - Upgrade jdom-legacy to jdom2 2.0.6

Enjoy,
 
- The Apache Maven team

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



[ANN] Release Maven Help Plugin 3.0.1 released

2018-03-27 Thread Michael Osipov
The Apache Maven team is pleased to announce the release of the Maven 
Help Plugin version 3.0.1.


This module generates browsable HTML pages from Java source code.

https://maven.apache.org/plugins/maven-help-plugin/

You should specify the version in your project's plugin configuration:


  org.apache.maven.plugins
  maven-help-plugin
  3.0.1



Release Notes - Maven Help Plugin - Version 3.0.1

** Bug
* [MPH-135] - help:effective-pom crashes with NPE in multi module 
builds with -Doutput set

* [MPH-139] - Invalid default namespace set for effective settings
* [MPH-140] - Multiple XML declarations written

** Task
* [MPH-137] - Use JDOM's PrettyFormatter throughout
* [MPH-138] - Drop AbstractEffectiveMojo#addMavenNamespace()
* [MPH-141] - Use non-deprecated field in DateFormatUtils

** Dependency upgrade
* [MPH-136] - Upgrade JDOM to 1.1.3


Enjoy,

-The Apache Maven team

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



[ANN] Release Maven Help Plugin 3.0.0 released

2018-03-17 Thread Michael Osipov
The Apache Maven team is pleased to announce the release of the Maven 
Help Plugin version 3.0.0.


This module generates browsable HTML pages from Java source code.

https://maven.apache.org/plugins/maven-help-plugin/

You should specify the version in your project's plugin configuration:


  org.apache.maven.plugins
  maven-help-plugin
  3.0.0



Release Notes - Maven Help Plugin - Version 3.0.0

** Bug
* [MPH-53] - mvn help:describe returns the version that is 
specified in metadata instead of  the one in the parent pom
* [MPH-87] - help:effective-pom/effective-settings uses platform 
encoding and garbles non-ASCII characters, emits invalid XML
* [MPH-97] - [Patch] maven-help-plugin does not build with latest 
version of maven-plugin-testing-harness

* [MPH-99] - Evaluate has no output in quiet mode
* [MPH-105] - Effective pom aggregation is not triggered
* [MPH-107] - Mojos use inconsistent line endings throughout
* [MPH-108] - Patch for MPH-72 not fully applied
* [MPH-110] - Cannot run ITs successfully
* [MPH-111] - IT 'effective-pom_properties' fails if run with 
-Dinvoker.mergeUserSettings

* [MPH-114] - Goal fails with “Unable to get the POM for the artifact”
* [MPH-119] - The "artifact" parameter is not taken into account 
with Maven 3

* [MPH-121] - incorrect text in help:describe for cmd
* [MPH-123] - all-profiles does not show right active status

** Improvement
* [MPH-106] - add gav parameter to calculate effective pom for any 
gav, not only reactor

* [MPH-109] - Use ISO 8601 date format for the remaining goals
* [MPH-116] - Printout the information if a goal is a report goal 
or not

* [MPH-120] - Migrate plugin to Maven 3.0
* [MPH-124] - Show parameter aliases in describe goal

** Task
* [MPH-103] - Remove unused dependency maven-monitor
* [MPH-112] - Upgrade to Commons Lang3
* [MPH-126] - Require Java 7
* [MPH-132] - Drop parameter 'medium'
* [MPH-133] - Drop deprecated alias 'full'
* [MPH-134] - Drop deprecated alias 'mojo'

** Dependency upgrade
* [MPH-102] - Upgrade to maven-plugins parent version 27
* [MPH-104] - Upgrade maven-plugin-testing-harness to 1.3
* [MPH-117] - Upgrade plexus-utils to 3.0.22
* [MPH-118] - Upgrade maven-plugins to version 30
* [MPH-125] - Upgrade parent to 31
* [MPH-127] - Upgrade Maven  Artifact Transfer to 0.9.1
* [MPH-128] - Upgrade Maven Reporting Exec to 1.4
* [MPH-129] - Upgrade Plexus Utils to 3.1.0
* [MPH-130] - Upgrade XStream to 1.4.7
* [MPH-131] - Ugprade Commons Lang to 3.7


Enjoy,

-The Apache Maven team


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



[ANN] Maven Help Plugin 2.2 Released

2013-02-24 Thread Robert Scholte
The Apache Maven team is pleased to announce the release of the Maven Help  
Plugin, version 2.2


This plugin is used to get relative information about a project or the  
system. It can be used to get a description of a particular plugin,  
including the plugin's mojos with their parameters and component  
requirements, the effective POM and effective settings of the current  
build, and the profiles applied to the current project being built.


http://maven.apache.org/plugins/maven-help-plugin/

You should specify the version in your project's plugin configuration:


  org.apache.maven.plugins
  maven-help-plugin
  2.2


Release Notes - Maven Help Plugin - Version 2.2

** Bug
* [MPH-79] - help:active-profiles does not list active inherited  
profiles
* [MPH-88] - [PATCH] Migration from obsolete plexus-maven-plugin to  
plexus-containers-component-metadata
* [MPH-91] - No deep copy with effective-settings, causing passwords  
to be anonymized during further executions


** Improvement
* [MPH-81] - maven-help-plugin:describe to display Required and  
Expression status

* [MPH-93] - Replace expression label with user property when possible

** Task
* [MPH-89] - use maven-plugin-tools' java 5 annotations
* [MPH-92] - Upgrade Maven prerequisite to 2.2.1


Enjoy,

-The Apache Maven team

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



[maven-help-plugin] bug with active-profiles in 2.1.1

2012-02-28 Thread nodje
maven-help-plugin:2.1.1:active-profiles doesn't display some active profiles
under a specific set of circumstances:

- a parent pom containing a set of profiles, let's say 'dev' and 'prod'

- a settings.xml that activates a locally defined plugin (let's call it
'repo'), and also activates the parent pom 'dev' profile thru
 ( has 2 lines, activates both 'repo' and
'dev')

when you call 'mvn help:active-profiles' from the parent pom directory, it
rightly displays:

The following profiles are active:

 - dev (source: pom.xml)
 - repo (source: settings.xml)

when you call the same from a child project inheriting the parent pom, it
would only display 'repo' as active.

The following profiles are active:

 - repo (source: settings.xml)

Even when adding a '-Pdev' only repo would be displayed as active, even
though the 'dev' profile IS ACTIVE and does it's job as expected.

Sounds like a bug to me, but I could be mistaken for some reason.
It would be totally counter intuitive if I were though, as 'dev' is active
in a child project anyway.



--
View this message in context: 
http://maven.40175.n5.nabble.com/maven-help-plugin-bug-with-active-profiles-in-2-1-1-tp5521313p5521313.html
Sent from the Maven - Users mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



[ANN] Maven Help Plugin 2.1.1 Released

2010-03-29 Thread Brett Porter
The Maven team is pleased to announce the release of the Maven Help Plugin, 
version 2.1.1.

This plugin is used to get information about the working environment for the 
project.

http://maven.apache.org/plugins/maven-help-plugin/

The release improves support for Maven 3 and removes the confusing incorrect 
deprecation warnings on plugin definitions. If Maven does not automatically 
update to this release for you, try running a help goal with the -U flag.

Release Notes

* [MPH-58] - effective pom file created with mixed newlines
* [MPH-59] - Describe goal says everything is deprecated
* [MPH-75] - help:describe crashes with NPE if -Dplugin=archetype is used 
with a non-existent mojo name
* [MPH-57] - Hide server passphrase for effective-settings
* [MPH-72] - Use ISO8601-format for date and time
* [MPH-76] - use a fixed number of asterisks to mask passwords in 
effective-settings
* [MPH-71] - call help:evaluate in batch mode

Enjoy,

-The Maven team

--
Brett Porter
br...@apache.org
http://brettporter.wordpress.com/





-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: problem when I start to debug the Maven (help help help)

2009-05-17 Thread Brian Fox
Try a newer jdk.

On Sat, May 16, 2009 at 10:46 PM, lindberg  wrote:

>
> I have an application that use the Maven then when I do debug using Maven I
> get the message below but when I do the normal debug without using Maven
> works. what can be? what do I do?
>
> #
> # An unexpected error has been detected by HotSpot Virtual Machine:
> #
> #  EXCEPTION_FLT_STACK_CHECK (0xc092) at pc=0x00cb0d58, pid=3716,
> tid=3696
> #
> # Java VM: Java HotSpot(TM) Client VM (1.5.0-b64 mixed mode)
> # Problematic frame:
> # v  ~RuntimeStub::jvmdi_exception_throw Runtime1 stub
> #
> # An error report file with more information is saved as hs_err_pid3716.log
> #
> # If you would like to submit a bug report, please visit:
> #   http://java.sun.com/webapps/bugreport/crash.jsp
> #
>
> --
> View this message in context:
> http://www.nabble.com/problem-when-I-start-to-debug-the-Maven-%28help-help-help%29-tp23579749p23579749.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
>
>


problem when I start to debug the Maven (help help help)

2009-05-16 Thread lindberg

I have an application that use the Maven then when I do debug using Maven I
get the message below but when I do the normal debug without using Maven
works. what can be? what do I do?

#
# An unexpected error has been detected by HotSpot Virtual Machine:
#
#  EXCEPTION_FLT_STACK_CHECK (0xc092) at pc=0x00cb0d58, pid=3716,
tid=3696
#
# Java VM: Java HotSpot(TM) Client VM (1.5.0-b64 mixed mode)
# Problematic frame:
# v  ~RuntimeStub::jvmdi_exception_throw Runtime1 stub
#
# An error report file with more information is saved as hs_err_pid3716.log
#
# If you would like to submit a bug report, please visit:
#   http://java.sun.com/webapps/bugreport/crash.jsp
#

-- 
View this message in context: 
http://www.nabble.com/problem-when-I-start-to-debug-the-Maven-%28help-help-help%29-tp23579749p23579749.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



[ANN] Maven Help Plugin 2.1 Released

2008-09-04 Thread Vincent Siveton
The Maven team is pleased to announce the release of the Maven Help
Plugin, version 2.1

The Maven Help plugin provides goals aimed at helping to make sense
out of the build environment. It includes the ability to view the
effective POM and settings files, after inheritance and active
profiles have been applied, as well as a describe a particular plugin
goal to give usage information.

http://maven.apache.org/plugins/maven-help-plugin/

You should specify the version in your project's plugin configuration:


 org.apache.maven.plugins
 maven-help-plugin
 2.1



Release Notes - Maven 2.x Help Plugin - Version 2.1

** Bug
* [MPH-42] - Active profiles recursively growing
* [MPH-49] - help:describe no-arg error doesn't mention "cmd"
* [MPH-50] - "mvn help:describe -Dcmd=compiler:compile" describes
entire plugin, not the specific mojo
* [MPH-51] - "help:help -Ddetail" looks better than "help:describe
-Dplugin=help -Dfull"
* [MPH-52] - help:describe never shows "Default Value"

** Improvement
* [MPH-15] - help:describe should accept plugin prefix or prefix:goal
* [MPH-26] - New goal help:help to provide help on how to use
helper plugins in maven
* [MPH-29] - help:describe should be way more helpful when no
arguments are provided
* [MPH-32] - "medium" mode should be the default for help:describe
* [MPH-33] - Help plugin should refer to "goal" not "mojo"
* [MPH-35] - Make -Dfull more discoverable by suggesting it
* [MPH-37] - help:effective-pom - sort the properties list
* [MPH-40] - help:effective-pom emits invalid XML to output file
* [MPH-44] - Hide passwords for effective-settings
* [MPH-46] - Improve the output of help:describe
* [MPH-54] - -Dhelp:describe -Ddetail should not show component requirements

** New Feature
* [MPH-4] - add mojo to projecthelp to describe supported plugin
parameter expressions
* [MPH-12] - Create a Mojo to list all Profiles for a Project
(even those loaded from an external profiles.xml)
* [MPH-28] - New goal to list platform details
* [MPH-30] - help:describe should accept "cmd" argument
* [MPH-47] - Add a new goal to evaluate Maven expressions given by a user

** Task
* [MPH-43] - Create an abstract Help Mojo with output  parameter
* [MPH-48] - Review dependencies

Enjoy,

-The Maven team

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[ANN] Maven Help Plugin 2.0.2 Released

2007-11-27 Thread Dennis Lundberg

The Maven team is pleased to announce the release of Maven Help
Plugin, version 2.0.2.

http://maven.apache.org/plugins/maven-help-plugin/


Release Notes - Maven 2.x Help Plugin - Version 2.0.2


** Bug
* [MPH-16] - help:active-profiles doesn't include profiles derived 
from the parent pom.
* [MPH-21] - Help;effective-pom: don't aggregrate when called from 
lifecycle

* [MPH-25] - Simplify Help Plugin - Add medium describe flag

** Improvement
* [MPH-18] - Plugin site out of date?


Enjoy!

- The Maven Team

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Profiles in maven - help!

2007-08-16 Thread Federico Schroder
Have you enabled filtering for this?

Federico.

On Thu, 2007-08-16 at 16:10 -0500, Vaidya, Supriya A (US - Chicago)
wrote:
> HI:
>  
> I have a profiles.xml in my project root folder, that has the following
> structure:
>  
> 
> 
> 
> development
> 
> true
> 
> 
> value1
> value2
>  
> :
> :
> :
> :
>  
> 
> Now the project contains a EAR/WAR and a JAR. In my WAR file, I have a
> resources/spring directory, containing an xml with the following:
>  
> 
> property1
> 
> ${prop1}
>  
> 
> and so on.
>  
> In my command prompt, when I run the mvn clean install -P development -
> everything runs fine, but the XML remains with the unprocessed property
> values {prop}.
>  
> I tried running the mvn help:active-profiles,and when I do this - it sez
> that the following profiles are active: - development
> but then goes on to say that no profiles are active for the POJO, the
> WAR or the EAR... hwo do I active the profile for teh WAR??
>  
> 
> Supriya A Vaidya 
> Technology Integration 
> Deloitte Consulting LLP 
> Tel: +1 312 486 4835 
> Fax: +1 312 247 4835
> Mobile: + 1 414 736 8157 
> www.deloitte.com  
> 
> 
> 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 recipient, you should delete this message. 
> 
> 
> Any disclosure, copying, or distribution of this message, or the taking of 
> any action based on it, is strictly prohibited. [v.E.1]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Profiles in maven - help!

2007-08-16 Thread Vaidya, Supriya A \(US - Chicago\)
HI:
 
I have a profiles.xml in my project root folder, that has the following
structure:
 



development

true


value1
value2
 
:
:
:
:
 
 
Now the project contains a EAR/WAR and a JAR. In my WAR file, I have a
resources/spring directory, containing an xml with the following:
 

property1

${prop1}
 
 
and so on.
 
In my command prompt, when I run the mvn clean install -P development -
everything runs fine, but the XML remains with the unprocessed property
values {prop}.
 
I tried running the mvn help:active-profiles,and when I do this - it sez
that the following profiles are active: - development
but then goes on to say that no profiles are active for the POJO, the
WAR or the EAR... hwo do I active the profile for teh WAR??
 

Supriya A Vaidya 
Technology Integration 
Deloitte Consulting LLP 
Tel: +1 312 486 4835 
Fax: +1 312 247 4835
Mobile: + 1 414 736 8157 
www.deloitte.com  


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 recipient, you should delete this message. 


Any disclosure, copying, or distribution of this message, or the taking of any 
action based on it, is strictly prohibited. [v.E.1]


[M2] extending profiles from parent pom -> BUG in maven-help-plugin??

2007-03-12 Thread CodingPlayer

Hi all,

i just split my parent pom into two distinct poms.

One containing only generic informations, like used plugins, repositories
(maven, codehaus), ...), while the second one contains company specific
settings (issues, developers, organization, ...)

Some of the elements are needed in both poms, like properties, repositories,
pluginRepo. and profiles.

Everything works fine except, except there seems to be a BUG with the
maven-help-plugin.

when executing:
   mvn help:effective-pom

the inherited profiles are NEVER shown. Only the leaf-profiles are
displayed. But all profiles are currently existing, and can be activated.


Maybe this is no bug, and the inherited profiles are left out (when
displaying) for a reason, if someone knows more pls let me know.

thx
R.C.
-- 
View this message in context: 
http://www.nabble.com/-M2--extending-profiles-from-parent-pom--%3E-BUG-in-maven-help-plugin---tf3388700s177.html#a9432359
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [M2] different maven-...help-plugins?

2006-12-04 Thread Wendy Smoak

On 12/4/06, Mark Hobson <[EMAIL PROTECTED]> wrote:

On 04/12/06, CodingPlayer <[EMAIL PROTECTED]> wrote:
> does anyone know about the difference of these two plugins?
>
> http://maven.apache.org/plugins/maven-help-plugin/
> http://maven.apache.org/plugins/maven-projecthelp-plugin/

maven-projecthelp-plugin was renamed to maven-help-plugin a while back.


I've removed the maven-projecthelp-plugin docs from the server, it
will disappear in a day or so.

Thanks,
Wendy

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [M2] different maven-...help-plugins?

2006-12-04 Thread CodingPlayer

Mark, thx 4 help, that was what i expected.

R.C.


Mark Hobson wrote:
> 
> On 04/12/06, CodingPlayer <[EMAIL PROTECTED]> wrote:
>> does anyone know about the difference of these two plugins?
>>
>> http://maven.apache.org/plugins/maven-help-plugin/
>> http://maven.apache.org/plugins/maven-projecthelp-plugin/
> 
> maven-projecthelp-plugin was renamed to maven-help-plugin a while back.
> 
> Mark
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/-M2--different-maven-...help-plugins--tf2753567s177.html#a7679766
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [M2] different maven-...help-plugins?

2006-12-04 Thread Mark Hobson

On 04/12/06, CodingPlayer <[EMAIL PROTECTED]> wrote:

does anyone know about the difference of these two plugins?

http://maven.apache.org/plugins/maven-help-plugin/
http://maven.apache.org/plugins/maven-projecthelp-plugin/


maven-projecthelp-plugin was renamed to maven-help-plugin a while back.

Mark

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[M2] different maven-...help-plugins?

2006-12-04 Thread CodingPlayer

Hi,

does anyone know about the difference of these two plugins?

http://maven.apache.org/plugins/maven-help-plugin/
http://maven.apache.org/plugins/maven-projecthelp-plugin/

Which one is used most common?

thx
R.C.

-- 
View this message in context: 
http://www.nabble.com/-M2--different-maven-...help-plugins--tf2753567s177.html#a7678912
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven help plugin

2006-11-21 Thread Eric Redmond

-Dfull

http://maven.apache.org/plugins/maven-help-plugin/describe-mojo.html

Eric

On 11/21/06, Trevor Torrez <[EMAIL PROTECTED]> wrote:


Is there a way to get the help plugin to cough up the goals that a
plugin supports?

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
Eric Redmond
http://codehaus.org/~eredmond


Maven help plugin

2006-11-21 Thread Trevor Torrez

Is there a way to get the help plugin to cough up the goals that a
plugin supports?

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: partial answer to first part: RE: selecting active profiles and maven-help-plugin does not work as expected/configuring plugin-repository cauze plugin to be not executed?

2006-11-03 Thread Wayne Fay

I actually use the "test" or "package" phases myself by default when
I'm working on webapps, not "compile", so I haven't noticed this
myself.

You could dig into the jspc-maven-plugin to find out what phase(s) the
plugin is configured to run in by default. And of course you can tell
the plugin to execute in a particular phase (in addition to its
default) in your own pom.

Perhaps you could start using a phase other than compile when you run
mvn and you want to have your JSPs compiled?

Wayne

On 11/3/06, Leonard Gestrin <[EMAIL PROTECTED]> wrote:

Apparently, 1.4.6 version of jspc-maven-plugin is invoked for goals that
after "compile" (like install)
And 1.4.5 version of jspc-maven-plugin is invoked for "compile" also.

It's defined like this in pom.xml



org.codehaus.mojo
jspc-maven-plugin
   

  
jspc

  compile

  


  



-Original Message-
From: Leonard Gestrin [mailto:[EMAIL PROTECTED]
Sent: Friday, November 03, 2006 3:32 PM
To: Maven Users List
Subject: RE: selecting active profiles and maven-help-plugin does not
work as expected/configuring plugin-repository cauze plugin to be not
executed?

Thanks, that was a good suggestion.

Apparently, when plugin directory is configured, the latest plugin
version for jspc is

..
[DEBUG] jspc-maven-plugin: resolved to version 1.4.6 from repository
ibiblio.org
..
If I don't use biblio, mvn uses 1.4.5, and it also prints this line in
debug output

..
[DEBUG] org.codehaus.mojo:jspc-maven-plugin:maven-plugin:1.4.5:runtime
(selected for runtime)
...

I don't get this line for version 1.4.6

Both plugins are installed in my local repository, but for some reason
1.4.6 is not get invoked for compilation.


P.S. am I correct in my observations for help plugin with active
profiles?


-Original Message-
From: Wayne Fay [mailto:[EMAIL PROTECTED]
Sent: Friday, November 03, 2006 2:26 PM
To: Maven Users List
Subject: Re: selecting active profiles and maven-help-plugin does not
work as expected/configuring plugin-repository cauze plugin to be not
executed?

Have you tried mvn -X ... to see additional debugging information? I'd
assume something is just not working right, and the stacktrace might
help you see/find it.

Wayne

On 11/3/06, Leonard Gestrin <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I have the following setup:
>
> 1. Defined "internal" , "external" profiles  in settings.xml and set
> "internal" as active.  "external" profile has plugin repository
> configuration. (this play important role for some reason)
>
> 2. Defined "jsp-comp"  profile to activate jsp compilation for the
build
> in "compile" goal in parent-pom.xml
>
> 3, webapp pom.xml uses the parent pom.
>
>
>
>
>
> $mvn -Pinternal, jsp-compile compile -  I can see that internal and
> jsp-compile profiles are being used (jsps are compiled)
>
>
>
> $mvn -Pexternal, jsp-compile compile -  I can see that external is
used
> but jsp-compile is ignored!. (jsps are not compiled)
>
>
>
> Anybody has any clue why this might be the case?  Plugin "help" does
not
> seem to be helpful since it appears to simply print out settings.xml
(or
> it's portions) and can present flat pom.xml but seem to ignore
> information in parent's pom.xml with respect to profiles.
>
>
>
> I also noticed that jsp-compile does work in conjunction with
"external"
> profile if I comment out this section in "external" profile
definition.
>
>
>
> 
>
> 
>
>   ibiblio.org
>
>   Maven Plugin Repository
>
>   default
>
>   http://www.ibiblio.org/maven2
>
>   
>
> interval:60
>
> false
>
>   
>
>   
>
> never
>
>   
>
>   
>
>
>
>
>
>
>
> Executing commands in webapp dir
>
>
>
> $mvn help:effective-settingprints "internal" is active.
>
>
>
> $mvn -Pexternal help:effective-settingprints "internal" is active
> again. <-  is this wrong? The book says that -P option should
overwrite
> active profile? When I build application I do see that external
profile
> is being used.
>
>
>
> Thanks
>
> Leonard
>
>
>
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



partial answer to first part: RE: selecting active profiles and maven-help-plugin does not work as expected/configuring plugin-repository cauze plugin to be not executed?

2006-11-03 Thread Leonard Gestrin
Apparently, 1.4.6 version of jspc-maven-plugin is invoked for goals that
after "compile" (like install)
And 1.4.5 version of jspc-maven-plugin is invoked for "compile" also.

It's defined like this in pom.xml



org.codehaus.mojo
jspc-maven-plugin
   

  
jspc

  compile

  


  



-Original Message-
From: Leonard Gestrin [mailto:[EMAIL PROTECTED] 
Sent: Friday, November 03, 2006 3:32 PM
To: Maven Users List
Subject: RE: selecting active profiles and maven-help-plugin does not
work as expected/configuring plugin-repository cauze plugin to be not
executed?

Thanks, that was a good suggestion.

Apparently, when plugin directory is configured, the latest plugin
version for jspc is 

..
[DEBUG] jspc-maven-plugin: resolved to version 1.4.6 from repository
ibiblio.org
..
If I don't use biblio, mvn uses 1.4.5, and it also prints this line in
debug output

..
[DEBUG] org.codehaus.mojo:jspc-maven-plugin:maven-plugin:1.4.5:runtime
(selected for runtime)
...

I don't get this line for version 1.4.6

Both plugins are installed in my local repository, but for some reason
1.4.6 is not get invoked for compilation.


P.S. am I correct in my observations for help plugin with active
profiles?


-Original Message-
From: Wayne Fay [mailto:[EMAIL PROTECTED] 
Sent: Friday, November 03, 2006 2:26 PM
To: Maven Users List
Subject: Re: selecting active profiles and maven-help-plugin does not
work as expected/configuring plugin-repository cauze plugin to be not
executed?

Have you tried mvn -X ... to see additional debugging information? I'd
assume something is just not working right, and the stacktrace might
help you see/find it.

Wayne

On 11/3/06, Leonard Gestrin <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I have the following setup:
>
> 1. Defined "internal" , "external" profiles  in settings.xml and set
> "internal" as active.  "external" profile has plugin repository
> configuration. (this play important role for some reason)
>
> 2. Defined "jsp-comp"  profile to activate jsp compilation for the
build
> in "compile" goal in parent-pom.xml
>
> 3, webapp pom.xml uses the parent pom.
>
>
>
>
>
> $mvn -Pinternal, jsp-compile compile -  I can see that internal and
> jsp-compile profiles are being used (jsps are compiled)
>
>
>
> $mvn -Pexternal, jsp-compile compile -  I can see that external is
used
> but jsp-compile is ignored!. (jsps are not compiled)
>
>
>
> Anybody has any clue why this might be the case?  Plugin "help" does
not
> seem to be helpful since it appears to simply print out settings.xml
(or
> it's portions) and can present flat pom.xml but seem to ignore
> information in parent's pom.xml with respect to profiles.
>
>
>
> I also noticed that jsp-compile does work in conjunction with
"external"
> profile if I comment out this section in "external" profile
definition.
>
>
>
> 
>
> 
>
>   ibiblio.org
>
>   Maven Plugin Repository
>
>   default
>
>   http://www.ibiblio.org/maven2
>
>   
>
> interval:60
>
> false
>
>   
>
>   
>
> never
>
>   
>
>   
>
>
>
>
>
>
>
> Executing commands in webapp dir
>
>
>
> $mvn help:effective-settingprints "internal" is active.
>
>
>
> $mvn -Pexternal help:effective-settingprints "internal" is active
> again. <-  is this wrong? The book says that -P option should
overwrite
> active profile? When I build application I do see that external
profile
> is being used.
>
>
>
> Thanks
>
> Leonard
>
>
>
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: selecting active profiles and maven-help-plugin does not work as expected/configuring plugin-repository cauze plugin to be not executed?

2006-11-03 Thread Leonard Gestrin
Thanks, that was a good suggestion.

Apparently, when plugin directory is configured, the latest plugin
version for jspc is 

..
[DEBUG] jspc-maven-plugin: resolved to version 1.4.6 from repository
ibiblio.org
..
If I don't use biblio, mvn uses 1.4.5, and it also prints this line in
debug output

..
[DEBUG] org.codehaus.mojo:jspc-maven-plugin:maven-plugin:1.4.5:runtime
(selected for runtime)
...

I don't get this line for version 1.4.6

Both plugins are installed in my local repository, but for some reason
1.4.6 is not get invoked for compilation.


P.S. am I correct in my observations for help plugin with active
profiles?


-Original Message-
From: Wayne Fay [mailto:[EMAIL PROTECTED] 
Sent: Friday, November 03, 2006 2:26 PM
To: Maven Users List
Subject: Re: selecting active profiles and maven-help-plugin does not
work as expected/configuring plugin-repository cauze plugin to be not
executed?

Have you tried mvn -X ... to see additional debugging information? I'd
assume something is just not working right, and the stacktrace might
help you see/find it.

Wayne

On 11/3/06, Leonard Gestrin <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I have the following setup:
>
> 1. Defined "internal" , "external" profiles  in settings.xml and set
> "internal" as active.  "external" profile has plugin repository
> configuration. (this play important role for some reason)
>
> 2. Defined "jsp-comp"  profile to activate jsp compilation for the
build
> in "compile" goal in parent-pom.xml
>
> 3, webapp pom.xml uses the parent pom.
>
>
>
>
>
> $mvn -Pinternal, jsp-compile compile -  I can see that internal and
> jsp-compile profiles are being used (jsps are compiled)
>
>
>
> $mvn -Pexternal, jsp-compile compile -  I can see that external is
used
> but jsp-compile is ignored!. (jsps are not compiled)
>
>
>
> Anybody has any clue why this might be the case?  Plugin "help" does
not
> seem to be helpful since it appears to simply print out settings.xml
(or
> it's portions) and can present flat pom.xml but seem to ignore
> information in parent's pom.xml with respect to profiles.
>
>
>
> I also noticed that jsp-compile does work in conjunction with
"external"
> profile if I comment out this section in "external" profile
definition.
>
>
>
> 
>
> 
>
>   ibiblio.org
>
>   Maven Plugin Repository
>
>   default
>
>   http://www.ibiblio.org/maven2
>
>   
>
> interval:60
>
> false
>
>   
>
>   
>
> never
>
>   
>
>   
>
>
>
>
>
>
>
> Executing commands in webapp dir
>
>
>
> $mvn help:effective-settingprints "internal" is active.
>
>
>
> $mvn -Pexternal help:effective-settingprints "internal" is active
> again. <-  is this wrong? The book says that -P option should
overwrite
> active profile? When I build application I do see that external
profile
> is being used.
>
>
>
> Thanks
>
> Leonard
>
>
>
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: selecting active profiles and maven-help-plugin does not work as expected/configuring plugin-repository cauze plugin to be not executed?

2006-11-03 Thread Wayne Fay

Have you tried mvn -X ... to see additional debugging information? I'd
assume something is just not working right, and the stacktrace might
help you see/find it.

Wayne

On 11/3/06, Leonard Gestrin <[EMAIL PROTECTED]> wrote:

Hello,

I have the following setup:

1. Defined "internal" , "external" profiles  in settings.xml and set
"internal" as active.  "external" profile has plugin repository
configuration. (this play important role for some reason)

2. Defined "jsp-comp"  profile to activate jsp compilation for the build
in "compile" goal in parent-pom.xml

3, webapp pom.xml uses the parent pom.





$mvn -Pinternal, jsp-compile compile -  I can see that internal and
jsp-compile profiles are being used (jsps are compiled)



$mvn -Pexternal, jsp-compile compile -  I can see that external is used
but jsp-compile is ignored!. (jsps are not compiled)



Anybody has any clue why this might be the case?  Plugin "help" does not
seem to be helpful since it appears to simply print out settings.xml (or
it's portions) and can present flat pom.xml but seem to ignore
information in parent's pom.xml with respect to profiles.



I also noticed that jsp-compile does work in conjunction with "external"
profile if I comment out this section in "external" profile definition.







  ibiblio.org

  Maven Plugin Repository

  default

  http://www.ibiblio.org/maven2

  

interval:60

false

  

  

never

  

  







Executing commands in webapp dir



$mvn help:effective-settingprints "internal" is active.



$mvn -Pexternal help:effective-settingprints "internal" is active
again. <-  is this wrong? The book says that -P option should overwrite
active profile? When I build application I do see that external profile
is being used.



Thanks

Leonard







-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



selecting active profiles and maven-help-plugin does not work as expected/configuring plugin-repository cauze plugin to be not executed?

2006-11-03 Thread Leonard Gestrin
Hello,

I have the following setup:

1. Defined "internal" , "external" profiles  in settings.xml and set
"internal" as active.  "external" profile has plugin repository
configuration. (this play important role for some reason) 

2. Defined "jsp-comp"  profile to activate jsp compilation for the build
in "compile" goal in parent-pom.xml 

3, webapp pom.xml uses the parent pom.

 

 

$mvn -Pinternal, jsp-compile compile -  I can see that internal and
jsp-compile profiles are being used (jsps are compiled)

 

$mvn -Pexternal, jsp-compile compile -  I can see that external is used
but jsp-compile is ignored!. (jsps are not compiled)

 

Anybody has any clue why this might be the case?  Plugin "help" does not
seem to be helpful since it appears to simply print out settings.xml (or
it's portions) and can present flat pom.xml but seem to ignore
information in parent's pom.xml with respect to profiles.

 

I also noticed that jsp-compile does work in conjunction with "external"
profile if I comment out this section in "external" profile definition.

 





  ibiblio.org

  Maven Plugin Repository

  default

  http://www.ibiblio.org/maven2

  

interval:60

false

  

  

never

  

  

 

 

 

Executing commands in webapp dir

 

$mvn help:effective-settingprints "internal" is active.

 

$mvn -Pexternal help:effective-settingprints "internal" is active
again. <-  is this wrong? The book says that -P option should overwrite
active profile? When I build application I do see that external profile
is being used.

 

Thanks

Leonard

 



Maven help

2006-10-26 Thread kvmukund
 I am in the process of building an application using Maven2. After the 
build,the contents are transported to \build\output folder. The output folder 
contains a "bin" folder.
 
 My task is to move the "bin" folder into the user specified directory instead 
of build\output\bin. How do i accomplish this? Where i am to change the build 
configuration for this?
 
 I am using Maven ant run plugin.
Regards,
 Mukundhan
 mail to: [EMAIL PROTECTED]

Check Out the new free AIM(R) Mail -- 2 GB of storage and industry-leading spam 
and email virus protection.


[ANN] Maven Help Plugin 2.0.1 Released

2006-05-07 Thread Brett Porter

The Maven team is pleased to annonunce the release of the Maven Help
Plugin, version 2.0.1.

http://maven.apache.org/plugins/maven-help-plugin/

You can run mvn -U to get the latest version of the plugin.

Changes:
http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=11141&styleName=Html&version=12534

* [MPH-10] - NPE when -Dplugin value can not find specified plugin
* [MPH-11] - effective-settings shouldn't require a project

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [ANN] Maven Help Plugin 2.0 Released

2006-01-27 Thread Brian Bonner
Brett, thanks!  Just tried it and it works great!

Brian

On 1/24/06, Brett Porter <[EMAIL PROTECTED]> wrote:
> The Maven Help plugin provides goals aimed at helping to make sense out of
> the build environment. It includes the ability to view the effective
> POM and settings files, after inheritance and active profiles
> have been applied, as well as a describe a particular plugin goal to
> give usage information.
>
> eg.
> mvn help:describe -Dplugin=help
>
> NOTE: this plugin was formerly called the projecthelp plugin.
>
> - The Maven Team
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[ANN] Maven Help Plugin 2.0 Released

2006-01-24 Thread Brett Porter
The Maven Help plugin provides goals aimed at helping to make sense out of
the build environment. It includes the ability to view the effective
POM and settings files, after inheritance and active profiles
have been applied, as well as a describe a particular plugin goal to
give usage information.

eg.
mvn help:describe -Dplugin=help

NOTE: this plugin was formerly called the projecthelp plugin.

- The Maven Team


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven - help

2005-12-29 Thread Tim Kettler

Hi,

what do you want to do? Deploy the ear to your internal remote 
repository or deploy the ear to an application server?


If you want to deploy to your internal remote repository just do an 'mvn 
deploy'


-Tim

jagan t schrieb:

  Hi,

I tried for ear:deploy in maven in following 2 ways, but I am getting 
problem. Please help me. 


way 1:

C:\TF\maven-2.0.1-bin\maven-2.0.1\bin\my-app>mvn ear:deploy 
-DgroupId=com.mycomp

any.app -DartifactId=my-app
[INFO] Scanning for projects...
[INFO] Searching repository for plugin with prefix: 'ear'.
[INFO] 
-

---
[ERROR] BUILD FAILURE
[INFO] 
-

---
[INFO] Required goal not found: ear:deploy
[INFO] 
-

---
[INFO] For more information, run Maven with the -e switch
[INFO] 
-

---
[INFO] Total time: < 1 second
[INFO] Finished at: Thu Dec 29 16:09:54 GMT+05:30 2005
[INFO] Final Memory: 1M/3M
[INFO] 
-



way 2:



C:\TF\maven-2.0.1-bin\maven-2.0.1\bin\my-app>mvn ear:deploy
[INFO] Scanning for projects...
[INFO] Searching repository for plugin with prefix: 'ear'.
[INFO] 
-

---
[ERROR] BUILD FAILURE
[INFO] 
-

---
[INFO] Required goal not found: ear:deploy
[INFO] 
-

---
[INFO] For more information, run Maven with the -e switch
[INFO] 
-

---
[INFO] Total time: < 1 second
[INFO] Finished at: Thu Dec 29 16:11:00 GMT+05:30 2005
[INFO] Final Memory: 1M/3M
[INFO] 
-




Thanks & Regards
T.Jagan




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Maven - help

2005-12-29 Thread jagan t
  Hi,

I tried for ear:deploy in maven in following 2 ways, but I am getting 
problem. Please help me. 

way 1:

C:\TF\maven-2.0.1-bin\maven-2.0.1\bin\my-app>mvn ear:deploy 
-DgroupId=com.mycomp
any.app -DartifactId=my-app
[INFO] Scanning for projects...
[INFO] Searching repository for plugin with prefix: 'ear'.
[INFO] 
-
---
[ERROR] BUILD FAILURE
[INFO] 
-
---
[INFO] Required goal not found: ear:deploy
[INFO] 
-
---
[INFO] For more information, run Maven with the -e switch
[INFO] 
-
---
[INFO] Total time: < 1 second
[INFO] Finished at: Thu Dec 29 16:09:54 GMT+05:30 2005
[INFO] Final Memory: 1M/3M
[INFO] 
-


way 2:



C:\TF\maven-2.0.1-bin\maven-2.0.1\bin\my-app>mvn ear:deploy
[INFO] Scanning for projects...
[INFO] Searching repository for plugin with prefix: 'ear'.
[INFO] 
-
---
[ERROR] BUILD FAILURE
[INFO] 
-
---
[INFO] Required goal not found: ear:deploy
[INFO] 
-
---
[INFO] For more information, run Maven with the -e switch
[INFO] 
-
---
[INFO] Total time: < 1 second
[INFO] Finished at: Thu Dec 29 16:11:00 GMT+05:30 2005
[INFO] Final Memory: 1M/3M
[INFO] 
-



Thanks & Regards
T.Jagan


Re: [maven] help running webdoclet to generate web xmi files for Websphere please

2005-06-30 Thread Rod Coffin
Mick,
 You can use the webspherewebxml subtask to generate the ibm-web-bnd.xmi and 
ibm-web-ext.xmi files. Depending on whether you're using the XDoclet ant 
tasks directly or the maven-xdoclet-plugin you will need to either specify 
this subtask in your project.properties file or in your maven.xml. For more 
information see:
 
http://xdoclet.sourceforge.net/xdoclet/ant/xdoclet/modules/ibm/websphere/web/WebSphereWebXmlSubTask.html
 Rod Coffin
 On 6/29/05, Mick Knutson <[EMAIL PROTECTED]> wrote: 
> 
> I do not know anything about these xmi files or how to generate them with
> maven.
> Can someone help me with what I need to do to setup Maven, and what to
> decorate, if anything, so that I can generate these files based off my own
> web.xml file.
> Or do I need to also have webdoclet generate my web.xml as well.
> If so, how?
> 
> 
> 
> Thank You
> Mick Knutson
> 
> Sr. Java/J2EE Consultant
> BASE logic, inc.
> (415) 648-1804 (S.F., CA)
> http://www.BASELogic.com
> 
> HP Consulting Services (Walnut Creek, CA)
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
>


[maven] help running webdoclet to generate web xmi files for Websphere please

2005-06-29 Thread Mick Knutson
I do not know anything about these xmi files or how to generate them with 
maven.
Can someone help me with what I need to do to setup Maven, and what to 
decorate, if anything, so that I can generate these files based off my own 
web.xml file.

Or do I need to also have webdoclet generate my web.xml as well.
If so, how?



Thank You
Mick Knutson

Sr. Java/J2EE Consultant
BASE logic, inc.
(415) 648-1804 (S.F., CA)
http://www.BASELogic.com

HP Consulting Services (Walnut Creek, CA)



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven help for building 2 versions for a component build

2005-01-13 Thread Rick Mann
On Jan 13, 2005, at 10:30, Eric Pugh wrote:
You could, I guess..  Really though, what makes the two projects
different?
Well, I don't know about the original poster's situation, but we have 
an API in a JAR file that we give out for public use and that we use 
internally. However, the internal JAR includes a couple of additional 
class files that we don't want to distribute outside.

I haven't yet built this API with maven, and am not sure how I will. I 
guess the "right" way is to put the additional files in a new, separate 
project (meaning separate, parallel directory structure), and build it 
with a dependency on the public API. Just seems like a lot of work for 
a couple of classes...

--
Rick
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Maven help for building 2 versions for a component build

2005-01-13 Thread Eric Pugh
You could, I guess..  Really though, what makes the two projects
different?  How is version 1 versus version 2 different if they have the
same source etc?  Is it that they are two versions of the same codebase,
ergo two sets of tags in Source Control...   Or, is it one codebase that
is cut up and output as two separate artifacts.  Again, in that case,
you should make it two projects.

The second project.xml file might work, but when you start doing
cool/whacky tricks like that, you should go back to Ant..  Something at
somepoint in Maven land will get you when you try and do two
project.xml's..   

Eric

-Original Message-
From: Rick Mann [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 12, 2005 5:36 PM
To: Maven Users List
Subject: Re: Maven help for building 2 versions for a component build



On Jan 12, 2005, at 14:08, Eric Pugh wrote:

> It seems to me like you should have two versions tagged in CVS...
> Check
> out the version youw ant and build it..  Maven really encourages that
> you can only build one artifact per project...  One jar, one war,
> etc

Would it make sense to have a second project.xml file, that refers to 
the same sources as the first?


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven help for building 2 versions for a component build

2005-01-12 Thread Rick Mann
On Jan 12, 2005, at 14:08, Eric Pugh wrote:
It seems to me like you should have two versions tagged in CVS...  
Check
out the version youw ant and build it..  Maven really encourages that
you can only build one artifact per project...  One jar, one war,
etc
Would it make sense to have a second project.xml file, that refers to 
the same sources as the first?

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Maven help for building 2 versions for a component build

2005-01-12 Thread Eric Pugh
It seems to me like you should have two versions tagged in CVS...  Check
out the version youw ant and build it..  Maven really encourages that
you can only build one artifact per project...  One jar, one war,
etc

>From what you are doing, it sounds like you are mostly reinventing your
Ant build inside of maven..  What some folks do is their build in Ant,
but the site docs and reports via Maven.

ERic

-Original Message-
From: Salhotra, Aruneesh [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 11, 2005 3:44 PM
To: 'users@maven.apache.org'
Subject: Maven help for building 2 versions for a component build


Hi,
I have been using ANT for years now for building applications. I have
started to look at Maven for managability purposes.
 
I would like to know how can write a project.xml and maven.xml so as to
enable me to build 2 versions of a component, which currently I build by
running to 2 commands which internally call an ANT script.
 
This I foresee that I would have to pass version 1_0 and 2_0 as
arguments somehow to maven.xml.
 
Since I am using VSS as my source safe, I would like to stick to my ANT
structure for building. Aruneesh Salhotra
 
Release/Configuration Manager
Fatwire Corporation
Mineola, NY - 11501
(516) FAT-WIREX 326
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Maven help for building 2 versions for a component build

2005-01-11 Thread Salhotra, Aruneesh
Hi,
I have been using ANT for years now for building applications.
I have started to look at Maven for managability purposes.
 
I would like to know how can write a project.xml and maven.xml so as to
enable me to build 2 versions of a component, which currently I build by
running to 2 commands which internally call an ANT script.
 
This I foresee that I would have to pass version 1_0 and 2_0 as arguments
somehow to maven.xml.
 
Since I am using VSS as my source safe, I would like to stick to my ANT
structure for building.
Aruneesh Salhotra
 
Release/Configuration Manager
Fatwire Corporation
Mineola, NY - 11501
(516) FAT-WIREX 326
 


RE: Maven help

2003-06-16 Thread LAMY Olivier
Yes it is
Thanks a lot

-Message d'origine-
De : Cuong Tran [mailto:[EMAIL PROTECTED]
Envoye : mardi 17 juin 2003 07:42
A : Maven Users List; LAMY Olivier
Objet : Re: Maven help



 Isn't "maven -g" what you're looking for?

--- LAMY Olivier <[EMAIL PROTECTED]> wrote:
> Hi all,
> I'm looking the command to list of the goals.
> I can't find it.
> Olivier
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


=
Cuong Q. Tran <[EMAIL PROTECTED]>

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven help

2003-06-16 Thread Cuong Tran

 Isn't "maven -g" what you're looking for?

--- LAMY Olivier <[EMAIL PROTECTED]> wrote:
> Hi all,
> I'm looking the command to list of the goals.
> I can't find it.
> Olivier
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


=
Cuong Q. Tran <[EMAIL PROTECTED]>

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Maven help

2003-06-16 Thread S. Radhakrishnan
Hi Lamy
Have you tried "maven -g" to list all available goals..


RK

-Original Message-
From: LAMY Olivier [mailto:[EMAIL PROTECTED]
Sent: Tuesday, June 17, 2003 11:09 AM
To: Maven Users List (E-mail)
Subject: Maven help


Hi all,
I'm looking the command to list of the goals.
I can't find it.
Olivier

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: Maven help

2003-06-16 Thread Brett Porter
maven -g

LAMY Olivier wrote:
Hi all,
I'm looking the command to list of the goals.
I can't find it.
Olivier
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
--
Web Developer
f2 network ~ everything essential
02 8596 4437
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Maven help

2003-06-16 Thread LAMY Olivier
Hi all,
I'm looking the command to list of the goals.
I can't find it.
Olivier

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]