You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-dev@portals.apache.org by "Eric Dalquist (JIRA)" <ji...@apache.org> on 2007/11/29 17:36:50 UTC

[jira] Created: (PLUTO-447) Old version of junit included via commons-cli in pluto-util

Old version of junit included via commons-cli in pluto-util
-----------------------------------------------------------

                 Key: PLUTO-447
                 URL: https://issues.apache.org/jira/browse/PLUTO-447
             Project: Pluto
          Issue Type: Bug
          Components: build system
    Affects Versions: 1.1.4
            Reporter: Eric Dalquist


The commons-cli dependency in pluto-util includes an old (3.7) version of JUnit as a transitive dependency.

Adding the following to the commons-cli dependency in the pluto-util pom.xml fixes the problem:

      <exclusions>
        <exclusion>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
        </exclusion>
      </exclusions>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PLUTO-447) Old version of junit included via commons-cli in pluto-util

Posted by "Craig Doremus (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PLUTO-447?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12552093 ] 

Craig Doremus commented on PLUTO-447:
-------------------------------------

Applied patch to 1.1-286-trunk-merge branch. Thanks Eric!

> Old version of junit included via commons-cli in pluto-util
> -----------------------------------------------------------
>
>                 Key: PLUTO-447
>                 URL: https://issues.apache.org/jira/browse/PLUTO-447
>             Project: Pluto
>          Issue Type: Bug
>          Components: build system
>    Affects Versions: 1.1.4
>            Reporter: Eric Dalquist
>            Assignee: Elliot Metsger
>             Fix For: 1.2.0, 1.1.5
>
>
> The commons-cli dependency in pluto-util includes an old (3.7) version of JUnit as a transitive dependency.
> Adding the following to the commons-cli dependency in the pluto-util pom.xml fixes the problem:
>       <exclusions>
>         <exclusion>
>           <groupId>junit</groupId>
>           <artifactId>junit</artifactId>
>         </exclusion>
>       </exclusions>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PLUTO-447) Old version of junit included via commons-cli in pluto-util

Posted by "Craig Doremus (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PLUTO-447?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12552164 ] 

Craig Doremus commented on PLUTO-447:
-------------------------------------

Added junit dependancy to pluto-ant-tasks/pom.xml as suggested by Elliot in SVN rev 604554. Thanks Elliot!

> Old version of junit included via commons-cli in pluto-util
> -----------------------------------------------------------
>
>                 Key: PLUTO-447
>                 URL: https://issues.apache.org/jira/browse/PLUTO-447
>             Project: Pluto
>          Issue Type: Bug
>          Components: build system
>    Affects Versions: 1.1.4
>            Reporter: Eric Dalquist
>            Assignee: Elliot Metsger
>             Fix For: 1.2.0, 1.1.5
>
>
> The commons-cli dependency in pluto-util includes an old (3.7) version of JUnit as a transitive dependency.
> Adding the following to the commons-cli dependency in the pluto-util pom.xml fixes the problem:
>       <exclusions>
>         <exclusion>
>           <groupId>junit</groupId>
>           <artifactId>junit</artifactId>
>         </exclusion>
>       </exclusions>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Reopened: (PLUTO-447) Old version of junit included via commons-cli in pluto-util

Posted by "Elliot Metsger (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PLUTO-447?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Elliot Metsger reopened PLUTO-447:
----------------------------------


> Old version of junit included via commons-cli in pluto-util
> -----------------------------------------------------------
>
>                 Key: PLUTO-447
>                 URL: https://issues.apache.org/jira/browse/PLUTO-447
>             Project: Pluto
>          Issue Type: Bug
>          Components: build system
>    Affects Versions: 1.1.4
>            Reporter: Eric Dalquist
>            Assignee: Elliot Metsger
>             Fix For: 1.2.0, 1.1.5
>
>
> The commons-cli dependency in pluto-util includes an old (3.7) version of JUnit as a transitive dependency.
> Adding the following to the commons-cli dependency in the pluto-util pom.xml fixes the problem:
>       <exclusions>
>         <exclusion>
>           <groupId>junit</groupId>
>           <artifactId>junit</artifactId>
>         </exclusion>
>       </exclusions>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (PLUTO-447) Old version of junit included via commons-cli in pluto-util

Posted by "Elliot Metsger (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PLUTO-447?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Elliot Metsger updated PLUTO-447:
---------------------------------

    Fix Version/s: 1.1.5

> Old version of junit included via commons-cli in pluto-util
> -----------------------------------------------------------
>
>                 Key: PLUTO-447
>                 URL: https://issues.apache.org/jira/browse/PLUTO-447
>             Project: Pluto
>          Issue Type: Bug
>          Components: build system
>    Affects Versions: 1.1.4
>            Reporter: Eric Dalquist
>            Assignee: Elliot Metsger
>             Fix For: 1.1.5
>
>
> The commons-cli dependency in pluto-util includes an old (3.7) version of JUnit as a transitive dependency.
> Adding the following to the commons-cli dependency in the pluto-util pom.xml fixes the problem:
>       <exclusions>
>         <exclusion>
>           <groupId>junit</groupId>
>           <artifactId>junit</artifactId>
>         </exclusion>
>       </exclusions>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (PLUTO-447) Old version of junit included via commons-cli in pluto-util

