You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
(1) |
Jul
(1) |
Aug
(1) |
Sep
(3) |
Oct
(4) |
Nov
|
Dec
(2) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
|
Feb
(3) |
Mar
(1) |
Apr
(5) |
May
(1) |
Jun
(3) |
Jul
(7) |
Aug
(4) |
Sep
|
Oct
|
Nov
(6) |
Dec
(7) |
2009 |
Jan
(2) |
Feb
(2) |
Mar
(4) |
Apr
(2) |
May
(16) |
Jun
(2) |
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
(1) |
2010 |
Jan
(1) |
Feb
(3) |
Mar
(4) |
Apr
(1) |
May
(1) |
Jun
(3) |
Jul
(7) |
Aug
(2) |
Sep
|
Oct
(2) |
Nov
(2) |
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
(1) |
Jun
(2) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
(1) |
2012 |
Jan
|
Feb
(1) |
Mar
|
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
(4) |
Sep
|
Oct
(1) |
Nov
(2) |
Dec
(2) |
2013 |
Jan
|
Feb
(3) |
Mar
(1) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: SourceForge.net <no...@so...> - 2010-02-08 21:19:25
|
Feature Requests item #2948081, was opened at 2010-02-08 21:19 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2948081&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: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Branch Tooltip Shows Conditions Needed Initial Comment: The branch tooltip currently says "Line 52: Conditional coverage 50% (1/1)." It doesn't say whether the condition was true or false that was tested. Please add more information which informs the user which conditions need to be tested. For example, if no conditions need to be tested then display a "-". If the true condition needs to be tested then display a "T". If the false condition needs to be tested then display a "F". If both conditions need to be tested then display a "B" for both. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2948081&group_id=130558 |
From: SourceForge.net <no...@so...> - 2010-02-01 10:37:50
|
Feature Requests item #2943673, was opened at 2010-02-01 10:37 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2943673&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: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Allow cobertura data file to be set from environment variabl Initial Comment: Currently, the Cobertura data file (cobertura.ser) used by an instrumented program is specified in a Java system property, a properties file in a particular location or with the default value "cobertura.ser" in the current directory. In order to increase flexibility and allow project test coverage to be measured in a non-intrusive way, without modifying an existing build and test system, it would be nice to also check the environment variable COBERTURA_DATAFILE before falling back to the default. A patch that implements this is attached. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2943673&group_id=130558 |
From: SourceForge.net <no...@so...> - 2010-01-14 05:03:55
|
Feature Requests item #2790549, was opened at 2009-05-12 11:56 Message generated for change (Comment added) made by squig You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2790549&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: aLeXx (buhhunyx) Assigned to: Nobody/Anonymous (nobody) Summary: ant: allow to specify multiple directories with sources Initial Comment: I have project directory with set of subproject. Following call doesn't include sources to report: <dirset id="src.dirset" dir="${prjDir}" > <include name="**/src" /> </dirset> <property name="src.dir" refid="src.dirset"/> <cobertura-report format="html" datafile="${cobertura.ser}" destdir="${testResultsDir}/cobertura-report" srcdir="${src.dir}"/> Can be possible to specify source directories using nested dirset instead of filesets: <cobertura-report format="html" datafile="${cobertura.ser}" destdir="${testResultsDir}/cobertura-report"> <dirset dir="${prjDir}" > <include name="**/src" /> </dirset> </cobertura-report> ---------------------------------------------------------------------- Comment By: Steffen Pingel (squig) Date: 2010-01-14 06:03 Message: The dirset support has a bug: Instead of passing absolute paths to the reporting application it ignores the base directory on the dirset and uses a relative path. That means it will only work as expected if your build is running from the same directory that is set as the base directory on the dirset. Here is a crude but working fix: Index: cobertura/src/net/sourceforge/cobertura/ant/CommonMatchingTask.java =================================================================== --- cobertura/src/net/sourceforge/cobertura/ant/CommonMatchingTask.java (revision 689) +++ cobertura/src/net/sourceforge/cobertura/ant/CommonMatchingTask.java (working copy) @@ -174,7 +174,13 @@ */ throw new BuildException("Dirsets have to come before filesets"); } - createArgumentsForFilenames( builder, getDirectoryScanner(fileSet).getIncludedDirectories()); + DirectoryScanner scanner = getDirectoryScanner(fileSet); + String[] filenames = scanner.getIncludedDirectories(); + for (int i = 0; i < filenames.length; i++) + { + filenames[i] = baseDir(fileSet) + "/" + filenames[i]; + } + createArgumentsForFilenames( builder, filenames); } } } ---------------------------------------------------------------------- Comment By: aLeXx (buhhunyx) Date: 2009-05-13 10:38 Message: I think that problem is with relative path. Possible solution <path id="src.dirset"> <dirset dir="${srcDir}/plugins" > <include name="**/src" /> </dirset> </path> But cobertura-report doesn't support the nested "path" element. ---------------------------------------------------------------------- Comment By: aLeXx (buhhunyx) Date: 2009-05-13 09:05 Message: Actualy latest version used. I tried different combination but without results. >From example above: <dirset id="src.dirset" dir="${prjDir}" > <include name="**/src" /> </dirset> <property name="src.dir" refid="src.dirset"/> <echo>${src.dir}</echo> [echo] org.eclipse.swordfish.registry.tooling\src;org.eclipse.swordfish.tooling.target\src;org.eclipse.swordfish.tooling.ui\src Can you provide me valid sample with dirset? ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-12 15:53 Message: What version of Cobertura are you using? Dirset support was added to 1.9.1. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2790549&group_id=130558 |
From: SourceForge.net <no...@so...> - 2009-12-24 23:08:03
|
Feature Requests item #2228936, was opened at 2008-11-06 10:58 Message generated for change (Comment added) made by keeskuip You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2228936&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: Maxim Petrashev (mpetrashev) Assigned to: Nobody/Anonymous (nobody) Summary: Instrumentation Agent Initial Comment: Can we add instrumentation agent in cobertura library? In this case it will be possible to avoid additional steps in build processes: instrument classes, run tests with instrumented and non-instrumented classes. I believe it will be nice and simple feature? I have provided simple implementation of such agent in attachement that can be configured very easy in command line: -javaagent:cobertura.jar I will be very appriciate for any feedback on this idea. Kind regards, Maxim ---------------------------------------------------------------------- Comment By: Kees Kuip (keeskuip) Date: 2009-12-25 00:08 Message: Could we please have this in the a release? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2228936&group_id=130558 |
From: SourceForge.net <no...@so...> - 2009-09-18 14:51:20
|
Feature Requests item #2861489, was opened at 2009-09-18 14:51 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2861489&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: Interface Improvements (example) Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Hierarchical summary of subpackage coverage Initial Comment: Hi! In the HTML-output there is an overall summary of coverage information (in the right frame, top line, "All Packages", but when you dig into a package com.mycompany, you see coverage information for classes in com.mycompany and coverage information for all packages starting with com.mycompany. But what I miss is something like "All Packages", but summarized for all packages com.mycompany.* This would resemble the hierachical usage of packages (I know, packages are nor really hierarchical in Java). In the report it could be placed at the same position as "All Packages". It would be nice to have this numbers inn a project with more than 8000 classes. (Cobertura works great, even with this project size.) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2861489&group_id=130558 |
From: SourceForge.net <no...@so...> - 2009-09-13 16:26:20
|
Feature Requests item #2858117, was opened at 2009-09-13 16:26 Message generated for change (Tracker Item Submitted) made by sixmute You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2858117&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: sixmute (sixmute) Assigned to: Nobody/Anonymous (nobody) Summary: Report on lines of code executed per test Initial Comment: Good unit tests are usually short and test only a handful of methods. It would be very useful to be able to report the number of lines of code executed per unit test. Doing this would allow users to identify and fix unit tests that are testing inappropriately large amounts of code. This could be done by identifying test classes and instrumenting them to record the total lines executed at the start of the test and at the end of test. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2858117&group_id=130558 |
From: SourceForge.net <no...@so...> - 2009-06-19 13:15:32
|
Feature Requests item #2809012, was opened at 2009-06-19 15:15 Message generated for change (Tracker Item Submitted) made by rzr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2809012&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: Philippe COVAL (rzr) Assigned to: Nobody/Anonymous (nobody) Summary: GNU/Linux distro integration : debian Initial Comment: hi Are there any work done to get these nice software in distros ? and especially debian (or derived) ? If not, I'll put this on my todo list : * http://rzr.online.fr/q/integration * http://qa.debian.org/wnpp.php?login=rzr%40users.sf.net Regards ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2809012&group_id=130558 |
From: SourceForge.net <no...@so...> - 2009-06-04 05:51:27
|
Feature Requests item #2800905, was opened at 2009-06-04 11:21 Message generated for change (Tracker Item Submitted) made by loganathank You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2800905&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: Interface Improvements (example) Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: loga (loganathank) Assigned to: Nobody/Anonymous (nobody) Summary: Eclipse Plugin Initial Comment: Is there eclipse plugin available for cobertura ?. Please let me know... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2800905&group_id=130558 |
From: SourceForge.net <no...@so...> - 2009-05-21 20:44:20
|
Feature Requests item #2711629, was opened at 2009-03-25 06:08 Message generated for change (Comment added) made by lewijw 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: Closed Resolution: Fixed Priority: 5 Private: No Submitted By: Stevo Slavic (sslavic) Assigned to: John Lewis (lewijw) 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: John Lewis (lewijw) Date: 2009-05-21 15:44 Message: Hi Stevo, Version 1.9.1.1 is now on the cobertura repo. http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/1.9.1.1/cobertura-1.9.1.1.pom Thanks for your help. ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-18 16:08 Message: Yes, unfortunately new release is needed. Isn't 1.9.1.1 or 1.9.1.A better? ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-05-18 08:15 Message: It has been added. http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura-runtime/1.9.1/cobertura-runtime-1.9.1.pom I will be surprised if the change makes it to the maven central repo though. I think I remember reading something about the files being unmodifiable once they are there. We might need to do a 1.9.2. ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-17 17:42 Message: Apparently, there is error in cobertura-runtime 1.9.1 pom file, groupId element is missing. John, please add following groupId before artifactId element: <groupId>net.sourceforge.cobertura</groupId> ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-11 09:31 Message: With cobertura:cobertura you are running maven cobertura plugin, its cobertura report mojo, and latest version of that plugin declares dependency to cobertura 1.9. A request has been made to update plugin to use cobertura 1.9.1 ( http://jira.codehaus.org/browse/MCOBERTURA-94 ) in next release. What you can do to test if cobertura and cobertura-runtime 1.9.1 is accessible to a maven project like cobertura maven plugin is, is to create an empty maven 2 project and declare a dependency to cobertura or cobertura-runtime 1.9.1, then try e.g. packaging a project. If your project has war packaging then cobertura artifact (with or without it's transitive dependencies depending if cobertura or cobertura-runtime has been declared as dependency) will be included in war's lib folder. ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-11 08:40 Message: I finally got something when I did mvn cobertura:cobertura. However, the local repository has 1.9 in it, and the report that was generated was done with 1.9. But the maven-metadata-central.xml file has 1.9.1 in it. ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-11 08:26 Message: Are you able to get it to work? I am having trouble, but I am new to maven. When I do mvn:site with a simple project, I get: [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Building mymavenproject [INFO] task-segment: [site] [INFO] ------------------------------------------------------------------------ [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] The plugin 'net.sourceforge.cobertura:cobertura' does not exist or no valid version could be found [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: < 1 second [INFO] Finished at: Mon May 11 09:19:03 EDT 2009 [INFO] Final Memory: 2M/5M [INFO] ------------------------------------------------------------------------ Here is the project pom: <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>com.mycompany.app</groupId> <artifactId>mymavenproject</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>mymavenproject</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>net.sourceforge.cobertura</groupId> <artifactId>cobertura</artifactId> </plugin> </plugins> </reporting> </project> I tried deleting my local maven repository. ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-10 03:28 Message: Since last night, cobertura 1.9.1 is available at maven central repo ( http://mirrors.ibiblio.org/pub/mirrors/maven2/net/sourceforge/cobertura/cobertura/1.9.1/ ) ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-08 09:31 Message: Thanks for your help. Synch request made: http://jira.codehaus.org/browse/MAVENUPLOAD-2453 ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-07 18:24 Message: Checked, main artifact works fine. cobertura-runtime artifact doesn't work from the cobertura repo as its pom doesn't define any repositories but depends on main cobertura artifact which is not yet in central - by the looks of cobertura-runtime pom (same as in prev version, except for the version of course) it should work well too once cobertura repo is synchronized to central. +1 go ahead, make a sync request ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-07 14:41 Message: I have added a process to the build that will deploy a cobertura release to a maven repo on sourceforge. The intention is to have that repo synched with the central maven repository automatically (see http://maven.apache.org/guides/mini/guide-central-repository-upload.html). Before I make the synch request, is it possible for you to try it out? I am assuming you know more about Maven than I do. The maven repo is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/maven-metadata.xml The pom is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/1.9.1/cobertura-1.9.1.pom It looks identical to the one in mustaghattack's comment. ---------------------------------------------------------------------- Comment By: Bruno Bieth (mustaghattack) Date: 2009-03-31 07: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 |
From: SourceForge.net <no...@so...> - 2009-05-18 21:08:56
|
Feature Requests item #2711629, was opened at 2009-03-25 12:08 Message generated for change (Comment added) made by sslavic 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: Closed Resolution: Fixed Priority: 5 Private: No Submitted By: Stevo Slavic (sslavic) Assigned to: John Lewis (lewijw) 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: Stevo Slavic (sslavic) Date: 2009-05-18 23:08 Message: Yes, unfortunately new release is needed. Isn't 1.9.1.1 or 1.9.1.A better? ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-05-18 15:15 Message: It has been added. http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura-runtime/1.9.1/cobertura-runtime-1.9.1.pom I will be surprised if the change makes it to the maven central repo though. I think I remember reading something about the files being unmodifiable once they are there. We might need to do a 1.9.2. ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-18 00:42 Message: Apparently, there is error in cobertura-runtime 1.9.1 pom file, groupId element is missing. John, please add following groupId before artifactId element: <groupId>net.sourceforge.cobertura</groupId> ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-11 16:31 Message: With cobertura:cobertura you are running maven cobertura plugin, its cobertura report mojo, and latest version of that plugin declares dependency to cobertura 1.9. A request has been made to update plugin to use cobertura 1.9.1 ( http://jira.codehaus.org/browse/MCOBERTURA-94 ) in next release. What you can do to test if cobertura and cobertura-runtime 1.9.1 is accessible to a maven project like cobertura maven plugin is, is to create an empty maven 2 project and declare a dependency to cobertura or cobertura-runtime 1.9.1, then try e.g. packaging a project. If your project has war packaging then cobertura artifact (with or without it's transitive dependencies depending if cobertura or cobertura-runtime has been declared as dependency) will be included in war's lib folder. ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-11 15:40 Message: I finally got something when I did mvn cobertura:cobertura. However, the local repository has 1.9 in it, and the report that was generated was done with 1.9. But the maven-metadata-central.xml file has 1.9.1 in it. ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-11 15:26 Message: Are you able to get it to work? I am having trouble, but I am new to maven. When I do mvn:site with a simple project, I get: [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Building mymavenproject [INFO] task-segment: [site] [INFO] ------------------------------------------------------------------------ [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] The plugin 'net.sourceforge.cobertura:cobertura' does not exist or no valid version could be found [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: < 1 second [INFO] Finished at: Mon May 11 09:19:03 EDT 2009 [INFO] Final Memory: 2M/5M [INFO] ------------------------------------------------------------------------ Here is the project pom: <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>com.mycompany.app</groupId> <artifactId>mymavenproject</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>mymavenproject</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>net.sourceforge.cobertura</groupId> <artifactId>cobertura</artifactId> </plugin> </plugins> </reporting> </project> I tried deleting my local maven repository. ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-10 10:28 Message: Since last night, cobertura 1.9.1 is available at maven central repo ( http://mirrors.ibiblio.org/pub/mirrors/maven2/net/sourceforge/cobertura/cobertura/1.9.1/ ) ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-08 16:31 Message: Thanks for your help. Synch request made: http://jira.codehaus.org/browse/MAVENUPLOAD-2453 ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-08 01:24 Message: Checked, main artifact works fine. cobertura-runtime artifact doesn't work from the cobertura repo as its pom doesn't define any repositories but depends on main cobertura artifact which is not yet in central - by the looks of cobertura-runtime pom (same as in prev version, except for the version of course) it should work well too once cobertura repo is synchronized to central. +1 go ahead, make a sync request ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-07 21:41 Message: I have added a process to the build that will deploy a cobertura release to a maven repo on sourceforge. The intention is to have that repo synched with the central maven repository automatically (see http://maven.apache.org/guides/mini/guide-central-repository-upload.html). Before I make the synch request, is it possible for you to try it out? I am assuming you know more about Maven than I do. The maven repo is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/maven-metadata.xml The pom is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/1.9.1/cobertura-1.9.1.pom It looks identical to the one in mustaghattack's comment. ---------------------------------------------------------------------- Comment By: Bruno Bieth (mustaghattack) Date: 2009-03-31 14: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 |
From: SourceForge.net <no...@so...> - 2009-05-18 13:15:48
|
Feature Requests item #2711629, was opened at 2009-03-25 11:08 Message generated for change (Comment added) made by nobody 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: Closed Resolution: Fixed Priority: 5 Private: No Submitted By: Stevo Slavic (sslavic) Assigned to: John Lewis (lewijw) 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: Nobody/Anonymous (nobody) Date: 2009-05-18 13:15 Message: It has been added. http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura-runtime/1.9.1/cobertura-runtime-1.9.1.pom I will be surprised if the change makes it to the maven central repo though. I think I remember reading something about the files being unmodifiable once they are there. We might need to do a 1.9.2. ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-17 22:42 Message: Apparently, there is error in cobertura-runtime 1.9.1 pom file, groupId element is missing. John, please add following groupId before artifactId element: <groupId>net.sourceforge.cobertura</groupId> ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-11 14:31 Message: With cobertura:cobertura you are running maven cobertura plugin, its cobertura report mojo, and latest version of that plugin declares dependency to cobertura 1.9. A request has been made to update plugin to use cobertura 1.9.1 ( http://jira.codehaus.org/browse/MCOBERTURA-94 ) in next release. What you can do to test if cobertura and cobertura-runtime 1.9.1 is accessible to a maven project like cobertura maven plugin is, is to create an empty maven 2 project and declare a dependency to cobertura or cobertura-runtime 1.9.1, then try e.g. packaging a project. If your project has war packaging then cobertura artifact (with or without it's transitive dependencies depending if cobertura or cobertura-runtime has been declared as dependency) will be included in war's lib folder. ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-11 13:40 Message: I finally got something when I did mvn cobertura:cobertura. However, the local repository has 1.9 in it, and the report that was generated was done with 1.9. But the maven-metadata-central.xml file has 1.9.1 in it. ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-11 13:26 Message: Are you able to get it to work? I am having trouble, but I am new to maven. When I do mvn:site with a simple project, I get: [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Building mymavenproject [INFO] task-segment: [site] [INFO] ------------------------------------------------------------------------ [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] The plugin 'net.sourceforge.cobertura:cobertura' does not exist or no valid version could be found [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: < 1 second [INFO] Finished at: Mon May 11 09:19:03 EDT 2009 [INFO] Final Memory: 2M/5M [INFO] ------------------------------------------------------------------------ Here is the project pom: <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>com.mycompany.app</groupId> <artifactId>mymavenproject</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>mymavenproject</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>net.sourceforge.cobertura</groupId> <artifactId>cobertura</artifactId> </plugin> </plugins> </reporting> </project> I tried deleting my local maven repository. ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-10 08:28 Message: Since last night, cobertura 1.9.1 is available at maven central repo ( http://mirrors.ibiblio.org/pub/mirrors/maven2/net/sourceforge/cobertura/cobertura/1.9.1/ ) ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-08 14:31 Message: Thanks for your help. Synch request made: http://jira.codehaus.org/browse/MAVENUPLOAD-2453 ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-07 23:24 Message: Checked, main artifact works fine. cobertura-runtime artifact doesn't work from the cobertura repo as its pom doesn't define any repositories but depends on main cobertura artifact which is not yet in central - by the looks of cobertura-runtime pom (same as in prev version, except for the version of course) it should work well too once cobertura repo is synchronized to central. +1 go ahead, make a sync request ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-07 19:41 Message: I have added a process to the build that will deploy a cobertura release to a maven repo on sourceforge. The intention is to have that repo synched with the central maven repository automatically (see http://maven.apache.org/guides/mini/guide-central-repository-upload.html). Before I make the synch request, is it possible for you to try it out? I am assuming you know more about Maven than I do. The maven repo is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/maven-metadata.xml The pom is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/1.9.1/cobertura-1.9.1.pom It looks identical to the one in mustaghattack's comment. ---------------------------------------------------------------------- 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 |
From: SourceForge.net <no...@so...> - 2009-05-17 22:42:52
|
Feature Requests item #2711629, was opened at 2009-03-25 12:08 Message generated for change (Comment added) made by sslavic 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: Closed Resolution: Fixed Priority: 5 Private: No Submitted By: Stevo Slavic (sslavic) Assigned to: John Lewis (lewijw) 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: Stevo Slavic (sslavic) Date: 2009-05-18 00:42 Message: Apparently, there is error in cobertura-runtime 1.9.1 pom file, groupId element is missing. John, please add following groupId before artifactId element: <groupId>net.sourceforge.cobertura</groupId> ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-11 16:31 Message: With cobertura:cobertura you are running maven cobertura plugin, its cobertura report mojo, and latest version of that plugin declares dependency to cobertura 1.9. A request has been made to update plugin to use cobertura 1.9.1 ( http://jira.codehaus.org/browse/MCOBERTURA-94 ) in next release. What you can do to test if cobertura and cobertura-runtime 1.9.1 is accessible to a maven project like cobertura maven plugin is, is to create an empty maven 2 project and declare a dependency to cobertura or cobertura-runtime 1.9.1, then try e.g. packaging a project. If your project has war packaging then cobertura artifact (with or without it's transitive dependencies depending if cobertura or cobertura-runtime has been declared as dependency) will be included in war's lib folder. ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-11 15:40 Message: I finally got something when I did mvn cobertura:cobertura. However, the local repository has 1.9 in it, and the report that was generated was done with 1.9. But the maven-metadata-central.xml file has 1.9.1 in it. ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-11 15:26 Message: Are you able to get it to work? I am having trouble, but I am new to maven. When I do mvn:site with a simple project, I get: [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Building mymavenproject [INFO] task-segment: [site] [INFO] ------------------------------------------------------------------------ [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] The plugin 'net.sourceforge.cobertura:cobertura' does not exist or no valid version could be found [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: < 1 second [INFO] Finished at: Mon May 11 09:19:03 EDT 2009 [INFO] Final Memory: 2M/5M [INFO] ------------------------------------------------------------------------ Here is the project pom: <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>com.mycompany.app</groupId> <artifactId>mymavenproject</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>mymavenproject</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>net.sourceforge.cobertura</groupId> <artifactId>cobertura</artifactId> </plugin> </plugins> </reporting> </project> I tried deleting my local maven repository. ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-10 10:28 Message: Since last night, cobertura 1.9.1 is available at maven central repo ( http://mirrors.ibiblio.org/pub/mirrors/maven2/net/sourceforge/cobertura/cobertura/1.9.1/ ) ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-08 16:31 Message: Thanks for your help. Synch request made: http://jira.codehaus.org/browse/MAVENUPLOAD-2453 ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-08 01:24 Message: Checked, main artifact works fine. cobertura-runtime artifact doesn't work from the cobertura repo as its pom doesn't define any repositories but depends on main cobertura artifact which is not yet in central - by the looks of cobertura-runtime pom (same as in prev version, except for the version of course) it should work well too once cobertura repo is synchronized to central. +1 go ahead, make a sync request ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-07 21:41 Message: I have added a process to the build that will deploy a cobertura release to a maven repo on sourceforge. The intention is to have that repo synched with the central maven repository automatically (see http://maven.apache.org/guides/mini/guide-central-repository-upload.html). Before I make the synch request, is it possible for you to try it out? I am assuming you know more about Maven than I do. The maven repo is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/maven-metadata.xml The pom is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/1.9.1/cobertura-1.9.1.pom It looks identical to the one in mustaghattack's comment. ---------------------------------------------------------------------- Comment By: Bruno Bieth (mustaghattack) Date: 2009-03-31 14: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 |
From: SourceForge.net <no...@so...> - 2009-05-13 08:38:53
|
Feature Requests item #2790549, was opened at 2009-05-12 12:56 Message generated for change (Comment added) made by buhhunyx You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2790549&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: aLeXx (buhhunyx) Assigned to: Nobody/Anonymous (nobody) Summary: ant: allow to specify multiple directories with sources Initial Comment: I have project directory with set of subproject. Following call doesn't include sources to report: <dirset id="src.dirset" dir="${prjDir}" > <include name="**/src" /> </dirset> <property name="src.dir" refid="src.dirset"/> <cobertura-report format="html" datafile="${cobertura.ser}" destdir="${testResultsDir}/cobertura-report" srcdir="${src.dir}"/> Can be possible to specify source directories using nested dirset instead of filesets: <cobertura-report format="html" datafile="${cobertura.ser}" destdir="${testResultsDir}/cobertura-report"> <dirset dir="${prjDir}" > <include name="**/src" /> </dirset> </cobertura-report> ---------------------------------------------------------------------- >Comment By: aLeXx (buhhunyx) Date: 2009-05-13 11:38 Message: I think that problem is with relative path. Possible solution <path id="src.dirset"> <dirset dir="${srcDir}/plugins" > <include name="**/src" /> </dirset> </path> But cobertura-report doesn't support the nested "path" element. ---------------------------------------------------------------------- Comment By: aLeXx (buhhunyx) Date: 2009-05-13 10:05 Message: Actualy latest version used. I tried different combination but without results. >From example above: <dirset id="src.dirset" dir="${prjDir}" > <include name="**/src" /> </dirset> <property name="src.dir" refid="src.dirset"/> <echo>${src.dir}</echo> [echo] org.eclipse.swordfish.registry.tooling\src;org.eclipse.swordfish.tooling.target\src;org.eclipse.swordfish.tooling.ui\src Can you provide me valid sample with dirset? ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-12 16:53 Message: What version of Cobertura are you using? Dirset support was added to 1.9.1. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2790549&group_id=130558 |
From: SourceForge.net <no...@so...> - 2009-05-13 07:05:23
|
Feature Requests item #2790549, was opened at 2009-05-12 12:56 Message generated for change (Comment added) made by buhhunyx You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2790549&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: aLeXx (buhhunyx) Assigned to: Nobody/Anonymous (nobody) Summary: ant: allow to specify multiple directories with sources Initial Comment: I have project directory with set of subproject. Following call doesn't include sources to report: <dirset id="src.dirset" dir="${prjDir}" > <include name="**/src" /> </dirset> <property name="src.dir" refid="src.dirset"/> <cobertura-report format="html" datafile="${cobertura.ser}" destdir="${testResultsDir}/cobertura-report" srcdir="${src.dir}"/> Can be possible to specify source directories using nested dirset instead of filesets: <cobertura-report format="html" datafile="${cobertura.ser}" destdir="${testResultsDir}/cobertura-report"> <dirset dir="${prjDir}" > <include name="**/src" /> </dirset> </cobertura-report> ---------------------------------------------------------------------- >Comment By: aLeXx (buhhunyx) Date: 2009-05-13 10:05 Message: Actualy latest version used. I tried different combination but without results. >From example above: <dirset id="src.dirset" dir="${prjDir}" > <include name="**/src" /> </dirset> <property name="src.dir" refid="src.dirset"/> <echo>${src.dir}</echo> [echo] org.eclipse.swordfish.registry.tooling\src;org.eclipse.swordfish.tooling.target\src;org.eclipse.swordfish.tooling.ui\src Can you provide me valid sample with dirset? ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-12 16:53 Message: What version of Cobertura are you using? Dirset support was added to 1.9.1. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2790549&group_id=130558 |
From: SourceForge.net <no...@so...> - 2009-05-12 13:53:39
|
Feature Requests item #2790549, was opened at 2009-05-12 04:56 Message generated for change (Comment added) made by lewijw You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2790549&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: aLeXx (buhhunyx) Assigned to: Nobody/Anonymous (nobody) Summary: ant: allow to specify multiple directories with sources Initial Comment: I have project directory with set of subproject. Following call doesn't include sources to report: <dirset id="src.dirset" dir="${prjDir}" > <include name="**/src" /> </dirset> <property name="src.dir" refid="src.dirset"/> <cobertura-report format="html" datafile="${cobertura.ser}" destdir="${testResultsDir}/cobertura-report" srcdir="${src.dir}"/> Can be possible to specify source directories using nested dirset instead of filesets: <cobertura-report format="html" datafile="${cobertura.ser}" destdir="${testResultsDir}/cobertura-report"> <dirset dir="${prjDir}" > <include name="**/src" /> </dirset> </cobertura-report> ---------------------------------------------------------------------- >Comment By: John Lewis (lewijw) Date: 2009-05-12 08:53 Message: What version of Cobertura are you using? Dirset support was added to 1.9.1. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2790549&group_id=130558 |
From: SourceForge.net <no...@so...> - 2009-05-12 09:56:13
|
Feature Requests item #2790549, was opened at 2009-05-12 12:56 Message generated for change (Tracker Item Submitted) made by buhhunyx You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2790549&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: aLeXx (buhhunyx) Assigned to: Nobody/Anonymous (nobody) Summary: ant: allow to specify multiple directories with sources Initial Comment: I have project directory with set of subproject. Following call doesn't include sources to report: <dirset id="src.dirset" dir="${prjDir}" > <include name="**/src" /> </dirset> <property name="src.dir" refid="src.dirset"/> <cobertura-report format="html" datafile="${cobertura.ser}" destdir="${testResultsDir}/cobertura-report" srcdir="${src.dir}"/> Can be possible to specify source directories using nested dirset instead of filesets: <cobertura-report format="html" datafile="${cobertura.ser}" destdir="${testResultsDir}/cobertura-report"> <dirset dir="${prjDir}" > <include name="**/src" /> </dirset> </cobertura-report> ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=2790549&group_id=130558 |
From: SourceForge.net <no...@so...> - 2009-05-11 14:31:17
|
Feature Requests item #2711629, was opened at 2009-03-25 12:08 Message generated for change (Comment added) made by sslavic 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: Closed Resolution: Fixed Priority: 5 Private: No Submitted By: Stevo Slavic (sslavic) Assigned to: John Lewis (lewijw) 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: Stevo Slavic (sslavic) Date: 2009-05-11 16:31 Message: With cobertura:cobertura you are running maven cobertura plugin, its cobertura report mojo, and latest version of that plugin declares dependency to cobertura 1.9. A request has been made to update plugin to use cobertura 1.9.1 ( http://jira.codehaus.org/browse/MCOBERTURA-94 ) in next release. What you can do to test if cobertura and cobertura-runtime 1.9.1 is accessible to a maven project like cobertura maven plugin is, is to create an empty maven 2 project and declare a dependency to cobertura or cobertura-runtime 1.9.1, then try e.g. packaging a project. If your project has war packaging then cobertura artifact (with or without it's transitive dependencies depending if cobertura or cobertura-runtime has been declared as dependency) will be included in war's lib folder. ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-11 15:40 Message: I finally got something when I did mvn cobertura:cobertura. However, the local repository has 1.9 in it, and the report that was generated was done with 1.9. But the maven-metadata-central.xml file has 1.9.1 in it. ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-11 15:26 Message: Are you able to get it to work? I am having trouble, but I am new to maven. When I do mvn:site with a simple project, I get: [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Building mymavenproject [INFO] task-segment: [site] [INFO] ------------------------------------------------------------------------ [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] The plugin 'net.sourceforge.cobertura:cobertura' does not exist or no valid version could be found [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: < 1 second [INFO] Finished at: Mon May 11 09:19:03 EDT 2009 [INFO] Final Memory: 2M/5M [INFO] ------------------------------------------------------------------------ Here is the project pom: <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>com.mycompany.app</groupId> <artifactId>mymavenproject</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>mymavenproject</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>net.sourceforge.cobertura</groupId> <artifactId>cobertura</artifactId> </plugin> </plugins> </reporting> </project> I tried deleting my local maven repository. ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-10 10:28 Message: Since last night, cobertura 1.9.1 is available at maven central repo ( http://mirrors.ibiblio.org/pub/mirrors/maven2/net/sourceforge/cobertura/cobertura/1.9.1/ ) ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-08 16:31 Message: Thanks for your help. Synch request made: http://jira.codehaus.org/browse/MAVENUPLOAD-2453 ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-08 01:24 Message: Checked, main artifact works fine. cobertura-runtime artifact doesn't work from the cobertura repo as its pom doesn't define any repositories but depends on main cobertura artifact which is not yet in central - by the looks of cobertura-runtime pom (same as in prev version, except for the version of course) it should work well too once cobertura repo is synchronized to central. +1 go ahead, make a sync request ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-07 21:41 Message: I have added a process to the build that will deploy a cobertura release to a maven repo on sourceforge. The intention is to have that repo synched with the central maven repository automatically (see http://maven.apache.org/guides/mini/guide-central-repository-upload.html). Before I make the synch request, is it possible for you to try it out? I am assuming you know more about Maven than I do. The maven repo is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/maven-metadata.xml The pom is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/1.9.1/cobertura-1.9.1.pom It looks identical to the one in mustaghattack's comment. ---------------------------------------------------------------------- Comment By: Bruno Bieth (mustaghattack) Date: 2009-03-31 14: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 |
From: SourceForge.net <no...@so...> - 2009-05-11 13:40:57
|
Feature Requests item #2711629, was opened at 2009-03-25 06:08 Message generated for change (Comment added) made by lewijw 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: Closed Resolution: Fixed Priority: 5 Private: No Submitted By: Stevo Slavic (sslavic) Assigned to: John Lewis (lewijw) 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: John Lewis (lewijw) Date: 2009-05-11 08:40 Message: I finally got something when I did mvn cobertura:cobertura. However, the local repository has 1.9 in it, and the report that was generated was done with 1.9. But the maven-metadata-central.xml file has 1.9.1 in it. ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-11 08:26 Message: Are you able to get it to work? I am having trouble, but I am new to maven. When I do mvn:site with a simple project, I get: [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Building mymavenproject [INFO] task-segment: [site] [INFO] ------------------------------------------------------------------------ [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] The plugin 'net.sourceforge.cobertura:cobertura' does not exist or no valid version could be found [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: < 1 second [INFO] Finished at: Mon May 11 09:19:03 EDT 2009 [INFO] Final Memory: 2M/5M [INFO] ------------------------------------------------------------------------ Here is the project pom: <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>com.mycompany.app</groupId> <artifactId>mymavenproject</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>mymavenproject</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>net.sourceforge.cobertura</groupId> <artifactId>cobertura</artifactId> </plugin> </plugins> </reporting> </project> I tried deleting my local maven repository. ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-10 03:28 Message: Since last night, cobertura 1.9.1 is available at maven central repo ( http://mirrors.ibiblio.org/pub/mirrors/maven2/net/sourceforge/cobertura/cobertura/1.9.1/ ) ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-08 09:31 Message: Thanks for your help. Synch request made: http://jira.codehaus.org/browse/MAVENUPLOAD-2453 ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-07 18:24 Message: Checked, main artifact works fine. cobertura-runtime artifact doesn't work from the cobertura repo as its pom doesn't define any repositories but depends on main cobertura artifact which is not yet in central - by the looks of cobertura-runtime pom (same as in prev version, except for the version of course) it should work well too once cobertura repo is synchronized to central. +1 go ahead, make a sync request ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-07 14:41 Message: I have added a process to the build that will deploy a cobertura release to a maven repo on sourceforge. The intention is to have that repo synched with the central maven repository automatically (see http://maven.apache.org/guides/mini/guide-central-repository-upload.html). Before I make the synch request, is it possible for you to try it out? I am assuming you know more about Maven than I do. The maven repo is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/maven-metadata.xml The pom is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/1.9.1/cobertura-1.9.1.pom It looks identical to the one in mustaghattack's comment. ---------------------------------------------------------------------- Comment By: Bruno Bieth (mustaghattack) Date: 2009-03-31 07: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 |
From: SourceForge.net <no...@so...> - 2009-05-11 13:26:58
|
Feature Requests item #2711629, was opened at 2009-03-25 06:08 Message generated for change (Settings changed) made by lewijw 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: Closed Resolution: Fixed Priority: 5 Private: No Submitted By: Stevo Slavic (sslavic) Assigned to: John Lewis (lewijw) 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: John Lewis (lewijw) Date: 2009-05-11 08:26 Message: Are you able to get it to work? I am having trouble, but I am new to maven. When I do mvn:site with a simple project, I get: [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Building mymavenproject [INFO] task-segment: [site] [INFO] ------------------------------------------------------------------------ [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] The plugin 'net.sourceforge.cobertura:cobertura' does not exist or no valid version could be found [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: < 1 second [INFO] Finished at: Mon May 11 09:19:03 EDT 2009 [INFO] Final Memory: 2M/5M [INFO] ------------------------------------------------------------------------ Here is the project pom: <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>com.mycompany.app</groupId> <artifactId>mymavenproject</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>mymavenproject</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>net.sourceforge.cobertura</groupId> <artifactId>cobertura</artifactId> </plugin> </plugins> </reporting> </project> I tried deleting my local maven repository. ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-10 03:28 Message: Since last night, cobertura 1.9.1 is available at maven central repo ( http://mirrors.ibiblio.org/pub/mirrors/maven2/net/sourceforge/cobertura/cobertura/1.9.1/ ) ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-08 09:31 Message: Thanks for your help. Synch request made: http://jira.codehaus.org/browse/MAVENUPLOAD-2453 ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-07 18:24 Message: Checked, main artifact works fine. cobertura-runtime artifact doesn't work from the cobertura repo as its pom doesn't define any repositories but depends on main cobertura artifact which is not yet in central - by the looks of cobertura-runtime pom (same as in prev version, except for the version of course) it should work well too once cobertura repo is synchronized to central. +1 go ahead, make a sync request ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-07 14:41 Message: I have added a process to the build that will deploy a cobertura release to a maven repo on sourceforge. The intention is to have that repo synched with the central maven repository automatically (see http://maven.apache.org/guides/mini/guide-central-repository-upload.html). Before I make the synch request, is it possible for you to try it out? I am assuming you know more about Maven than I do. The maven repo is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/maven-metadata.xml The pom is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/1.9.1/cobertura-1.9.1.pom It looks identical to the one in mustaghattack's comment. ---------------------------------------------------------------------- Comment By: Bruno Bieth (mustaghattack) Date: 2009-03-31 07: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 |
From: SourceForge.net <no...@so...> - 2009-05-11 13:26:35
|
Feature Requests item #2711629, was opened at 2009-03-25 06:08 Message generated for change (Comment added) made by lewijw 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: Closed Resolution: Fixed Priority: 5 Private: No Submitted By: Stevo Slavic (sslavic) Assigned to: John Lewis (lewijw) 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: John Lewis (lewijw) Date: 2009-05-11 08:26 Message: Are you able to get it to work? I am having trouble, but I am new to maven. When I do mvn:site with a simple project, I get: [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Building mymavenproject [INFO] task-segment: [site] [INFO] ------------------------------------------------------------------------ [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] The plugin 'net.sourceforge.cobertura:cobertura' does not exist or no valid version could be found [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: < 1 second [INFO] Finished at: Mon May 11 09:19:03 EDT 2009 [INFO] Final Memory: 2M/5M [INFO] ------------------------------------------------------------------------ Here is the project pom: <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>com.mycompany.app</groupId> <artifactId>mymavenproject</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>mymavenproject</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>net.sourceforge.cobertura</groupId> <artifactId>cobertura</artifactId> </plugin> </plugins> </reporting> </project> I tried deleting my local maven repository. ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-10 03:28 Message: Since last night, cobertura 1.9.1 is available at maven central repo ( http://mirrors.ibiblio.org/pub/mirrors/maven2/net/sourceforge/cobertura/cobertura/1.9.1/ ) ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-08 09:31 Message: Thanks for your help. Synch request made: http://jira.codehaus.org/browse/MAVENUPLOAD-2453 ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-07 18:24 Message: Checked, main artifact works fine. cobertura-runtime artifact doesn't work from the cobertura repo as its pom doesn't define any repositories but depends on main cobertura artifact which is not yet in central - by the looks of cobertura-runtime pom (same as in prev version, except for the version of course) it should work well too once cobertura repo is synchronized to central. +1 go ahead, make a sync request ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-07 14:41 Message: I have added a process to the build that will deploy a cobertura release to a maven repo on sourceforge. The intention is to have that repo synched with the central maven repository automatically (see http://maven.apache.org/guides/mini/guide-central-repository-upload.html). Before I make the synch request, is it possible for you to try it out? I am assuming you know more about Maven than I do. The maven repo is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/maven-metadata.xml The pom is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/1.9.1/cobertura-1.9.1.pom It looks identical to the one in mustaghattack's comment. ---------------------------------------------------------------------- Comment By: Bruno Bieth (mustaghattack) Date: 2009-03-31 07: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 |
From: SourceForge.net <no...@so...> - 2009-05-10 08:28:11
|
Feature Requests item #2711629, was opened at 2009-03-25 12:08 Message generated for change (Comment added) made by sslavic 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: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Stevo Slavic (sslavic) Assigned to: John Lewis (lewijw) 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: Stevo Slavic (sslavic) Date: 2009-05-10 10:28 Message: Since last night, cobertura 1.9.1 is available at maven central repo ( http://mirrors.ibiblio.org/pub/mirrors/maven2/net/sourceforge/cobertura/cobertura/1.9.1/ ) ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-08 16:31 Message: Thanks for your help. Synch request made: http://jira.codehaus.org/browse/MAVENUPLOAD-2453 ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-08 01:24 Message: Checked, main artifact works fine. cobertura-runtime artifact doesn't work from the cobertura repo as its pom doesn't define any repositories but depends on main cobertura artifact which is not yet in central - by the looks of cobertura-runtime pom (same as in prev version, except for the version of course) it should work well too once cobertura repo is synchronized to central. +1 go ahead, make a sync request ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-07 21:41 Message: I have added a process to the build that will deploy a cobertura release to a maven repo on sourceforge. The intention is to have that repo synched with the central maven repository automatically (see http://maven.apache.org/guides/mini/guide-central-repository-upload.html). Before I make the synch request, is it possible for you to try it out? I am assuming you know more about Maven than I do. The maven repo is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/maven-metadata.xml The pom is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/1.9.1/cobertura-1.9.1.pom It looks identical to the one in mustaghattack's comment. ---------------------------------------------------------------------- Comment By: Bruno Bieth (mustaghattack) Date: 2009-03-31 14: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 |
From: SourceForge.net <no...@so...> - 2009-05-08 14:31:56
|
Feature Requests item #2711629, was opened at 2009-03-25 06:08 Message generated for change (Comment added) made by lewijw 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: John Lewis (lewijw) 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: John Lewis (lewijw) Date: 2009-05-08 09:31 Message: Thanks for your help. Synch request made: http://jira.codehaus.org/browse/MAVENUPLOAD-2453 ---------------------------------------------------------------------- Comment By: Stevo Slavic (sslavic) Date: 2009-05-07 18:24 Message: Checked, main artifact works fine. cobertura-runtime artifact doesn't work from the cobertura repo as its pom doesn't define any repositories but depends on main cobertura artifact which is not yet in central - by the looks of cobertura-runtime pom (same as in prev version, except for the version of course) it should work well too once cobertura repo is synchronized to central. +1 go ahead, make a sync request ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-07 14:41 Message: I have added a process to the build that will deploy a cobertura release to a maven repo on sourceforge. The intention is to have that repo synched with the central maven repository automatically (see http://maven.apache.org/guides/mini/guide-central-repository-upload.html). Before I make the synch request, is it possible for you to try it out? I am assuming you know more about Maven than I do. The maven repo is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/maven-metadata.xml The pom is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/1.9.1/cobertura-1.9.1.pom It looks identical to the one in mustaghattack's comment. ---------------------------------------------------------------------- Comment By: Bruno Bieth (mustaghattack) Date: 2009-03-31 07: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 |
From: SourceForge.net <no...@so...> - 2009-05-07 23:24:55
|
Feature Requests item #2711629, was opened at 2009-03-25 12:08 Message generated for change (Comment added) made by sslavic 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: John Lewis (lewijw) 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: Stevo Slavic (sslavic) Date: 2009-05-08 01:24 Message: Checked, main artifact works fine. cobertura-runtime artifact doesn't work from the cobertura repo as its pom doesn't define any repositories but depends on main cobertura artifact which is not yet in central - by the looks of cobertura-runtime pom (same as in prev version, except for the version of course) it should work well too once cobertura repo is synchronized to central. +1 go ahead, make a sync request ---------------------------------------------------------------------- Comment By: John Lewis (lewijw) Date: 2009-05-07 21:41 Message: I have added a process to the build that will deploy a cobertura release to a maven repo on sourceforge. The intention is to have that repo synched with the central maven repository automatically (see http://maven.apache.org/guides/mini/guide-central-repository-upload.html). Before I make the synch request, is it possible for you to try it out? I am assuming you know more about Maven than I do. The maven repo is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/maven-metadata.xml The pom is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/1.9.1/cobertura-1.9.1.pom It looks identical to the one in mustaghattack's comment. ---------------------------------------------------------------------- Comment By: Bruno Bieth (mustaghattack) Date: 2009-03-31 14: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 |
From: SourceForge.net <no...@so...> - 2009-05-07 19:41:11
|
Feature Requests item #2711629, was opened at 2009-03-25 06:08 Message generated for change (Comment added) made by lewijw 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: John Lewis (lewijw) 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: John Lewis (lewijw) Date: 2009-05-07 14:41 Message: I have added a process to the build that will deploy a cobertura release to a maven repo on sourceforge. The intention is to have that repo synched with the central maven repository automatically (see http://maven.apache.org/guides/mini/guide-central-repository-upload.html). Before I make the synch request, is it possible for you to try it out? I am assuming you know more about Maven than I do. The maven repo is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/maven-metadata.xml The pom is at: http://cobertura.sourceforge.net/m2repo/net/sourceforge/cobertura/cobertura/1.9.1/cobertura-1.9.1.pom It looks identical to the one in mustaghattack's comment. ---------------------------------------------------------------------- Comment By: Bruno Bieth (mustaghattack) Date: 2009-03-31 07: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 |
From: SourceForge.net <no...@so...> - 2009-04-27 18:58:27
|
Feature Requests item #1510562, was opened at 2006-06-22 11:52 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=1510562&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: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Include an overall coverage summary in the HTML report Initial Comment: Include an overall coverage summary on the "All packages" page of the HTML report. See Clover for an example. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2009-04-27 18:58 Message: +1 from me as well. ---------------------------------------------------------------------- Comment By: Hugo Palma (hugopalma) Date: 2007-06-06 10:02 Message: Logged In: YES user_id=758295 Originator: NO +1 on this one. I find it very important to have the overall coverage statistics in the start page of the report. I like to to check the overall health of the project every day, and the overall coverage statistics is a very important metric. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=720018&aid=1510562&group_id=130558 |