[java-sig-commits] [Bug 810566] New: invalid cglib groupId in mockito core pom

bugzilla at redhat.com bugzilla at redhat.com
Fri Apr 6 18:08:09 UTC 2012


Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: invalid cglib groupId in mockito core pom

https://bugzilla.redhat.com/show_bug.cgi?id=810566

           Summary: invalid cglib groupId in mockito core pom
           Product: Fedora
           Version: rawhide
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: unspecified
          Priority: unspecified
         Component: mockito
        AssignedTo: rkennke at redhat.com
        ReportedBy: puntogil at libero.it
         QAContact: extras-qa at fedoraproject.org
                CC: akurtako at redhat.com,
                    java-sig-commits at lists.fedoraproject.org,
                    rkennke at redhat.com
    Classification: Fedora
      Story Points: ---
              Type: Bug
        Regression: ---
        Mount Type: ---
     Documentation: ---


Description of problem:

invalid cglib groupId in mockito core pom
Version-Release number of selected component (if applicable):
mockito-1.9.0-3

How reproducible:
actual cglib depmap
<dependency>
    <maven>
        <groupId>net.sf.cglib</groupId>
        <artifactId>cglib</artifactId>
        <version>2.2</version>
    </maven>
    <jpp>
        <groupId>JPP</groupId>
        <artifactId>cglib</artifactId>
        <version>2.2</version>
    </jpp>
</dependency>

Steps to Reproduce:
1.
2.
3.

Actual results:


Expected results:
please change <groupId>cglib</groupId> in <groupId>net.sf.cglib</groupId>
in mockito-1.9.0/maven/mockito-core.pom

now the pom is 

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd ">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.mockito</groupId>
    <artifactId>mockito-core</artifactId>
    <version>@version@</version>
    <name>Mockito</name>
    <url>http://www.mockito.org</url>
    <description>Mock objects library for java</description>
    <licenses>
        <license>
            <name>The MIT License</name>
            <url>http://code.google.com/p/mockito/wiki/License</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <scm>
        <url>http://code.google.com/p/mockito/source/browse/</url>
    </scm>
    <dependencies>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-core</artifactId>
            <version>1.1</version>
        </dependency>
        <dependency>
            <groupId>org.objenesis</groupId>
            <artifactId>objenesis</artifactId>
            <version>1.0</version>        
        </dependency>
        <dependency>
            <groupId>cglib</groupId>
            <artifactId>cglib</artifactId>
            <version>2.2</version>        
        </dependency>
    </dependencies>

</project>

Additional info:

-- 
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


More information about the java-sig-commits mailing list