Posted by "Elliot Metsger (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PLUTO-447?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Elliot Metsger resolved PLUTO-447.
----------------------------------

    Resolution: Fixed

Committed in 1.1.x branch r599697

> Old version of junit included via commons-cli in pluto-util
> -----------------------------------------------------------
>
>                 Key: PLUTO-447
>                 URL: https://issues.apache.org/jira/browse/PLUTO-447
>             Project: Pluto
>          Issue Type: Bug
>          Components: build system
>    Affects Versions: 1.1.4
>            Reporter: Eric Dalquist
>            Assignee: Elliot Metsger
>             Fix For: 1.1.5
>
>
> The commons-cli dependency in pluto-util includes an old (3.7) version of JUnit as a transitive dependency.
> Adding the following to the commons-cli dependency in the pluto-util pom.xml fixes the problem:
>       <exclusions>
>         <exclusion>
>           <groupId>junit</groupId>
>           <artifactId>junit</artifactId>
>         </exclusion>
>       </exclusions>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (PLUTO-447) Old version of junit included via commons-cli in pluto-util

Posted by "Elliot Metsger (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PLUTO-447?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Elliot Metsger resolved PLUTO-447.
----------------------------------

    Resolution: Fixed

> Old version of junit included via commons-cli in pluto-util
> -----------------------------------------------------------
>
>                 Key: PLUTO-447
>                 URL: https://issues.apache.org/jira/browse/PLUTO-447
>             Project: Pluto
>          Issue Type: Bug
>          Components: build system
>    Affects Versions: 1.1.4
>            Reporter: Eric Dalquist
>            Assignee: Elliot Metsger
>             Fix For: 1.2.0, 1.1.5
>
>
> The commons-cli dependency in pluto-util includes an old (3.7) version of JUnit as a transitive dependency.
> Adding the following to the commons-cli dependency in the pluto-util pom.xml fixes the problem:
>       <exclusions>
>         <exclusion>
>           <groupId>junit</groupId>
>           <artifactId>junit</artifactId>
>         </exclusion>
>       </exclusions>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (PLUTO-447) Old version of junit included via commons-cli in pluto-util

Posted by "Elliot Metsger (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PLUTO-447?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Elliot Metsger updated PLUTO-447:
---------------------------------

    Fix Version/s: 1.2.0

> Old version of junit included via commons-cli in pluto-util
> -----------------------------------------------------------
>
>                 Key: PLUTO-447
>                 URL: https://issues.apache.org/jira/browse/PLUTO-447
>             Project: Pluto
>          Issue Type: Bug
>          Components: build system
>    Affects Versions: 1.1.4
>            Reporter: Eric Dalquist
>            Assignee: Elliot Metsger
>             Fix For: 1.2.0, 1.1.5
>
>
> The commons-cli dependency in pluto-util includes an old (3.7) version of JUnit as a transitive dependency.
> Adding the following to the commons-cli dependency in the pluto-util pom.xml fixes the problem:
>       <exclusions>
>         <exclusion>
>           <groupId>junit</groupId>
>           <artifactId>junit</artifactId>
>         </exclusion>
>       </exclusions>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (PLUTO-447) Old version of junit included via commons-cli in pluto-util

Posted by "Elliot Metsger (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PLUTO-447?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Elliot Metsger reassigned PLUTO-447:
------------------------------------

    Assignee: Elliot Metsger

> Old version of junit included via commons-cli in pluto-util
> -----------------------------------------------------------
>
>                 Key: PLUTO-447
>                 URL: https://issues.apache.org/jira/browse/PLUTO-447
>             Project: Pluto
>          Issue Type: Bug
>          Components: build system
>    Affects Versions: 1.1.4
>            Reporter: Eric Dalquist
>            Assignee: Elliot Metsger
>             Fix For: 1.1.5
>
>
> The commons-cli dependency in pluto-util includes an old (3.7) version of JUnit as a transitive dependency.
> Adding the following to the commons-cli dependency in the pluto-util pom.xml fixes the problem:
>       <exclusions>
>         <exclusion>
>           <groupId>junit</groupId>
>           <artifactId>junit</artifactId>
>         </exclusion>
>       </exclusions>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PLUTO-447) Old version of junit included via commons-cli in pluto-util

Posted by "Elliot Metsger (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PLUTO-447?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12552142 ] 

Elliot Metsger commented on PLUTO-447:
--------------------------------------

Craig, just in case you didn't see this: http://svn.apache.org/viewvc?view=rev&revision=599700  You'll need to update the pluto-ant-tasks/pom.xml as well, adding back in the JUnit dep.


> Old version of junit included via commons-cli in pluto-util
> -----------------------------------------------------------
>
>                 Key: PLUTO-447
>                 URL: https://issues.apache.org/jira/browse/PLUTO-447
>             Project: Pluto
>          Issue Type: Bug
>          Components: build system
>    Affects Versions: 1.1.4
>            Reporter: Eric Dalquist
>            Assignee: Elliot Metsger
>             Fix For: 1.2.0, 1.1.5
>
>
> The commons-cli dependency in pluto-util includes an old (3.7) version of JUnit as a transitive dependency.
> Adding the following to the commons-cli dependency in the pluto-util pom.xml fixes the problem:
>       <exclusions>
>         <exclusion>
>           <groupId>junit</groupId>
>           <artifactId>junit</artifactId>
>         </exclusion>
>       </exclusions>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.