You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "Matt Raible (JIRA)" <ji...@codehaus.org> on 2005/10/21 15:25:11 UTC

[jira] Created: (MEV-132) iBATIS POMs need some work - sqlmaps doesn't depend on common

iBATIS POMs need some work - sqlmaps doesn't depend on common
-------------------------------------------------------------

         Key: MEV-132
         URL: http://jira.codehaus.org/browse/MEV-132
     Project: Maven Evangelism
        Type: Bug
 Reporter: Matt Raible


ibatis2-sqlmap should depend on ibatis2-common both don't have to be specified.  Also, why are avalon-framework and logkit required (they shouldn't be IMO).  Another wierd thing is when I replace Hibernate with iBATIS, I have to include commons-logging (even though it's required by Spring).

    <dependency>
            <artifactId>ibatis2-sqlmap</artifactId>
            <groupId>com.ibatis</groupId>
            <version>2.1.5.582</version>
            <exclusions>
                <exclusion>
                    <artifactId>avalon-framework</artifactId>
                    <groupId>avalon-framework</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>logkit</artifactId>
                    <groupId>logkit</groupId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <artifactId>ibatis2-common</artifactId>
            <groupId>com.ibatis</groupId>
            <version>2.1.5.582</version>
            <exclusions>
                <exclusion>
                    <artifactId>avalon-framework</artifactId>
                    <groupId>avalon-framework</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>logkit</artifactId>
                    <groupId>logkit</groupId>
                </exclusion>
            </exclusions>
        </dependency>
        <!-- For some reason, removing Hibernate requires commons-logging -->
        <dependency>
            <artifactId>commons-logging</artifactId>
            <groupId>commons-logging</groupId>
            <version>1.0.4</version>
        </dependency>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Closed: (MEV-132) iBATIS POMs need some work - sqlmaps doesn't depend on common

Posted by "Edwin Punzalan (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MEV-132?page=all ]
     
Edwin Punzalan closed MEV-132:
------------------------------

    Resolution: Fixed

Fixed.

NOTE: May take up to 4 hours for the fix to be cascaded to central repo.

> iBATIS POMs need some work - sqlmaps doesn't depend on common
> -------------------------------------------------------------
>
>          Key: MEV-132
>          URL: http://jira.codehaus.org/browse/MEV-132
>      Project: Maven Evangelism
>         Type: Bug
>     Reporter: Matt Raible
>     Assignee: Edwin Punzalan

>
>
> ibatis2-sqlmap should depend on ibatis2-common both don't have to be specified.  Also, why are avalon-framework and logkit required (they shouldn't be IMO).  Another wierd thing is when I replace Hibernate with iBATIS, I have to include commons-logging (even though it's required by Spring).
>     <dependency>
>             <artifactId>ibatis2-sqlmap</artifactId>
>             <groupId>com.ibatis</groupId>
>             <version>2.1.5.582</version>
>             <exclusions>
>                 <exclusion>
>                     <artifactId>avalon-framework</artifactId>
>                     <groupId>avalon-framework</groupId>
>                 </exclusion>
>                 <exclusion>
>                     <artifactId>logkit</artifactId>
>                     <groupId>logkit</groupId>
>                 </exclusion>
>             </exclusions>
>         </dependency>
>         <dependency>
>             <artifactId>ibatis2-common</artifactId>
>             <groupId>com.ibatis</groupId>
>             <version>2.1.5.582</version>
>             <exclusions>
>                 <exclusion>
>                     <artifactId>avalon-framework</artifactId>
>                     <groupId>avalon-framework</groupId>
>                 </exclusion>
>                 <exclusion>
>                     <artifactId>logkit</artifactId>
>                     <groupId>logkit</groupId>
>                 </exclusion>
>             </exclusions>
>         </dependency>
>         <!-- For some reason, removing Hibernate requires commons-logging -->
>         <dependency>
>             <artifactId>commons-logging</artifactId>
>             <groupId>commons-logging</groupId>
>             <version>1.0.4</version>
>         </dependency>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Commented: (MEV-132) iBATIS POMs need some work - sqlmaps doesn't depend on common

Posted by "Carlos Sanchez (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MEV-132?page=comments#action_49854 ] 

Carlos Sanchez commented on MEV-132:
------------------------------------

Right pom for ibatis2-sqlmap 2.1.5.582

<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.ibatis</groupId>
  <artifactId>ibatis2-sqlmap</artifactId>
  <version>2.1.5.582</version>
  <dependencies>
    <dependency>
      <groupId>com.ibatis</groupId>
      <artifactId>ibatis2-common</artifactId>
      <version>2.1.5.582</version>
    </dependency>
  </dependencies>
</project>

The other problems are already in other issues

> iBATIS POMs need some work - sqlmaps doesn't depend on common
> -------------------------------------------------------------
>
>          Key: MEV-132
>          URL: http://jira.codehaus.org/browse/MEV-132
>      Project: Maven Evangelism
>         Type: Bug
>     Reporter: Matt Raible

>
>
> ibatis2-sqlmap should depend on ibatis2-common both don't have to be specified.  Also, why are avalon-framework and logkit required (they shouldn't be IMO).  Another wierd thing is when I replace Hibernate with iBATIS, I have to include commons-logging (even though it's required by Spring).
>     <dependency>
>             <artifactId>ibatis2-sqlmap</artifactId>
>             <groupId>com.ibatis</groupId>
>             <version>2.1.5.582</version>
>             <exclusions>
>                 <exclusion>
>                     <artifactId>avalon-framework</artifactId>
>                     <groupId>avalon-framework</groupId>
>                 </exclusion>
>                 <exclusion>
>                     <artifactId>logkit</artifactId>
>                     <groupId>logkit</groupId>
>                 </exclusion>
>             </exclusions>
>         </dependency>
>         <dependency>
>             <artifactId>ibatis2-common</artifactId>
>             <groupId>com.ibatis</groupId>
>             <version>2.1.5.582</version>
>             <exclusions>
>                 <exclusion>
>                     <artifactId>avalon-framework</artifactId>
>                     <groupId>avalon-framework</groupId>
>                 </exclusion>
>                 <exclusion>
>                     <artifactId>logkit</artifactId>
>                     <groupId>logkit</groupId>
>                 </exclusion>
>             </exclusions>
>         </dependency>
>         <!-- For some reason, removing Hibernate requires commons-logging -->
>         <dependency>
>             <artifactId>commons-logging</artifactId>
>             <groupId>commons-logging</groupId>
>             <version>1.0.4</version>
>         </dependency>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Commented: (MEV-132) iBATIS POMs need some work - sqlmaps doesn't depend on common

Posted by "Matt Raible (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MEV-132?page=comments#action_48989 ] 

Matt Raible commented on MEV-132:
---------------------------------

Sorry, forgot to select Invalid POM as the component.

> iBATIS POMs need some work - sqlmaps doesn't depend on common
> -------------------------------------------------------------
>
>          Key: MEV-132
>          URL: http://jira.codehaus.org/browse/MEV-132
>      Project: Maven Evangelism
>         Type: Bug
>     Reporter: Matt Raible

>
>
> ibatis2-sqlmap should depend on ibatis2-common both don't have to be specified.  Also, why are avalon-framework and logkit required (they shouldn't be IMO).  Another wierd thing is when I replace Hibernate with iBATIS, I have to include commons-logging (even though it's required by Spring).
>     <dependency>
>             <artifactId>ibatis2-sqlmap</artifactId>
>             <groupId>com.ibatis</groupId>
>             <version>2.1.5.582</version>
>             <exclusions>
>                 <exclusion>
>                     <artifactId>avalon-framework</artifactId>
>                     <groupId>avalon-framework</groupId>
>                 </exclusion>
>                 <exclusion>
>                     <artifactId>logkit</artifactId>
>                     <groupId>logkit</groupId>
>                 </exclusion>
>             </exclusions>
>         </dependency>
>         <dependency>
>             <artifactId>ibatis2-common</artifactId>
>             <groupId>com.ibatis</groupId>
>             <version>2.1.5.582</version>
>             <exclusions>
>                 <exclusion>
>                     <artifactId>avalon-framework</artifactId>
>                     <groupId>avalon-framework</groupId>
>                 </exclusion>
>                 <exclusion>
>                     <artifactId>logkit</artifactId>
>                     <groupId>logkit</groupId>
>                 </exclusion>
>             </exclusions>
>         </dependency>
>         <!-- For some reason, removing Hibernate requires commons-logging -->
>         <dependency>
>             <artifactId>commons-logging</artifactId>
>             <groupId>commons-logging</groupId>
>             <version>1.0.4</version>
>         </dependency>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org