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@redhat.com ReportedBy: puntogil@libero.it QAContact: extras-qa@fedoraproject.org CC: akurtako@redhat.com, java-sig-commits@lists.fedoraproject.org, rkennke@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:
Product: Fedora https://bugzilla.redhat.com/show_bug.cgi?id=810566
gil cattaneo puntogil@libero.it changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |CLOSED Resolution|--- |RAWHIDE Last Closed| |2013-04-21 12:45:11
java-sig-commits@lists.fedoraproject.org