Brett Porter (JIRA | 1 Sep 2011 03:20

[jira] Moved: (MOJO-1733) Cannot get chronos-maven-plugin to work. mojo-sandbox:5-SNAPSHOT.pom cannot be found


     [
https://jira.codehaus.org/browse/MOJO-1733?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brett Porter moved MSANDBOX-50 to MOJO-1733:
--------------------------------------------

     Complexity: Intermediate
    Component/s:     (was: maven-pom-plugin)
                 chronos
            Key: MOJO-1733  (was: MSANDBOX-50)
        Project: Mojo  (was: Maven 2.x Sandbox)

> Cannot get chronos-maven-plugin to work. mojo-sandbox:5-SNAPSHOT.pom cannot be found
> ------------------------------------------------------------------------------------
>
>                 Key: MOJO-1733
>                 URL: https://jira.codehaus.org/browse/MOJO-1733
>             Project: Mojo
>          Issue Type: Bug
>          Components: chronos
>         Environment: windows, maven 2, jmeter 2.4
>            Reporter: Simon Kofod
>
> I've created a java project based on maven and the documentation found here: 
> http://mojo.codehaus.org/chronos-maven-plugin/usage.html
> When I run maven I get the following error after maven has tried to download mojo-sandbox-5-snapshot.pom
from different locations:
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
(Continue reading)

Krzysztof Krason (JIRA | 1 Sep 2011 12:17

[jira] Created: (MOJO-1734) stopOnFailed doesn't work

stopOnFailed doesn't work
-------------------------

                 Key: MOJO-1734
                 URL: https://jira.codehaus.org/browse/MOJO-1734
             Project: Mojo
          Issue Type: Bug
          Components: chronos
    Affects Versions: chronos-maven-plugin-1.0
            Reporter: Krzysztof Krason
            Assignee: Kent Soelvsten

stopOnFailed option doesn't fail the build if there are errors in jmeter

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email

Markus (JIRA | 1 Sep 2011 18:34

[jira] Created: (MEXEC-98) "object is not an instance of declaring class" error

"object is not an instance of declaring class" error
----------------------------------------------------

                 Key: MEXEC-98
                 URL: https://jira.codehaus.org/browse/MEXEC-98
             Project: Maven 2.x Exec Plugin
          Issue Type: Bug
            Reporter: Markus

I got this error when using the exec:java mojo. An other people as well:
http://mail-archives.apache.org/mod_mbox/incubator-clerezza-dev/201006.mbox/%3C4C162860.5050307 <at> 4sengines.com%3E

The reason is that I only wrote "public void main(String[] args)" and forgot the static. However, this
silly error message is due to a bug in ExecJavaMojo.java line 291:
main.invoke( main, new Object[]{arguments} );

it should say:
main.invoke( null, new Object[]{arguments} );

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email

Robert Scholte (JIRA | 1 Sep 2011 18:42

[jira] Assigned: (MEXEC-88) ExecMojo: SuccessCodes config seems not to be recognized by commons exec framework


     [
https://jira.codehaus.org/browse/MEXEC-88?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Robert Scholte reassigned MEXEC-88:
-----------------------------------

    Assignee: Robert Scholte

> ExecMojo: SuccessCodes config seems not to be recognized by commons exec framework
> ----------------------------------------------------------------------------------
>
>                 Key: MEXEC-88
>                 URL: https://jira.codehaus.org/browse/MEXEC-88
>             Project: Maven 2.x Exec Plugin
>          Issue Type: Bug
>          Components: exec
>    Affects Versions: 1.2
>            Reporter: Daniel Strassenburg
>            Assignee: Robert Scholte
>            Priority: Blocker
>         Attachments: ExecMojo.java.patch, MEXEC-88.patch
>
>
> I used the successCodes config to tell the exec-mojo not to fail in case of error codes e.g. 0,1,2,3.
Unfortunately, the maven build fails with the exception below.
> Excerpt from mojo config:
> {noformat}
> [DEBUG]   (f) basedir = build/basedir
> [DEBUG]   (f) classpathScope = runtime
(Continue reading)

Robert Scholte (JIRA | 1 Sep 2011 19:54

[jira] Closed: (MEXEC-88) ExecMojo: SuccessCodes config seems not to be recognized by commons exec framework


     [
https://jira.codehaus.org/browse/MEXEC-88?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Robert Scholte closed MEXEC-88.
-------------------------------

       Resolution: Fixed
    Fix Version/s: 1.2.1

Fixed in [rev. 14643|http://fisheye.codehaus.org/changelog/mojo/?cs=14643]
I've refactored the Test to an integration-test.
Thanks for the patch!

> ExecMojo: SuccessCodes config seems not to be recognized by commons exec framework
> ----------------------------------------------------------------------------------
>
>                 Key: MEXEC-88
>                 URL: https://jira.codehaus.org/browse/MEXEC-88
>             Project: Maven 2.x Exec Plugin
>          Issue Type: Bug
>          Components: exec
>    Affects Versions: 1.2
>            Reporter: Daniel Strassenburg
>            Assignee: Robert Scholte
>            Priority: Blocker
>             Fix For: 1.2.1
>
>         Attachments: ExecMojo.java.patch, MEXEC-88.patch
>
(Continue reading)

Robert Scholte (JIRA | 1 Sep 2011 20:16

[jira] Created: (MEXEC-99) Use int[] instead of java.util.List for successCodes

Use int[] instead of java.util.List for successCodes
----------------------------------------------------

                 Key: MEXEC-99
                 URL: https://jira.codehaus.org/browse/MEXEC-99
             Project: Maven 2.x Exec Plugin
          Issue Type: Improvement
          Components: exec
    Affects Versions: 1.2
            Reporter: Robert Scholte
            Priority: Minor

With successCodes as a List we have to do the parsing/casting within the plugin. By using and int-array for
the successCodes (as the {{Executor}} expects them) we can let Plexus do the casting.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email

Robert Scholte (JIRA | 1 Sep 2011 20:45

[jira] Closed: (MEXEC-99) Use int[] instead of java.util.List for successCodes


     [
https://jira.codehaus.org/browse/MEXEC-99?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Robert Scholte closed MEXEC-99.
-------------------------------

       Resolution: Fixed
    Fix Version/s: 1.2.1
         Assignee: Robert Scholte

Fixed in [rev. 14644|http://fisheye.codehaus.org/changelog/mojo/?cs=14644]

> Use int[] instead of java.util.List for successCodes
> ----------------------------------------------------
>
>                 Key: MEXEC-99
>                 URL: https://jira.codehaus.org/browse/MEXEC-99
>             Project: Maven 2.x Exec Plugin
>          Issue Type: Improvement
>          Components: exec
>    Affects Versions: 1.2
>            Reporter: Robert Scholte
>            Assignee: Robert Scholte
>            Priority: Minor
>             Fix For: 1.2.1
>
>
> With successCodes as a List we have to do the parsing/casting within the plugin. By using and int-array for
the successCodes (as the {{Executor}} expects them) we can let Plexus do the casting.
(Continue reading)

Robert Scholte | 1 Sep 2011 22:08
Gravatar

RE: [VOTE] Javier Murciego as commiter] WAS: [mojo-dev] Commiter access

+1
 
> Date: Wed, 31 Aug 2011 10:47:42 +0200
> From: chemit <at> codelutin.com
> CC: dev <at> mojo.codehaus.org
> Subject: Re: [mojo-dev] [VOTE] Javier Murciego as commiter] WAS: [mojo-dev] Commiter access
>
> On Wed, 31 Aug 2011 00:54:05 +0200
> David Karlsen <davidkarlsen <at> gmail.com> wrote:
>
> +1
>
> Tony.
>
> > Nothing really reached my repo.
> > Javier have been working on some local patches.
> > I've locked myself out from the codehaus (I've changed email address
> > - and the old one is no longer active) - and I'm no longer (luckily)
> > working on WAS any longer (but I would appreciate if somebody could
> > change my email address in the haus so I can get back in on other
> > stuff).
> >
> > I've asked Javier to check out the rules of the house and follow the
> > development guidelines - which he has as far as I can see - so I
> > suggest rolling a vote for Javier.
> >
> > My +1.
> >
> > 2011/8/24 Mark Struberg <struberg <at> yahoo.de>
> >
> > > +1
> > >
> > > David should start a vote.
> > > A link to the github repo would also beneficial ;)
> > >
> > > txs and LieGrue,
> > > strub
> > > --- On Tue, 8/23/11, Anders Hammar <anders <at> hammar.net> wrote:
> > >
> > > > From: Anders Hammar <anders <at> hammar.net>
> > > > Subject: Re: [mojo-dev] Commiter access
> > > > To: dev <at> mojo.codehaus.org
> > > > Date: Tuesday, August 23, 2011, 6:20 AM
> > > > I think the proper way here is for
> > > > David to start a vote. But someone
> > > > more senior here may need to correct me.
> > > >
> > > > /Anders
> > > >
> > > > On Tue, Aug 23, 2011 at 08:10, Javier Murciego
> > > > <javier.murciego <at> gmail.com>
> > > > wrote:
> > > > > Hi,
> > > > > I'd like to get commiter access to Codehaus Mojo, in
> > > > order to colaborate on
> > > > > WAS6 plugins. I've been collaborating with David
> > > > Karlsen solving bugs
> > > > > through a copy of WAS6 plugin on github
> > > > > (https://github.com/davidkarlsen/mojo) but
> > > > both of us think that is better
> > > > > to work directly on codehaus project.
> > > > > Best regards
> > > > > http://www.linkedin.com/profile/view?id=62545889&trk=tab_pro
> > > > > https://github.com/jmurciego
> > > > >
> > > >
> > > > ---------------------------------------------------------------------
> > > > To unsubscribe from this list, please visit:
> > > >
> > > > http://xircles.codehaus.org/manage_email
> > > >
> > > >
> > > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe from this list, please visit:
> > >
> > > http://xircles.codehaus.org/manage_email
> > >
> > >
> > >
> >
> >
>
>
>
> --
> Tony Chemit
> --------------------
> tél: +33 (0) 2 40 50 29 28
> email: chemit <at> codelutin.com
> http://www.codelutin.com
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
> http://xircles.codehaus.org/manage_email
>
>
Robert Scholte (JIRA | 1 Sep 2011 22:18

[jira] Closed: (MEXEC-98) "object is not an instance of declaring class" error


     [
https://jira.codehaus.org/browse/MEXEC-98?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Robert Scholte closed MEXEC-98.
-------------------------------

       Resolution: Fixed
    Fix Version/s: 1.2.1
         Assignee: Robert Scholte

Fixed in [rev. 14645|http://fisheye.codehaus.org/changelog/mojo/?cs=14645]
I've added a check if the main method is static. If not, throw an exception with a proper message.

> "object is not an instance of declaring class" error
> ----------------------------------------------------
>
>                 Key: MEXEC-98
>                 URL: https://jira.codehaus.org/browse/MEXEC-98
>             Project: Maven 2.x Exec Plugin
>          Issue Type: Bug
>            Reporter: Markus
>            Assignee: Robert Scholte
>             Fix For: 1.2.1
>
>
> I got this error when using the exec:java mojo. An other people as well:
> http://mail-archives.apache.org/mod_mbox/incubator-clerezza-dev/201006.mbox/%3C4C162860.5050307 <at> 4sengines.com%3E
> The reason is that I only wrote "public void main(String[] args)" and forgot the static. However, this
silly error message is due to a bug in ExecJavaMojo.java line 291:
> main.invoke( main, new Object[]{arguments} );
> it should say:
> main.invoke( null, new Object[]{arguments} );

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email

Robert Scholte (JIRA | 1 Sep 2011 22:47

[jira] Closed: (MEXEC-97) The POMs for the manual test projects are inconsistently named


     [
https://jira.codehaus.org/browse/MEXEC-97?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Robert Scholte closed MEXEC-97.
-------------------------------

    Resolution: Won't Fix

Manual tests? No, those tests need to be refactored to integration tests. See MEXEC-77.

> The POMs for the manual test projects are inconsistently named
> --------------------------------------------------------------
>
>                 Key: MEXEC-97
>                 URL: https://jira.codehaus.org/browse/MEXEC-97
>             Project: Maven 2.x Exec Plugin
>          Issue Type: Improvement
>          Components: exec
>    Affects Versions: 1.2
>            Reporter: Siegfried Goeschl
>            Priority: Trivial
>
> The artifactIds and name of the manual test projects are inconsistent (e.g. duplicate artifiactId) -
nothing critical but I had a look at creating a parent pom for those manual test project in order to run them
all and Maven complained.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Gmane