|
From: SourceForge.net <no...@so...> - 2009-03-31 12:17:56
|
Feature Requests item #2711629, was opened at 2009-03-25 11:08 Message generated for change (Comment added) made by mustaghattack You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2711629&group_id=130558 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Stevo Slavic (sslavic) Assigned to: Nobody/Anonymous (nobody) Summary: Deploy Cobertura 1.9.1 release on Maven central repository Initial Comment: Please deploy Cobertura 1.9.1 release on Maven central repository. It would be nice to have this task as part of the Cobertura release process in future too. ---------------------------------------------------------------------- Comment By: Bruno Bieth (mustaghattack) Date: 2009-03-31 12:17 Message: I've added 1.9.1 in my enterprise repository. I've used the following pom : <?xml version="1.0" ?> <project> <modelVersion>4.0.0</modelVersion> <groupId>net.sourceforge.cobertura</groupId> <artifactId>cobertura</artifactId> <version>1.9.1</version> <name>Cobertura</name> <description> Cobertura is a free Java tool that calculates the percentage of code accessed by tests. It can be used to identify which parts of your Java program are lacking test coverage. It is based on jcoverage. </description> <url>http://cobertura.sourceforge.net</url> <licenses> <license> <name>The GNU General Public License, Version 2</name> <url>http://www.gnu.org/licenses/gpl.txt</url> <distribution>repo</distribution> </license> </licenses> <dependencies> <dependency> <groupId>oro</groupId> <artifactId>oro</artifactId> <version>2.0.8</version> </dependency> <dependency> <groupId>asm</groupId> <artifactId>asm</artifactId> <version>3.0</version> </dependency> <dependency> <groupId>asm</groupId> <artifactId>asm-tree</artifactId> <version>3.0</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.9</version> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.7.0</version> </dependency> </dependencies> </project> ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2711629&group_id=130558 |