You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(49) |
Sep
(134) |
Oct
(33) |
Nov
(18) |
Dec
(51) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(50) |
Feb
(32) |
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
|
2008 |
Jan
|
Feb
|
Mar
(9) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(1) |
Feb
(4) |
Mar
(8) |
Apr
(4) |
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2010 |
Jan
(1) |
Feb
|
Mar
(54) |
Apr
(21) |
May
(13) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(9) |
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(13) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Google A. <goo...@go...> - 2006-12-18 04:26:55
|
<project> <modelVersion>4.0.0</modelVersion> <groupId>net ... description> <url>http://qalab.sourceforge.net</url> <issueManagement> ... <testSourceDirectory>src/test/java</testSourceDirectory> <resources> <resource> ... <http://mirrors.ibiblio.org/pub/mirrors/maven2/net/objectlab/qalab/0.7.2/qalab-0.7.2.pom> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAAz0YKI0rBHPBhe0kdarm0g&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: <be...@us...> - 2006-12-17 17:10:21
|
Revision: 226 http://svn.sourceforge.net/objectlabkit/?rev=226&view=rev Author: benoitx Date: 2006-12-17 09:10:21 -0800 (Sun, 17 Dec 2006) Log Message: ----------- make it a bit more robust. Modified Paths: -------------- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java Modified: trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java =================================================================== --- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java 2006-12-05 00:46:20 UTC (rev 225) +++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java 2006-12-17 17:10:21 UTC (rev 226) @@ -64,11 +64,13 @@ * the set of holidays (non-working days). */ public void registerHolidays(final String name, final Set<E> holidaysSet) { - this.holidays.put(name, holidaysSet); + if (name != null) { + this.holidays.put(name, holidaysSet); + } } protected void setHolidays(final String name, final DateCalculator<E> dc) { - if (holidays.containsKey(name)) { + if (name != null && holidays.containsKey(name)) { dc.setNonWorkingDays(holidays.get(name)); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: Google A. <goo...@go...> - 2006-12-17 04:27:08
|
3 qalab QALab Stats for Builds net.objectlab 0.8.0 ObjectLab Ltd ... 3 qalab QALab Stats for Builds net.objectlab 0.8.0 ObjectLab Ltd link0 link1 GNU ... Rehinsi rehinsip qa...@ob... ObjectLab Ltd link16 0 Java ... <http://mirrors.ibiblio.org/pub/mirrors/maven/net.objectlab/poms/qalab-0.8.0.pom> 4.0.0 net.objectlab qalab QALab Stats for Builds 0.9.0 This ... 4.0.0 net.objectlab qalab QALab Stats for Builds 0.9.0 This project ... individual Java Developer +1 benoitx Benoit Xhenseval qalab at objectlab dot co dot ... <http://www.ibiblio.org/maven/net.objectlab/poms/qalab-0.9.0.pom> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAAz0YKI0rBHPBhe0kdarm0g&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-17 03:42:35
|
NewsForge | StatSVN v0.2.0 released today, supports HTML/XDOC StatSVN v0.2.0 released today, supports HTML/XDOC -- article related to Free Software and NewsVac. <http://newsvac.newsforge.com/article.pl?sid=06/11/29/1321234&tid=150&tid=15> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAIq3Ab5rO6vaPuJbzfH1NiU&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-17 01:23:58
|
<project> <pomVersion>3</pomVersion> <groupId>net.objectlab.kit ... description> <url>http://objectlabkit.sourceforge.net</url> ... </build> <dependencies> <dependency> <groupId>net.objectlab.kit.datecalc</groupId> ... <http://mirrors.ibiblio.org/pub/mirrors/maven/net.objectlab.kit.datecalc/poms/datecalc-jdk-1.0.1.pom> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAIfnd2Id1jfwipBB4CiM3Aw&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-15 04:28:11
|
Blogmarks.net : Public marks from user solveig_vidal What is JTreeMap ? JTreeMap is a Java Swing component which reprensents hierarchical structure in a Treemap. A tree structure may includes more or less ... <http://www.blogmarks.net/user/solveig_vidal/marks?offset=350> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAADRvBmo81mJEkqrN8FH9fyQ&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-15 01:25:07
|
<project> <pomVersion>3</pomVersion> <groupId>net.objectlab.kit ... description> <url>http://objectlabkit.sourceforge.net</url> ... </organization> <package>net.objectlab.kit.datecalc</package> <build> ... <http://mirrors.ibiblio.org/pub/mirrors/maven/net.objectlab.kit.datecalc/poms/datecalc-common-1.0.1.pom> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAIfnd2Id1jfwipBB4CiM3Aw&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-13 05:08:40
|
QALab - Statistics for your Code. ObjectLab is proud to announce release 1.0 of QALab for Java 1.4+. QALab collects and consolidates data from several QA tools, like PMD, Checkstyle, ... <http://dzone.com/rsslinks/qalab_statistics_for_your_code.html> pmd - SWiK PMD is a Java source code analyzer that looks for things like: Empty try/catch/finally/switch ... QALab - Statistics for your Build - QALab - Introduction ... <http://swik.net/pmd+Java> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAAz0YKI0rBHPBhe0kdarm0g&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-13 04:29:16
|
ObjectLab Financial Ltd - Integrating Technology and Business ObjectLab Financial Ltd an experienced software and support consultancy firm based in the City of London with extensive expertise in Securities Lending, ... <http://www.objectlab.co.uk/> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAIq3Ab5rO6vaPuJbzfH1NiU&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-13 04:29:15
|
[mojo-dev] [jira] Created: (MOJO-552) Simian Plugin should also ... ... <block sourceFile="C:\project\jtreemap\JTreeMap\src\main\java\net\sf\jtreemap\ swing\example\JTreeMapAppletExample.java" startLineNumber="247" ... <http://www.mail-archive.com/de...@mo.../msg02292.html> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAADRvBmo81mJEkqrN8FH9fyQ&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-12 05:53:52
|
dserodio's bookmarks on del.icio.us JTreeMap is a Java Swing (SWT) component which represents hierarchical structure in a Treemap. This is treemapping. A tree structure may includes more or ... <http://del.icio.us/dserodio> StatSVN - Repository Statistics - yDoc Report Standard Doclet version 1.5.0_07 Building tree for all the packages and classes... src\net\sf\statsvn\Main.java:191: warning - Tag @link: reference not ... <http://statsvn.org/ydoc.html> Java Development Use JTreemap to create your own Java Treemap application and render any data you like. Making Cocoa-Java Apps Scriptable (O'Reilly Network)- In this article ... <http://java.ittoolbox.com/topics/t.asp?t=405&p=405&h1=405> Blogmarks.net : Public marks with tags visualisation & opensource What is JTreeMap ? JTreeMap is a Java Swing component which reprensents hierarchical structure in a Treemap. A tree structure may includes more or less ... <http://www.blogmarks.net/marks/tag/visualisation,opensource> [#MOJO-552] Simian Plugin should also support XML output - jira ... <block sourceFile="C:\project\jtreemap\JTreeMap\src\main\java\net\sf\jtreemap\ swing\example\JTreeMapAppletExample.java" startLineNumber="247" ... <http://jira.codehaus.org/browse/MOJO-552;jsessionid=aHecw6lTJLA_oe6V37?page=all> Make Your Java Data More Useful with Treemap Visualization But what happens when you've got more data points than a pie chart can render? Enter the treemap! Use JTreemap to create your own Java Treemap application ... <http://www.devx.com/xml/Article/17361> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAADRvBmo81mJEkqrN8FH9fyQ&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-10 05:08:18
|
4.0.0 net.objectlab qalab QALab Stats for Builds 0.8.0 This ... 4.0.0 net.objectlab qalab QALab Stats for Builds 0.8.0 This project collects data ... Ltd Java Developer 0 benoitx Benoit Xhenseval qa...@ob... ... <http://www.ibiblio.org/maven/net.objectlab/poms/qalab-0.8.0.pom> qalab 0.9 1 pom 4.0.0 net.objectlab qalab QALab Stats for Builds 0.9.1 This project collects ... Paramjit Rehinsi qalab at objectlab dot co dot uk link11 ObjectLab Ltd Java ... <http://www.objectlab.co.uk/maven/repository/net/objectlab/qalab/0.9.1/qalab-0.9.1.pom> Java bütyköl bázis :: qalab Java bütyköl bázis. [ start | index | login ]. start > qalab. qalab. Created by kocka. Last edited by kocka, 5 hours and 49 minutes ago. Viewed 5 times. #3 ... <http://www.jhacks.hu/space/qalab> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAAz0YKI0rBHPBhe0kdarm0g&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-10 04:25:58
|
StatSVN and ObjectLab released v0.2.0 of StatSVN for Subversion JTreeMap (http://jtreemap.sourceforge.net) the only open source heatmap library for Java - QALab (http://qalab.sourceforge.net) QA Statistics for your build ... <http://www.theserverside.com/discussions/thread.tss?thread_id=43266> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAADRvBmo81mJEkqrN8FH9fyQ&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-08 04:26:44
|
Java Buzz Forum - QALab 1.0 This post originated from an RSS feed registered with Java Buzz by News Manager. Original Post: QALab 1.0 Feed Title: java.net News ... <http://www.artima.com/forums/flat.jsp?forum=121&thread=186504> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAAz0YKI0rBHPBhe0kdarm0g&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-07 04:28:39
|
QALab 1.0 released for Ant, Maven 1 and Maven 2 ObjectLab is proud to announce release 1.0 of QALab for Java 1.4+ Furthermore, we are very pleased to announce that QALab was selected by Borland and is ... <http://findory.com/read?id=af4aa378&ib=2> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAAz0YKI0rBHPBhe0kdarm0g&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-06 05:07:22
|
[#MPARTIFACT-72] m1.1-rc1 Creating an upload-bundle for a plugin ... java:jar-resources:. test:test: [echo] No tests to run. jar:jar:. [mkdir] Created dir: C:\project\qalab\maven-qalab-plugin\target\bundle ... <http://jira.codehaus.org/browse/MPARTIFACT-72> 4.0.0 net.objectlab qalab QALab Stats for Builds 0.8.0 This ... 4.0.0 net.objectlab qalab QALab Stats for Builds 0.8.0 This project collects ... Ltd Java Developer 0 davsag Dave Sag qa...@ob... link12 ObjectLab ... <http://www.objectlab.co.uk/maven/repository/net/objectlab/qalab/0.8.0/qalab-0.8.0.pom> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAAz0YKI0rBHPBhe0kdarm0g&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-06 04:26:53
|
Pages tagged with "GUI" on del.icio.us JTreeMap is a Java Swing (SWT) component which represents hierarchical structure in a Treemap. This is treemapping. A tree structure may includes more or ... <http://del.icio.us/tag/GUI> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAADRvBmo81mJEkqrN8FH9fyQ&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-05 05:53:12
|
QALab - Statistics for your Build - Ant Usage <checkstyle version="3.4"> <file name="E:\project\qalab\src\main\java\net\ objectlab\qalab\ant\BuildStatMergeTask.java"> <error line="161" severity="error" ... <http://qalab.sourceforge.net/ant.html> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAAz0YKI0rBHPBhe0kdarm0g&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-05 04:29:47
|
It's All Good By David Gilbert For developers working with Subversion, there is now a StatSVN project that is based on StatCVS. I haven't tested this, as I don't work on any projects using Subversion yet, but it is good to know that someone is working on it all the ... <http://jroller.com/page/dgilbert?entry=mauve_statcvs_update> Dave Gilbert's Weblog <http://jroller.com/page/dgilbert> Index of /maven/net.sf.statsvn Index of /maven/net.sf.statsvn. Icon Name Last modified Size Description. [DIR] Parent Directory - [DIR] jars/ 29-Nov-2006 14:55 - [DIR] java-sources/ ... <http://www.ibiblio.org/maven/net.sf.statsvn/> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAIq3Ab5rO6vaPuJbzfH1NiU&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: <be...@us...> - 2006-12-05 00:47:08
|
Revision: 225 http://svn.sourceforge.net/objectlabkit/?rev=225&view=rev Author: benoitx Date: 2006-12-04 16:46:20 -0800 (Mon, 04 Dec 2006) Log Message: ----------- Improved to use the new tags option (coming soon in a StatSVN close to you). Modified Paths: -------------- trunk/statsvn.bat Modified: trunk/statsvn.bat =================================================================== --- trunk/statsvn.bat 2006-11-24 16:02:47 UTC (rev 224) +++ trunk/statsvn.bat 2006-12-05 00:46:20 UTC (rev 225) @@ -1,3 +1,3 @@ -svn log -v --xml > logfile.log +svn log -v --xml https://svn.sourceforge.net/svnroot/objectlabkit/ > logfile.log rem mkdir qalab\target\docs\statsvn -java -jar c:\java\statsvn\statsvn.jar -format xdoc -verbose -output-dir src\site\statsvn -title ObjectLabKit -viewvc http://svn.sourceforge.net/viewvc/objectlabkit/trunk ./logfile.log . \ No newline at end of file +java -jar c:\java\statsvn\statsvn.jar -format xdoc -verbose -output-dir src\site\statsvn -tags "^1.0.1" -title ObjectLabKit -viewvc http://svn.sourceforge.net/viewvc/objectlabkit/trunk ./logfile.log . \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: Google A. <goo...@go...> - 2006-12-04 02:55:02
|
StatSVN Download version 0.1.3 from statsvn.org or from SourceForge. Visit our Wiki for the user guide and other documentation. Visit the Maven Build Site for site ... <http://statsvn.org/> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAIq3Ab5rO6vaPuJbzfH1NiU&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-03 04:27:09
|
Apache Maven - SWiK Java, Maven, and Your Web Development Project > Creating the Project ... QALab - Statistics for your Build - QALab - Introduction ... <http://swik.net/Maven+Java> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAAz0YKI0rBHPBhe0kdarm0g&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-02 23:52:19
|
Koders - Source Code Search Engine http://objectlabkit.sourceforge.net ObjectLab Kit came out of our frustration to have to re-do the same kind of code over and over each time we joined a new ... <http://www.koders.com/info.aspx?c=ProjectInfo&pid=4ZCNYH6559YNKSDN7CA2FGLLBF> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAIfnd2Id1jfwipBB4CiM3Aw&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-02 06:34:46
|
NewsForge | StatSVN v0.2.0 released today, supports HTML/XDOC ObjectLab Kit (http://objectlabkit.sourceforge.net/ a date calculation toolkit for business and finance; - JTreeMap (http://jtreemap.sourceforge.net/ the ... <http://newsvac.newsforge.com/article.pl?sid=06/11/29/1321234> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAIfnd2Id1jfwipBB4CiM3Aw&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |
From: Google A. <goo...@go...> - 2006-12-02 05:07:44
|
News Headlines ObjectLab has announced the release of version 1.0 of QALab for Java 1.4+. They write in, "This release specifically targets: Maven 2 support with fully ... <http://today.java.net/today/news/> dzone.com - upcoming links: open source ObjectLab is proud to announce release 1.0 of QALab for Java 1.4+. QALab collects and consolidates data from several QA tools, like PMD, Checkstyle, ... <http://dzone.com/links/queue/tag/open%20source.html> This once a day Google Alert is brought to you by Google... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove this Google Alert: http://www.google.com/alerts/remove?s=EAAAAAz0YKI0rBHPBhe0kdarm0g&hl=en Create another Google Alert: http://www.google.com/alerts?hl=en Sign in to manage your alerts: http://www.google.com/alerts/manage?hl=en |