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: <be...@us...> - 2010-05-19 20:18:29
|
Revision: 371 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=371&view=rev Author: benoitx Date: 2010-05-19 20:18:22 +0000 (Wed, 19 May 2010) Log Message: ----------- Ready for a quick release for CS. Modified Paths: -------------- trunk/utils/pom.xml trunk/utils/src/main/java/net/objectlab/kit/util/BigDecimalUtil.java trunk/utils/src/main/java/net/objectlab/kit/util/StringUtil.java Modified: trunk/utils/pom.xml =================================================================== --- trunk/utils/pom.xml 2010-05-10 14:12:20 UTC (rev 370) +++ trunk/utils/pom.xml 2010-05-19 20:18:22 UTC (rev 371) @@ -5,7 +5,7 @@ <groupId>net.objectlab.kit</groupId> <artifactId>objectlab-utils</artifactId> - <version>1.0-SNAPSHOT</version> + <version>1.0-cs</version> <packaging>bundle</packaging> <name>ObjectLab Kit - General Utilities</name> Modified: trunk/utils/src/main/java/net/objectlab/kit/util/BigDecimalUtil.java =================================================================== --- trunk/utils/src/main/java/net/objectlab/kit/util/BigDecimalUtil.java 2010-05-10 14:12:20 UTC (rev 370) +++ trunk/utils/src/main/java/net/objectlab/kit/util/BigDecimalUtil.java 2010-05-19 20:18:22 UTC (rev 371) @@ -682,4 +682,12 @@ public static boolean isZeroOrLess(final BigDecimal value) { return value != null && value.signum() <= 0; } + + /** + * Return the decimal part of the value. + * @param val + */ + public static BigDecimal decimalPart(final BigDecimal val) { + return BigDecimalUtil.subtract(val, val.setScale(0, BigDecimal.ROUND_DOWN)); + } } Modified: trunk/utils/src/main/java/net/objectlab/kit/util/StringUtil.java =================================================================== --- trunk/utils/src/main/java/net/objectlab/kit/util/StringUtil.java 2010-05-10 14:12:20 UTC (rev 370) +++ trunk/utils/src/main/java/net/objectlab/kit/util/StringUtil.java 2010-05-19 20:18:22 UTC (rev 371) @@ -418,8 +418,12 @@ return b.toString(); } - public static Object emptyIfNull(final Object txt) { - return txt != null ? txt : EMPTY; + /** + * Returns "" if obj is null, obj.toString() otherwise. + * @param obj + */ + public static String emptyIfNull(final Object obj) { + return obj != null ? obj.toString() : EMPTY; } public static boolean isWildcardOrNull(final String txt) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-05-10 14:12:26
|
Revision: 370 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=370&view=rev Author: marchy Date: 2010-05-10 14:12:20 +0000 (Mon, 10 May 2010) Log Message: ----------- deleting incorrectly tagged version tag. Removed Paths: ------------- tags/kit-parent-1.2.0/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-05-10 06:27:41
|
Revision: 369 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=369&view=rev Author: marchy Date: 2010-05-10 06:27:35 +0000 (Mon, 10 May 2010) Log Message: ----------- [maven-release-plugin] prepare for next development iteration Modified Paths: -------------- trunk/datecalc-common/pom.xml trunk/datecalc-jdk/pom.xml trunk/datecalc-joda/pom.xml trunk/pom.xml Modified: trunk/datecalc-common/pom.xml =================================================================== --- trunk/datecalc-common/pom.xml 2010-05-10 06:27:30 UTC (rev 368) +++ trunk/datecalc-common/pom.xml 2010-05-10 06:27:35 UTC (rev 369) @@ -4,7 +4,7 @@ <parent> <groupId>net.objectlab.kit</groupId> <artifactId>kit-parent</artifactId> - <version>1.2.0</version> + <version>1.2.1-SNAPSHOT</version> </parent> <artifactId>datecalc-common</artifactId> Modified: trunk/datecalc-jdk/pom.xml =================================================================== --- trunk/datecalc-jdk/pom.xml 2010-05-10 06:27:30 UTC (rev 368) +++ trunk/datecalc-jdk/pom.xml 2010-05-10 06:27:35 UTC (rev 369) @@ -4,7 +4,7 @@ <parent> <groupId>net.objectlab.kit</groupId> <artifactId>kit-parent</artifactId> - <version>1.2.0</version> + <version>1.2.1-SNAPSHOT</version> </parent> <artifactId>datecalc-jdk</artifactId> Modified: trunk/datecalc-joda/pom.xml =================================================================== --- trunk/datecalc-joda/pom.xml 2010-05-10 06:27:30 UTC (rev 368) +++ trunk/datecalc-joda/pom.xml 2010-05-10 06:27:35 UTC (rev 369) @@ -4,7 +4,7 @@ <parent> <groupId>net.objectlab.kit</groupId> <artifactId>kit-parent</artifactId> - <version>1.2.0</version> + <version>1.2.1-SNAPSHOT</version> </parent> <artifactId>datecalc-joda</artifactId> Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-05-10 06:27:30 UTC (rev 368) +++ trunk/pom.xml 2010-05-10 06:27:35 UTC (rev 369) @@ -4,7 +4,7 @@ <groupId>net.objectlab.kit</groupId> <artifactId>kit-parent</artifactId> - <version>1.2.0</version> + <version>1.2.1-SNAPSHOT</version> <packaging>pom</packaging> <modules> @@ -260,9 +260,9 @@ </profiles> <scm> - <connection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/tags/1.2.0</connection> - <developerConnection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/tags/1.2.0</developerConnection> - <url>http://objectlabkit.svn.sourceforge.net/viewvc/objectlabkit/tags/1.2.0</url> + <connection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/trunk/</connection> + <developerConnection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/trunk/</developerConnection> + <url>http://objectlabkit.svn.sourceforge.net/viewvc/objectlabkit/</url> </scm> <issueManagement> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-05-10 06:27:37
|
Revision: 368 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=368&view=rev Author: marchy Date: 2010-05-10 06:27:30 +0000 (Mon, 10 May 2010) Log Message: ----------- [maven-release-plugin] copy for tag 1.2.0 Added Paths: ----------- tags/1.2.0/ tags/1.2.0/datecalc-common/pom.xml tags/1.2.0/datecalc-jdk/pom.xml tags/1.2.0/datecalc-joda/pom.xml tags/1.2.0/pom.xml Removed Paths: ------------- tags/1.2.0/datecalc-common/pom.xml tags/1.2.0/datecalc-jdk/pom.xml tags/1.2.0/datecalc-joda/pom.xml tags/1.2.0/pom.xml Deleted: tags/1.2.0/datecalc-common/pom.xml =================================================================== --- trunk/datecalc-common/pom.xml 2010-05-10 06:18:00 UTC (rev 366) +++ tags/1.2.0/datecalc-common/pom.xml 2010-05-10 06:27:30 UTC (rev 368) @@ -1,46 +0,0 @@ -<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> - - <parent> - <groupId>net.objectlab.kit</groupId> - <artifactId>kit-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> - </parent> - - <artifactId>datecalc-common</artifactId> - <packaging>bundle</packaging> - - <name>Date Calculator Common</name> - <description>Common Date Calculator Code</description> - - <build> - <plugins> - <plugin> - <groupId>org.apache.felix</groupId> - <artifactId>maven-bundle-plugin</artifactId> - <extensions>true</extensions> - <configuration> - <instructions> - <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> - <Private-Package /> - <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> - <Bundle-Version>${pom.version}</Bundle-Version> - <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> - </instructions> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>test-jar</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> - -</project> \ No newline at end of file Copied: tags/1.2.0/datecalc-common/pom.xml (from rev 367, trunk/datecalc-common/pom.xml) =================================================================== --- tags/1.2.0/datecalc-common/pom.xml (rev 0) +++ tags/1.2.0/datecalc-common/pom.xml 2010-05-10 06:27:30 UTC (rev 368) @@ -0,0 +1,46 @@ +<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> + + <parent> + <groupId>net.objectlab.kit</groupId> + <artifactId>kit-parent</artifactId> + <version>1.2.0</version> + </parent> + + <artifactId>datecalc-common</artifactId> + <packaging>bundle</packaging> + + <name>Date Calculator Common</name> + <description>Common Date Calculator Code</description> + + <build> + <plugins> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <instructions> + <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> + <Private-Package /> + <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> + <Bundle-Version>${pom.version}</Bundle-Version> + <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> + </instructions> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project> \ No newline at end of file Deleted: tags/1.2.0/datecalc-jdk/pom.xml =================================================================== --- trunk/datecalc-jdk/pom.xml 2010-05-10 06:18:00 UTC (rev 366) +++ tags/1.2.0/datecalc-jdk/pom.xml 2010-05-10 06:27:30 UTC (rev 368) @@ -1,107 +0,0 @@ -<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> - - <parent> - <groupId>net.objectlab.kit</groupId> - <artifactId>kit-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> - </parent> - - <artifactId>datecalc-jdk</artifactId> - <packaging>bundle</packaging> - - <name>Date Calculator for JDK</name> - <description>Date Calculator methods for JDK</description> - - <dependencies> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - </dependency> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - <scope>test</scope> - <classifier>tests</classifier> - </dependency> - </dependencies> - - <build> - <plugins> - <!-- UNIT tests --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <version>2.5</version> - <configuration> - <skip>true</skip> - </configuration> - <executions> - <execution> - <id>surefire-test</id> - <phase>test</phase> - <goals> - <goal>test</goal> - </goals> - <configuration> - <skip>false</skip> - <excludes> - <exclude>**/perf/**</exclude> - </excludes> - </configuration> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.felix</groupId> - <artifactId>maven-bundle-plugin</artifactId> - <extensions>true</extensions> - <configuration> - <instructions> - <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> - <Private-Package /> - <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> - <Bundle-Version>${pom.version}</Bundle-Version> - <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> - </instructions> - </configuration> - </plugin> - </plugins> - </build> - - <profiles> - <profile> - <id>perf-testing</id> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <version>2.5</version> - <configuration> - <skip>true</skip> - </configuration> - <executions> - <execution> - <id>surefire-perf</id> - <!-- use it mvn test -P perf-testing --> - <phase>test</phase> - <goals> - <goal>test</goal> - </goals> - <configuration> - <argLine>-Xms256m -Xmx1024m</argLine> - <skip>false</skip> - <includes> - <include>**/perf/*Test.java</include> - </includes> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - </profiles> - -</project> \ No newline at end of file Copied: tags/1.2.0/datecalc-jdk/pom.xml (from rev 367, trunk/datecalc-jdk/pom.xml) =================================================================== --- tags/1.2.0/datecalc-jdk/pom.xml (rev 0) +++ tags/1.2.0/datecalc-jdk/pom.xml 2010-05-10 06:27:30 UTC (rev 368) @@ -0,0 +1,107 @@ +<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> + + <parent> + <groupId>net.objectlab.kit</groupId> + <artifactId>kit-parent</artifactId> + <version>1.2.0</version> + </parent> + + <artifactId>datecalc-jdk</artifactId> + <packaging>bundle</packaging> + + <name>Date Calculator for JDK</name> + <description>Date Calculator methods for JDK</description> + + <dependencies> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + </dependency> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <scope>test</scope> + <classifier>tests</classifier> + </dependency> + </dependencies> + + <build> + <plugins> + <!-- UNIT tests --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.5</version> + <configuration> + <skip>true</skip> + </configuration> + <executions> + <execution> + <id>surefire-test</id> + <phase>test</phase> + <goals> + <goal>test</goal> + </goals> + <configuration> + <skip>false</skip> + <excludes> + <exclude>**/perf/**</exclude> + </excludes> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <instructions> + <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> + <Private-Package /> + <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> + <Bundle-Version>${pom.version}</Bundle-Version> + <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> + </instructions> + </configuration> + </plugin> + </plugins> + </build> + + <profiles> + <profile> + <id>perf-testing</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.5</version> + <configuration> + <skip>true</skip> + </configuration> + <executions> + <execution> + <id>surefire-perf</id> + <!-- use it mvn test -P perf-testing --> + <phase>test</phase> + <goals> + <goal>test</goal> + </goals> + <configuration> + <argLine>-Xms256m -Xmx1024m</argLine> + <skip>false</skip> + <includes> + <include>**/perf/*Test.java</include> + </includes> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + +</project> \ No newline at end of file Deleted: tags/1.2.0/datecalc-joda/pom.xml =================================================================== --- trunk/datecalc-joda/pom.xml 2010-05-10 06:18:00 UTC (rev 366) +++ tags/1.2.0/datecalc-joda/pom.xml 2010-05-10 06:27:30 UTC (rev 368) @@ -1,112 +0,0 @@ -<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> - - <parent> - <groupId>net.objectlab.kit</groupId> - <artifactId>kit-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> - </parent> - - <artifactId>datecalc-joda</artifactId> - <packaging>bundle</packaging> - - <name>Date Calculator for Joda</name> - <description>Date Calculator methods for Joda</description> - - <dependencies> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - </dependency> - <dependency> - <groupId>joda-time</groupId> - <artifactId>joda-time</artifactId> - <version>1.6</version> - </dependency> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - <scope>test</scope> - <classifier>tests</classifier> - </dependency> - </dependencies> - - <build> - <plugins> - <!-- UNIT tests --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <version>2.5</version> - <configuration> - <skip>true</skip> - </configuration> - <executions> - <execution> - <id>surefire-test</id> - <phase>test</phase> - <goals> - <goal>test</goal> - </goals> - <configuration> - <skip>false</skip> - <excludes> - <exclude>**/perf/**</exclude> - </excludes> - </configuration> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.felix</groupId> - <artifactId>maven-bundle-plugin</artifactId> - <extensions>true</extensions> - <configuration> - <instructions> - <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> - <Private-Package /> - <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> - <Bundle-Version>${pom.version}</Bundle-Version> - <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> - </instructions> - </configuration> - </plugin> - </plugins> - </build> - - <profiles> - <profile> - <id>perf-testing</id> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <version>2.5</version> - <configuration> - <skip>true</skip> - </configuration> - <executions> - <execution> - <id>surefire-perf</id> - <!-- use it mvn test -P perf-testing --> - <phase>test</phase> - <goals> - <goal>test</goal> - </goals> - <configuration> - <argLine>-Xms256m -Xmx1024m</argLine> - <skip>false</skip> - <includes> - <include>**/perf/*Test.java</include> - </includes> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - </profiles> - -</project> \ No newline at end of file Copied: tags/1.2.0/datecalc-joda/pom.xml (from rev 367, trunk/datecalc-joda/pom.xml) =================================================================== --- tags/1.2.0/datecalc-joda/pom.xml (rev 0) +++ tags/1.2.0/datecalc-joda/pom.xml 2010-05-10 06:27:30 UTC (rev 368) @@ -0,0 +1,112 @@ +<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> + + <parent> + <groupId>net.objectlab.kit</groupId> + <artifactId>kit-parent</artifactId> + <version>1.2.0</version> + </parent> + + <artifactId>datecalc-joda</artifactId> + <packaging>bundle</packaging> + + <name>Date Calculator for Joda</name> + <description>Date Calculator methods for Joda</description> + + <dependencies> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + </dependency> + <dependency> + <groupId>joda-time</groupId> + <artifactId>joda-time</artifactId> + <version>1.6</version> + </dependency> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <scope>test</scope> + <classifier>tests</classifier> + </dependency> + </dependencies> + + <build> + <plugins> + <!-- UNIT tests --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.5</version> + <configuration> + <skip>true</skip> + </configuration> + <executions> + <execution> + <id>surefire-test</id> + <phase>test</phase> + <goals> + <goal>test</goal> + </goals> + <configuration> + <skip>false</skip> + <excludes> + <exclude>**/perf/**</exclude> + </excludes> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <instructions> + <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> + <Private-Package /> + <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> + <Bundle-Version>${pom.version}</Bundle-Version> + <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> + </instructions> + </configuration> + </plugin> + </plugins> + </build> + + <profiles> + <profile> + <id>perf-testing</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.5</version> + <configuration> + <skip>true</skip> + </configuration> + <executions> + <execution> + <id>surefire-perf</id> + <!-- use it mvn test -P perf-testing --> + <phase>test</phase> + <goals> + <goal>test</goal> + </goals> + <configuration> + <argLine>-Xms256m -Xmx1024m</argLine> + <skip>false</skip> + <includes> + <include>**/perf/*Test.java</include> + </includes> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + +</project> \ No newline at end of file Deleted: tags/1.2.0/pom.xml =================================================================== --- trunk/pom.xml 2010-05-10 06:18:00 UTC (rev 366) +++ tags/1.2.0/pom.xml 2010-05-10 06:27:30 UTC (rev 368) @@ -1,363 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> - <modelVersion>4.0.0</modelVersion> - - <groupId>net.objectlab.kit</groupId> - <artifactId>kit-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> - <packaging>pom</packaging> - - <modules> - <module>datecalc-common</module> - <module>datecalc-jdk</module> - <module>datecalc-joda</module> - </modules> - - <name>ObjectLab Kit</name> - - <description> - ObjectLab Kit provides a generic Business Calendar for calculating dates given set(s) of holidays. - Why re-invent the wheel? - </description> - - <inceptionYear>2006</inceptionYear> - <url>http://objectlabkit.sourceforge.net/</url> - - <organization> - <name>Appendium - Portfolio Financing Platform</name> - <url>http://www.appendium.com/</url> - </organization> - - <developers> - <developer> - <id>benoitx</id> - <name>Benoit Xhenseval</name> - <roles> - <role>Team Leader</role> - <role>Developer</role> - </roles> - <organization>Appendium Ltd</organization> - <organizationUrl>http://www.appendium.com/</organizationUrl> - <email>kit AT appendium DOT com</email> - <timezone>+0</timezone> - </developer> - <developer> - <id>marchy</id> - <name>Marcin Jekot</name> - <roles> - <role>Developer</role> - </roles> - <organization>ObjectLab Ltd</organization> - <organizationUrl>http://www.objectlab.co.uk/</organizationUrl> - <email>marchy AT users DOT sourceforge DOT net</email> - <timezone>+2</timezone> - </developer> - </developers> - - <licenses> - <license> - <name>The Apache Software License, Version 2.0</name> - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> - <distribution>repo</distribution> - </license> - </licenses> - - <mailingLists> - <mailingList> - <name>News about ObjectLab's projects (Alerts online)</name> - <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-news</subscribe> - <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-news</unsubscribe> - <post /> - <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-news</archive> - </mailingList> - <mailingList> - <name>Kit Announcements</name> - <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce</subscribe> - <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce</unsubscribe> - <post /> - <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-announce</archive> - </mailingList> - <mailingList> - <name>Kit User</name> - <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-user</subscribe> - <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-user</unsubscribe> - <post>obj...@li...</post> - <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-user</archive> - </mailingList> - <mailingList> - <name>Kit Developers (SVN checkins)</name> - <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-svn</subscribe> - <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-svn</unsubscribe> - <post /> - <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-svn</archive> - </mailingList> - </mailingLists> - - <dependencies> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.5</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>junitperf</groupId> - <artifactId>junitperf</artifactId> - <version>1.8</version> - <scope>test</scope> - </dependency> - </dependencies> - - <dependencyManagement> - <dependencies> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - <version>${pom.version}</version> - </dependency> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - <version>${pom.version}</version> - <scope>test</scope> - <classifier>tests</classifier> - </dependency> - <dependency> - <groupId>org.apache.felix</groupId> - <artifactId>org.osgi.core</artifactId> - <version>1.0.0</version> - </dependency> - </dependencies> - </dependencyManagement> - - <build> - <pluginManagement> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-release-plugin</artifactId> - <configuration> - <remoteTagging>true</remoteTagging> - <preparationGoals>clean install</preparationGoals> - <autoVersionSubmodules>true</autoVersionSubmodules> - </configuration> - </plugin> - </plugins> - </pluginManagement> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>1.5</source> - <target>1.5</target> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <configuration> - <source>1.5</source> - <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet> - <docletArtifact> - <groupId>gr.spinellis</groupId> - <artifactId>UmlGraph</artifactId> - <version>4.6</version> - </docletArtifact> - <additionalparam> - -inferrel -inferdep -quiet -constructors -visibility -types -postfixpackage - -nodefontsize 9 -nodefontpackagesize 7 -hide java.* -collpackages java.util.* - -link http://java.sun.com/j2se/1.5.0/docs/api/ -link http://joda-time.sourceforge.net/api-release/ - </additionalparam> - </configuration> - <executions> - <execution> - <id>aggregate</id> - <goals> - <goal>aggregate</goal> - </goals> - <phase>site</phase> - </execution> - </executions> - </plugin> - </plugins> - </build> - - <properties> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <site.deploy.url>file:///tmp/site</site.deploy.url> - </properties> - - <profiles> - <profile> - <id>code-sign</id> - <activation> - <property> - <name>performRelease</name> - <value>true</value> - </property> - </activation> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-gpg-plugin</artifactId> - <executions> - <execution> - <id>sign-artifacts</id> - <phase>verify</phase> - <goals> - <goal>sign</goal> - </goals> - </execution> - </executions> - <configuration> - <source>1.5</source> - <target>1.5</target> - </configuration> - </plugin> - </plugins> - </build> - </profile> - <profile> - <id>stat-scm</id> - <activation> - <property> - <name>performRelease</name> - <value>true</value> - </property> - </activation> - <reporting> - <plugins> - <plugin> - <groupId>net.sf</groupId> - <artifactId>stat-scm</artifactId> - <inherited>false</inherited> - </plugin> - </plugins> - </reporting> - </profile> - <profile> - <id>deploy-site</id> - <activation> - <property> - <name>performRelease</name> - <value>true</value> - </property> - </activation> - <properties> - <!-- the real site deploy url, this is a hack because site:stage (v2.1) doesn't work properly --> - <site.deploy.url>scp://shell.sourceforge.net/home/groups/o/ob/objectlabkit/htdocs</site.deploy.url> - </properties> - </profile> - <profile> - <id>stage-site</id> - <properties> - <!-- stage the site in the /test folder on sourceforge --> - <site.deploy.url>scp://shell.sourceforge.net/home/groups/o/ob/objectlabkit/htdocs/test</site.deploy.url> - </properties> - </profile> - </profiles> - - <scm> - <connection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/trunk/</connection> - <developerConnection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/trunk/</developerConnection> - <url>http://objectlabkit.svn.sourceforge.net/viewvc/objectlabkit/</url> - </scm> - - <issueManagement> - <system>sourceforge</system> - <url>https://sourceforge.net/tracker/?group_id=175139</url> - </issueManagement> - - <distributionManagement> - <repository> - <id>sonatype-nexus-staging</id> - <name>Sonatype Nexus Staging Repository</name> - <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> - </repository> - <snapshotRepository> - <id>sonatype-nexus-snapshots</id> - <name>Sonatype Nexus Snapshots Repository</name> - <url>http://oss.sonatype.org/content/repositories/snapshots/</url> - </snapshotRepository> - <site> - <id>objectlabkit.sf.net</id> - <url>${site.deploy.url}</url> - </site> - </distributionManagement> - - <reporting> - <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>cobertura-maven-plugin</artifactId> - </plugin> - <plugin> - <artifactId>maven-changes-plugin</artifactId> - <configuration> - <issueLinkTemplatePerSystem> - <default>%URL%/?group_id=175139&func=detail&%ISSUE%</default> - </issueLinkTemplatePerSystem> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jxr-plugin</artifactId> - <configuration> - <aggregate>true</aggregate> - <linkJavadoc>true</linkJavadoc> - <javadocDir>apidocs</javadocDir> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-report-plugin</artifactId> - <inherited>false</inherited> - <configuration> - <aggregate>true</aggregate> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-pmd-plugin</artifactId> - <configuration> - <targetJdk>1.5</targetJdk> - <rulesets> - <ruleset>/rulesets/basic.xml</ruleset> - </rulesets> - <minimumTokens>100</minimumTokens> - <linkXref>true</linkXref> - <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> - </configuration> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>findbugs-maven-plugin</artifactId> - <version>2.0</version> - <configuration> - <effort>Max</effort> - <threshold>Low</threshold> - <includeFilterFile>${project.basedir}/../src/source-checks/findbugs-filter.xml</includeFilterFile> - <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - <configuration> - <!-- these do not currently work as they are in the old format - <configLocation>${project.basedir}/../src/source-checks/checkstyle-checks.xml</configLocation> - <configLocation>${project.basedir}/../src/source-checks/objectlab-checks.xml</configLocation> - --> - <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> - </configuration> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>dashboard-maven-plugin</artifactId> - </plugin> - </plugins> - </reporting> - -</project> Copied: tags/1.2.0/pom.xml (from rev 367, trunk/pom.xml) =================================================================== --- tags/1.2.0/pom.xml (rev 0) +++ tags/1.2.0/pom.xml 2010-05-10 06:27:30 UTC (rev 368) @@ -0,0 +1,363 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>net.objectlab.kit</groupId> + <artifactId>kit-parent</artifactId> + <version>1.2.0</version> + <packaging>pom</packaging> + + <modules> + <module>datecalc-common</module> + <module>datecalc-jdk</module> + <module>datecalc-joda</module> + </modules> + + <name>ObjectLab Kit</name> + + <description> + ObjectLab Kit provides a generic Business Calendar for calculating dates given set(s) of holidays. + Why re-invent the wheel? + </description> + + <inceptionYear>2006</inceptionYear> + <url>http://objectlabkit.sourceforge.net/</url> + + <organization> + <name>Appendium - Portfolio Financing Platform</name> + <url>http://www.appendium.com/</url> + </organization> + + <developers> + <developer> + <id>benoitx</id> + <name>Benoit Xhenseval</name> + <roles> + <role>Team Leader</role> + <role>Developer</role> + </roles> + <organization>Appendium Ltd</organization> + <organizationUrl>http://www.appendium.com/</organizationUrl> + <email>kit AT appendium DOT com</email> + <timezone>+0</timezone> + </developer> + <developer> + <id>marchy</id> + <name>Marcin Jekot</name> + <roles> + <role>Developer</role> + </roles> + <organization>ObjectLab Ltd</organization> + <organizationUrl>http://www.objectlab.co.uk/</organizationUrl> + <email>marchy AT users DOT sourceforge DOT net</email> + <timezone>+2</timezone> + </developer> + </developers> + + <licenses> + <license> + <name>The Apache Software License, Version 2.0</name> + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + + <mailingLists> + <mailingList> + <name>News about ObjectLab's projects (Alerts online)</name> + <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-news</subscribe> + <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-news</unsubscribe> + <post /> + <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-news</archive> + </mailingList> + <mailingList> + <name>Kit Announcements</name> + <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce</subscribe> + <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce</unsubscribe> + <post /> + <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-announce</archive> + </mailingList> + <mailingList> + <name>Kit User</name> + <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-user</subscribe> + <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-user</unsubscribe> + <post>obj...@li...</post> + <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-user</archive> + </mailingList> + <mailingList> + <name>Kit Developers (SVN checkins)</name> + <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-svn</subscribe> + <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-svn</unsubscribe> + <post /> + <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-svn</archive> + </mailingList> + </mailingLists> + + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.5</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>junitperf</groupId> + <artifactId>junitperf</artifactId> + <version>1.8</version> + <scope>test</scope> + </dependency> + </dependencies> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <version>${pom.version}</version> + </dependency> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <version>${pom.version}</version> + <scope>test</scope> + <classifier>tests</classifier> + </dependency> + <dependency> + <groupId>org.apache.felix</groupId> + <artifactId>org.osgi.core</artifactId> + <version>1.0.0</version> + </dependency> + </dependencies> + </dependencyManagement> + + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + <configuration> + <remoteTagging>true</remoteTagging> + <preparationGoals>clean install</preparationGoals> + <autoVersionSubmodules>true</autoVersionSubmodules> + </configuration> + </plugin> + </plugins> + </pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <source>1.5</source> + <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet> + <docletArtifact> + <groupId>gr.spinellis</groupId> + <artifactId>UmlGraph</artifactId> + <version>4.6</version> + </docletArtifact> + <additionalparam> + -inferrel -inferdep -quiet -constructors -visibility -types -postfixpackage + -nodefontsize 9 -nodefontpackagesize 7 -hide java.* -collpackages java.util.* + -link http://java.sun.com/j2se/1.5.0/docs/api/ -link http://joda-time.sourceforge.net/api-release/ + </additionalparam> + </configuration> + <executions> + <execution> + <id>aggregate</id> + <goals> + <goal>aggregate</goal> + </goals> + <phase>site</phase> + </execution> + </executions> + </plugin> + </plugins> + </build> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <site.deploy.url>file:///tmp/site</site.deploy.url> + </properties> + + <profiles> + <profile> + <id>code-sign</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-gpg-plugin</artifactId> + <executions> + <execution> + <id>sign-artifacts</id> + <phase>verify</phase> + <goals> + <goal>sign</goal> + </goals> + </execution> + </executions> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + </plugins> + </build> + </profile> + <profile> + <id>stat-scm</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + <reporting> + <plugins> + <plugin> + <groupId>net.sf</groupId> + <artifactId>stat-scm</artifactId> + <inherited>false</inherited> + </plugin> + </plugins> + </reporting> + </profile> + <profile> + <id>deploy-site</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + <properties> + <!-- the real site deploy url, this is a hack because site:stage (v2.1) doesn't work properly --> + <site.deploy.url>scp://shell.sourceforge.net/home/groups/o/ob/objectlabkit/htdocs</site.deploy.url> + </properties> + </profile> + <profile> + <id>stage-site</id> + <properties> + <!-- stage the site in the /test folder on sourceforge --> + <site.deploy.url>scp://shell.sourceforge.net/home/groups/o/ob/objectlabkit/htdocs/test</site.deploy.url> + </properties> + </profile> + </profiles> + + <scm> + <connection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/tags/1.2.0</connection> + <developerConnection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/tags/1.2.0</developerConnection> + <url>http://objectlabkit.svn.sourceforge.net/viewvc/objectlabkit/tags/1.2.0</url> + </scm> + + <issueManagement> + <system>sourceforge</system> + <url>https://sourceforge.net/tracker/?group_id=175139</url> + </issueManagement> + + <distributionManagement> + <repository> + <id>sonatype-nexus-staging</id> + <name>Sonatype Nexus Staging Repository</name> + <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> + </repository> + <snapshotRepository> + <id>sonatype-nexus-snapshots</id> + <name>Sonatype Nexus Snapshots Repository</name> + <url>http://oss.sonatype.org/content/repositories/snapshots/</url> + </snapshotRepository> + <site> + <id>objectlabkit.sf.net</id> + <url>${site.deploy.url}</url> + </site> + </distributionManagement> + + <reporting> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> + </plugin> + <plugin> + <artifactId>maven-changes-plugin</artifactId> + <configuration> + <issueLinkTemplatePerSystem> + <default>%URL%/?group_id=175139&func=detail&%ISSUE%</default> + </issueLinkTemplatePerSystem> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jxr-plugin</artifactId> + <configuration> + <aggregate>true</aggregate> + <linkJavadoc>true</linkJavadoc> + <javadocDir>apidocs</javadocDir> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-report-plugin</artifactId> + <inherited>false</inherited> + <configuration> + <aggregate>true</aggregate> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <configuration> + <targetJdk>1.5</targetJdk> + <rulesets> + <ruleset>/rulesets/basic.xml</ruleset> + </rulesets> + <minimumTokens>100</minimumTokens> + <linkXref>true</linkXref> + <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>findbugs-maven-plugin</artifactId> + <version>2.0</version> + <configuration> + <effort>Max</effort> + <threshold>Low</threshold> + <includeFilterFile>${project.basedir}/../src/source-checks/findbugs-filter.xml</includeFilterFile> + <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <configuration> + <!-- these do not currently work as they are in the old format + <configLocation>${project.basedir}/../src/source-checks/checkstyle-checks.xml</configLocation> + <configLocation>${project.basedir}/../src/source-checks/objectlab-checks.xml</configLocation> + --> + <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>dashboard-maven-plugin</artifactId> + </plugin> + </plugins> + </reporting> + +</project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-05-10 06:27:25
|
Revision: 367 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=367&view=rev Author: marchy Date: 2010-05-10 06:27:20 +0000 (Mon, 10 May 2010) Log Message: ----------- [maven-release-plugin] prepare release 1.2.0 Modified Paths: -------------- trunk/datecalc-common/pom.xml trunk/datecalc-jdk/pom.xml trunk/datecalc-joda/pom.xml trunk/pom.xml Modified: trunk/datecalc-common/pom.xml =================================================================== --- trunk/datecalc-common/pom.xml 2010-05-10 06:18:00 UTC (rev 366) +++ trunk/datecalc-common/pom.xml 2010-05-10 06:27:20 UTC (rev 367) @@ -4,7 +4,7 @@ <parent> <groupId>net.objectlab.kit</groupId> <artifactId>kit-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> </parent> <artifactId>datecalc-common</artifactId> Modified: trunk/datecalc-jdk/pom.xml =================================================================== --- trunk/datecalc-jdk/pom.xml 2010-05-10 06:18:00 UTC (rev 366) +++ trunk/datecalc-jdk/pom.xml 2010-05-10 06:27:20 UTC (rev 367) @@ -4,7 +4,7 @@ <parent> <groupId>net.objectlab.kit</groupId> <artifactId>kit-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> </parent> <artifactId>datecalc-jdk</artifactId> Modified: trunk/datecalc-joda/pom.xml =================================================================== --- trunk/datecalc-joda/pom.xml 2010-05-10 06:18:00 UTC (rev 366) +++ trunk/datecalc-joda/pom.xml 2010-05-10 06:27:20 UTC (rev 367) @@ -4,7 +4,7 @@ <parent> <groupId>net.objectlab.kit</groupId> <artifactId>kit-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> </parent> <artifactId>datecalc-joda</artifactId> Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-05-10 06:18:00 UTC (rev 366) +++ trunk/pom.xml 2010-05-10 06:27:20 UTC (rev 367) @@ -4,7 +4,7 @@ <groupId>net.objectlab.kit</groupId> <artifactId>kit-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> <packaging>pom</packaging> <modules> @@ -260,9 +260,9 @@ </profiles> <scm> - <connection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/trunk/</connection> - <developerConnection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/trunk/</developerConnection> - <url>http://objectlabkit.svn.sourceforge.net/viewvc/objectlabkit/</url> + <connection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/tags/1.2.0</connection> + <developerConnection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/tags/1.2.0</developerConnection> + <url>http://objectlabkit.svn.sourceforge.net/viewvc/objectlabkit/tags/1.2.0</url> </scm> <issueManagement> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-05-10 06:18:06
|
Revision: 366 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=366&view=rev Author: marchy Date: 2010-05-10 06:18:00 +0000 (Mon, 10 May 2010) Log Message: ----------- we might not have to press enter 4 times to verify release version of sub-modules with this option. Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-05-10 06:17:52 UTC (rev 365) +++ trunk/pom.xml 2010-05-10 06:18:00 UTC (rev 366) @@ -131,6 +131,19 @@ </dependencyManagement> <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + <configuration> + <remoteTagging>true</remoteTagging> + <preparationGoals>clean install</preparationGoals> + <autoVersionSubmodules>true</autoVersionSubmodules> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-05-10 06:17:58
|
Revision: 365 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=365&view=rev Author: marchy Date: 2010-05-10 06:17:52 +0000 (Mon, 10 May 2010) Log Message: ----------- reset to 1.2.0-SNAPSHOT gonna redo the release - not liking the 'kit-parent' in the tag Modified Paths: -------------- trunk/datecalc-common/pom.xml trunk/datecalc-jdk/pom.xml trunk/datecalc-joda/pom.xml trunk/pom.xml Modified: trunk/datecalc-common/pom.xml =================================================================== --- trunk/datecalc-common/pom.xml 2010-05-10 05:09:51 UTC (rev 364) +++ trunk/datecalc-common/pom.xml 2010-05-10 06:17:52 UTC (rev 365) @@ -4,7 +4,7 @@ <parent> <groupId>net.objectlab.kit</groupId> <artifactId>kit-parent</artifactId> - <version>1.2.1-SNAPSHOT</version> + <version>1.2.0-SNAPSHOT</version> </parent> <artifactId>datecalc-common</artifactId> Modified: trunk/datecalc-jdk/pom.xml =================================================================== --- trunk/datecalc-jdk/pom.xml 2010-05-10 05:09:51 UTC (rev 364) +++ trunk/datecalc-jdk/pom.xml 2010-05-10 06:17:52 UTC (rev 365) @@ -4,7 +4,7 @@ <parent> <groupId>net.objectlab.kit</groupId> <artifactId>kit-parent</artifactId> - <version>1.2.1-SNAPSHOT</version> + <version>1.2.0-SNAPSHOT</version> </parent> <artifactId>datecalc-jdk</artifactId> Modified: trunk/datecalc-joda/pom.xml =================================================================== --- trunk/datecalc-joda/pom.xml 2010-05-10 05:09:51 UTC (rev 364) +++ trunk/datecalc-joda/pom.xml 2010-05-10 06:17:52 UTC (rev 365) @@ -4,7 +4,7 @@ <parent> <groupId>net.objectlab.kit</groupId> <artifactId>kit-parent</artifactId> - <version>1.2.1-SNAPSHOT</version> + <version>1.2.0-SNAPSHOT</version> </parent> <artifactId>datecalc-joda</artifactId> Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-05-10 05:09:51 UTC (rev 364) +++ trunk/pom.xml 2010-05-10 06:17:52 UTC (rev 365) @@ -4,7 +4,7 @@ <groupId>net.objectlab.kit</groupId> <artifactId>kit-parent</artifactId> - <version>1.2.1-SNAPSHOT</version> + <version>1.2.0-SNAPSHOT</version> <packaging>pom</packaging> <modules> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-05-10 05:09:57
|
Revision: 364 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=364&view=rev Author: marchy Date: 2010-05-10 05:09:51 +0000 (Mon, 10 May 2010) Log Message: ----------- [maven-release-plugin] prepare for next development iteration Modified Paths: -------------- trunk/datecalc-common/pom.xml trunk/datecalc-jdk/pom.xml trunk/datecalc-joda/pom.xml trunk/pom.xml Modified: trunk/datecalc-common/pom.xml =================================================================== --- trunk/datecalc-common/pom.xml 2010-05-10 05:09:44 UTC (rev 363) +++ trunk/datecalc-common/pom.xml 2010-05-10 05:09:51 UTC (rev 364) @@ -4,7 +4,7 @@ <parent> <groupId>net.objectlab.kit</groupId> <artifactId>kit-parent</artifactId> - <version>1.2.0</version> + <version>1.2.1-SNAPSHOT</version> </parent> <artifactId>datecalc-common</artifactId> Modified: trunk/datecalc-jdk/pom.xml =================================================================== --- trunk/datecalc-jdk/pom.xml 2010-05-10 05:09:44 UTC (rev 363) +++ trunk/datecalc-jdk/pom.xml 2010-05-10 05:09:51 UTC (rev 364) @@ -4,7 +4,7 @@ <parent> <groupId>net.objectlab.kit</groupId> <artifactId>kit-parent</artifactId> - <version>1.2.0</version> + <version>1.2.1-SNAPSHOT</version> </parent> <artifactId>datecalc-jdk</artifactId> Modified: trunk/datecalc-joda/pom.xml =================================================================== --- trunk/datecalc-joda/pom.xml 2010-05-10 05:09:44 UTC (rev 363) +++ trunk/datecalc-joda/pom.xml 2010-05-10 05:09:51 UTC (rev 364) @@ -4,7 +4,7 @@ <parent> <groupId>net.objectlab.kit</groupId> <artifactId>kit-parent</artifactId> - <version>1.2.0</version> + <version>1.2.1-SNAPSHOT</version> </parent> <artifactId>datecalc-joda</artifactId> Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-05-10 05:09:44 UTC (rev 363) +++ trunk/pom.xml 2010-05-10 05:09:51 UTC (rev 364) @@ -4,7 +4,7 @@ <groupId>net.objectlab.kit</groupId> <artifactId>kit-parent</artifactId> - <version>1.2.0</version> + <version>1.2.1-SNAPSHOT</version> <packaging>pom</packaging> <modules> @@ -247,9 +247,9 @@ </profiles> <scm> - <connection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/tags/kit-parent-1.2.0</connection> - <developerConnection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/tags/kit-parent-1.2.0</developerConnection> - <url>http://objectlabkit.svn.sourceforge.net/viewvc/objectlabkit/tags/kit-parent-1.2.0</url> + <connection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/trunk/</connection> + <developerConnection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/trunk/</developerConnection> + <url>http://objectlabkit.svn.sourceforge.net/viewvc/objectlabkit/</url> </scm> <issueManagement> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-05-10 05:09:50
|
Revision: 363 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=363&view=rev Author: marchy Date: 2010-05-10 05:09:44 +0000 (Mon, 10 May 2010) Log Message: ----------- [maven-release-plugin] copy for tag kit-parent-1.2.0 Added Paths: ----------- tags/kit-parent-1.2.0/ tags/kit-parent-1.2.0/datecalc-common/pom.xml tags/kit-parent-1.2.0/datecalc-jdk/pom.xml tags/kit-parent-1.2.0/datecalc-joda/pom.xml tags/kit-parent-1.2.0/pom.xml Removed Paths: ------------- tags/kit-parent-1.2.0/datecalc-common/pom.xml tags/kit-parent-1.2.0/datecalc-jdk/pom.xml tags/kit-parent-1.2.0/datecalc-joda/pom.xml tags/kit-parent-1.2.0/pom.xml Deleted: tags/kit-parent-1.2.0/datecalc-common/pom.xml =================================================================== --- trunk/datecalc-common/pom.xml 2010-05-10 03:26:01 UTC (rev 361) +++ tags/kit-parent-1.2.0/datecalc-common/pom.xml 2010-05-10 05:09:44 UTC (rev 363) @@ -1,47 +0,0 @@ -<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> - - <parent> - <groupId>net.objectlab.kit</groupId> - <artifactId>kit-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> - </parent> - - <artifactId>datecalc-common</artifactId> - <packaging>bundle</packaging> - - <name>Date Calculator Common</name> - <description>Common Date Calculator Code</description> - - <build> - <plugins> - <plugin> - <groupId>org.apache.felix</groupId> - <artifactId>maven-bundle-plugin</artifactId> - <extensions>true</extensions> - <configuration> - <instructions> - <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> - <Private-Package /> - <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> - <Bundle-Version>${pom.version}</Bundle-Version> - <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> - </instructions> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>test-jar</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> - -</project> \ No newline at end of file Copied: tags/kit-parent-1.2.0/datecalc-common/pom.xml (from rev 362, trunk/datecalc-common/pom.xml) =================================================================== --- tags/kit-parent-1.2.0/datecalc-common/pom.xml (rev 0) +++ tags/kit-parent-1.2.0/datecalc-common/pom.xml 2010-05-10 05:09:44 UTC (rev 363) @@ -0,0 +1,46 @@ +<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> + + <parent> + <groupId>net.objectlab.kit</groupId> + <artifactId>kit-parent</artifactId> + <version>1.2.0</version> + </parent> + + <artifactId>datecalc-common</artifactId> + <packaging>bundle</packaging> + + <name>Date Calculator Common</name> + <description>Common Date Calculator Code</description> + + <build> + <plugins> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <instructions> + <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> + <Private-Package /> + <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> + <Bundle-Version>${pom.version}</Bundle-Version> + <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> + </instructions> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project> \ No newline at end of file Deleted: tags/kit-parent-1.2.0/datecalc-jdk/pom.xml =================================================================== --- trunk/datecalc-jdk/pom.xml 2010-05-10 03:26:01 UTC (rev 361) +++ tags/kit-parent-1.2.0/datecalc-jdk/pom.xml 2010-05-10 05:09:44 UTC (rev 363) @@ -1,108 +0,0 @@ -<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> - - <parent> - <groupId>net.objectlab.kit</groupId> - <artifactId>kit-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> - </parent> - - <artifactId>datecalc-jdk</artifactId> - <packaging>bundle</packaging> - - <name>Date Calculator for JDK</name> - <description>Date Calculator methods for JDK</description> - - <dependencies> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - </dependency> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - <scope>test</scope> - <classifier>tests</classifier> - </dependency> - </dependencies> - - <build> - <plugins> - <!-- UNIT tests --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <version>2.5</version> - <configuration> - <skip>true</skip> - </configuration> - <executions> - <execution> - <id>surefire-test</id> - <phase>test</phase> - <goals> - <goal>test</goal> - </goals> - <configuration> - <skip>false</skip> - <excludes> - <exclude>**/perf/**</exclude> - </excludes> - </configuration> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.felix</groupId> - <artifactId>maven-bundle-plugin</artifactId> - <extensions>true</extensions> - <configuration> - <instructions> - <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> - <Private-Package /> - <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> - <Bundle-Version>${pom.version}</Bundle-Version> - <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> - </instructions> - </configuration> - </plugin> - </plugins> - </build> - - <profiles> - <profile> - <id>perf-testing</id> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <version>2.5</version> - <configuration> - <skip>true</skip> - </configuration> - <executions> - <execution> - <id>surefire-perf</id> - <!-- use it mvn test -P perf-testing --> - <phase>test</phase> - <goals> - <goal>test</goal> - </goals> - <configuration> - <argLine>-Xms256m -Xmx1024m</argLine> - <skip>false</skip> - <includes> - <include>**/perf/*Test.java</include> - </includes> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - </profiles> - -</project> \ No newline at end of file Copied: tags/kit-parent-1.2.0/datecalc-jdk/pom.xml (from rev 362, trunk/datecalc-jdk/pom.xml) =================================================================== --- tags/kit-parent-1.2.0/datecalc-jdk/pom.xml (rev 0) +++ tags/kit-parent-1.2.0/datecalc-jdk/pom.xml 2010-05-10 05:09:44 UTC (rev 363) @@ -0,0 +1,107 @@ +<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> + + <parent> + <groupId>net.objectlab.kit</groupId> + <artifactId>kit-parent</artifactId> + <version>1.2.0</version> + </parent> + + <artifactId>datecalc-jdk</artifactId> + <packaging>bundle</packaging> + + <name>Date Calculator for JDK</name> + <description>Date Calculator methods for JDK</description> + + <dependencies> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + </dependency> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <scope>test</scope> + <classifier>tests</classifier> + </dependency> + </dependencies> + + <build> + <plugins> + <!-- UNIT tests --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.5</version> + <configuration> + <skip>true</skip> + </configuration> + <executions> + <execution> + <id>surefire-test</id> + <phase>test</phase> + <goals> + <goal>test</goal> + </goals> + <configuration> + <skip>false</skip> + <excludes> + <exclude>**/perf/**</exclude> + </excludes> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <instructions> + <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> + <Private-Package /> + <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> + <Bundle-Version>${pom.version}</Bundle-Version> + <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> + </instructions> + </configuration> + </plugin> + </plugins> + </build> + + <profiles> + <profile> + <id>perf-testing</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.5</version> + <configuration> + <skip>true</skip> + </configuration> + <executions> + <execution> + <id>surefire-perf</id> + <!-- use it mvn test -P perf-testing --> + <phase>test</phase> + <goals> + <goal>test</goal> + </goals> + <configuration> + <argLine>-Xms256m -Xmx1024m</argLine> + <skip>false</skip> + <includes> + <include>**/perf/*Test.java</include> + </includes> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + +</project> \ No newline at end of file Deleted: tags/kit-parent-1.2.0/datecalc-joda/pom.xml =================================================================== --- trunk/datecalc-joda/pom.xml 2010-05-10 03:26:01 UTC (rev 361) +++ tags/kit-parent-1.2.0/datecalc-joda/pom.xml 2010-05-10 05:09:44 UTC (rev 363) @@ -1,113 +0,0 @@ -<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> - - <parent> - <groupId>net.objectlab.kit</groupId> - <artifactId>kit-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> - </parent> - - <artifactId>datecalc-joda</artifactId> - <packaging>bundle</packaging> - - <name>Date Calculator for Joda</name> - <description>Date Calculator methods for Joda</description> - - <dependencies> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - </dependency> - <dependency> - <groupId>joda-time</groupId> - <artifactId>joda-time</artifactId> - <version>1.6</version> - </dependency> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - <scope>test</scope> - <classifier>tests</classifier> - </dependency> - </dependencies> - - <build> - <plugins> - <!-- UNIT tests --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <version>2.5</version> - <configuration> - <skip>true</skip> - </configuration> - <executions> - <execution> - <id>surefire-test</id> - <phase>test</phase> - <goals> - <goal>test</goal> - </goals> - <configuration> - <skip>false</skip> - <excludes> - <exclude>**/perf/**</exclude> - </excludes> - </configuration> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.felix</groupId> - <artifactId>maven-bundle-plugin</artifactId> - <extensions>true</extensions> - <configuration> - <instructions> - <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> - <Private-Package /> - <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> - <Bundle-Version>${pom.version}</Bundle-Version> - <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> - </instructions> - </configuration> - </plugin> - </plugins> - </build> - - <profiles> - <profile> - <id>perf-testing</id> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <version>2.5</version> - <configuration> - <skip>true</skip> - </configuration> - <executions> - <execution> - <id>surefire-perf</id> - <!-- use it mvn test -P perf-testing --> - <phase>test</phase> - <goals> - <goal>test</goal> - </goals> - <configuration> - <argLine>-Xms256m -Xmx1024m</argLine> - <skip>false</skip> - <includes> - <include>**/perf/*Test.java</include> - </includes> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - </profiles> - -</project> \ No newline at end of file Copied: tags/kit-parent-1.2.0/datecalc-joda/pom.xml (from rev 362, trunk/datecalc-joda/pom.xml) =================================================================== --- tags/kit-parent-1.2.0/datecalc-joda/pom.xml (rev 0) +++ tags/kit-parent-1.2.0/datecalc-joda/pom.xml 2010-05-10 05:09:44 UTC (rev 363) @@ -0,0 +1,112 @@ +<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> + + <parent> + <groupId>net.objectlab.kit</groupId> + <artifactId>kit-parent</artifactId> + <version>1.2.0</version> + </parent> + + <artifactId>datecalc-joda</artifactId> + <packaging>bundle</packaging> + + <name>Date Calculator for Joda</name> + <description>Date Calculator methods for Joda</description> + + <dependencies> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + </dependency> + <dependency> + <groupId>joda-time</groupId> + <artifactId>joda-time</artifactId> + <version>1.6</version> + </dependency> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <scope>test</scope> + <classifier>tests</classifier> + </dependency> + </dependencies> + + <build> + <plugins> + <!-- UNIT tests --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.5</version> + <configuration> + <skip>true</skip> + </configuration> + <executions> + <execution> + <id>surefire-test</id> + <phase>test</phase> + <goals> + <goal>test</goal> + </goals> + <configuration> + <skip>false</skip> + <excludes> + <exclude>**/perf/**</exclude> + </excludes> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <instructions> + <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> + <Private-Package /> + <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> + <Bundle-Version>${pom.version}</Bundle-Version> + <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> + </instructions> + </configuration> + </plugin> + </plugins> + </build> + + <profiles> + <profile> + <id>perf-testing</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.5</version> + <configuration> + <skip>true</skip> + </configuration> + <executions> + <execution> + <id>surefire-perf</id> + <!-- use it mvn test -P perf-testing --> + <phase>test</phase> + <goals> + <goal>test</goal> + </goals> + <configuration> + <argLine>-Xms256m -Xmx1024m</argLine> + <skip>false</skip> + <includes> + <include>**/perf/*Test.java</include> + </includes> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + +</project> \ No newline at end of file Deleted: tags/kit-parent-1.2.0/pom.xml =================================================================== --- trunk/pom.xml 2010-05-10 03:26:01 UTC (rev 361) +++ tags/kit-parent-1.2.0/pom.xml 2010-05-10 05:09:44 UTC (rev 363) @@ -1,351 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> - <modelVersion>4.0.0</modelVersion> - - <groupId>net.objectlab.kit</groupId> - <artifactId>kit-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> - <packaging>pom</packaging> - - <modules> - <module>datecalc-common</module> - <module>datecalc-jdk</module> - <module>datecalc-joda</module> - </modules> - - <name>ObjectLab Kit</name> - - <description> - ObjectLab Kit provides a generic Business Calendar for calculating dates given set(s) of holidays. - Why re-invent the wheel? - </description> - - <inceptionYear>2006</inceptionYear> - <url>http://objectlabkit.sourceforge.net/</url> - - <organization> - <name>Appendium - Portfolio Financing Platform</name> - <url>http://www.appendium.com/</url> - </organization> - - <developers> - <developer> - <id>benoitx</id> - <name>Benoit Xhenseval</name> - <roles> - <role>Team Leader</role> - <role>Developer</role> - </roles> - <organization>Appendium Ltd</organization> - <organizationUrl>http://www.appendium.com/</organizationUrl> - <email>kit AT appendium DOT com</email> - <timezone>+0</timezone> - </developer> - <developer> - <id>marchy</id> - <name>Marcin Jekot</name> - <roles> - <role>Developer</role> - </roles> - <organization>ObjectLab Ltd</organization> - <organizationUrl>http://www.objectlab.co.uk/</organizationUrl> - <email>marchy AT users DOT sourceforge DOT net</email> - <timezone>+2</timezone> - </developer> - </developers> - - <licenses> - <license> - <name>The Apache Software License, Version 2.0</name> - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> - <distribution>repo</distribution> - </license> - </licenses> - - <mailingLists> - <mailingList> - <name>News about ObjectLab's projects (Alerts online)</name> - <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-news</subscribe> - <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-news</unsubscribe> - <post /> - <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-news</archive> - </mailingList> - <mailingList> - <name>Kit Announcements</name> - <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce</subscribe> - <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce</unsubscribe> - <post /> - <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-announce</archive> - </mailingList> - <mailingList> - <name>Kit User</name> - <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-user</subscribe> - <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-user</unsubscribe> - <post>obj...@li...</post> - <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-user</archive> - </mailingList> - <mailingList> - <name>Kit Developers (SVN checkins)</name> - <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-svn</subscribe> - <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-svn</unsubscribe> - <post /> - <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-svn</archive> - </mailingList> - </mailingLists> - - <dependencies> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.5</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>junitperf</groupId> - <artifactId>junitperf</artifactId> - <version>1.8</version> - <scope>test</scope> - </dependency> - </dependencies> - - <dependencyManagement> - <dependencies> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - <version>${pom.version}</version> - </dependency> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - <version>${pom.version}</version> - <scope>test</scope> - <classifier>tests</classifier> - </dependency> - <dependency> - <groupId>org.apache.felix</groupId> - <artifactId>org.osgi.core</artifactId> - <version>1.0.0</version> - </dependency> - </dependencies> - </dependencyManagement> - - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>1.5</source> - <target>1.5</target> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <configuration> - <source>1.5</source> - <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet> - <docletArtifact> - <groupId>gr.spinellis</groupId> - <artifactId>UmlGraph</artifactId> - <version>4.6</version> - </docletArtifact> - <additionalparam> - -inferrel -inferdep -quiet -constructors -visibility -types -postfixpackage - -nodefontsize 9 -nodefontpackagesize 7 -hide java.* -collpackages java.util.* - -link http://java.sun.com/j2se/1.5.0/docs/api/ -link http://joda-time.sourceforge.net/api-release/ - </additionalparam> - </configuration> - <executions> - <execution> - <id>aggregate</id> - <goals> - <goal>aggregate</goal> - </goals> - <phase>site</phase> - </execution> - </executions> - </plugin> - </plugins> - </build> - - <properties> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <site.deploy.url>file:///tmp/site</site.deploy.url> - </properties> - - <profiles> - <profile> - <id>code-sign</id> - <activation> - <property> - <name>performRelease</name> - <value>true</value> - </property> - </activation> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-gpg-plugin</artifactId> - <executions> - <execution> - <id>sign-artifacts</id> - <phase>verify</phase> - <goals> - <goal>sign</goal> - </goals> - </execution> - </executions> - <configuration> - <source>1.5</source> - <target>1.5</target> - </configuration> - </plugin> - </plugins> - </build> - </profile> - <profile> - <id>stat-scm</id> - <activation> - <property> - <name>performRelease</name> - <value>true</value> - </property> - </activation> - <reporting> - <plugins> - <plugin> - <groupId>net.sf</groupId> - <artifactId>stat-scm</artifactId> - <inherited>false</inherited> - </plugin> - </plugins> - </reporting> - </profile> - <profile> - <id>deploy-site</id> - <activation> - <property> - <name>performRelease</name> - <value>true</value> - </property> - </activation> - <properties> - <!-- the real site deploy url, this is a hack because site:stage (v2.1) doesn't work properly --> - <site.deploy.url>scp://shell.sourceforge.net/home/groups/o/ob/objectlabkit/htdocs</site.deploy.url> - </properties> - </profile> - <profile> - <id>stage-site</id> - <properties> - <!-- stage the site in the /test folder on sourceforge --> - <site.deploy.url>scp://shell.sourceforge.net/home/groups/o/ob/objectlabkit/htdocs/test</site.deploy.url> - </properties> - </profile> - </profiles> - - <scm> - <connection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/trunk/</connection> - <developerConnection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/trunk/</developerConnection> - <url>http://objectlabkit.svn.sourceforge.net/viewvc/objectlabkit/</url> - </scm> - - <issueManagement> - <system>sourceforge</system> - <url>https://sourceforge.net/tracker/?group_id=175139</url> - </issueManagement> - - <distributionManagement> - <repository> - <id>sonatype-nexus-staging</id> - <name>Sonatype Nexus Staging Repository</name> - <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> - </repository> - <snapshotRepository> - <id>sonatype-nexus-snapshots</id> - <name>Sonatype Nexus Snapshots Repository</name> - <url>http://oss.sonatype.org/content/repositories/snapshots/</url> - </snapshotRepository> - <site> - <id>objectlabkit.sf.net</id> - <url>${site.deploy.url}</url> - </site> - </distributionManagement> - - <reporting> - <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>cobertura-maven-plugin</artifactId> - </plugin> - <plugin> - <artifactId>maven-changes-plugin</artifactId> - <configuration> - <issueLinkTemplatePerSystem> - <default>%URL%/?group_id=175139&func=detail&%ISSUE%</default> - </issueLinkTemplatePerSystem> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jxr-plugin</artifactId> - <configuration> - <aggregate>true</aggregate> - <linkJavadoc>true</linkJavadoc> - <javadocDir>apidocs</javadocDir> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-report-plugin</artifactId> - <inherited>false</inherited> - <configuration> - <aggregate>true</aggregate> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-pmd-plugin</artifactId> - <configuration> - <targetJdk>1.5</targetJdk> - <rulesets> - <ruleset>/rulesets/basic.xml</ruleset> - </rulesets> - <minimumTokens>100</minimumTokens> - <linkXref>true</linkXref> - <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> - </configuration> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>findbugs-maven-plugin</artifactId> - <version>2.0</version> - <configuration> - <effort>Max</effort> - <threshold>Low</threshold> - <includeFilterFile>${project.basedir}/../src/source-checks/findbugs-filter.xml</includeFilterFile> - <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - <configuration> - <!-- these do not currently work as they are in the old format - <configLocation>${project.basedir}/../src/source-checks/checkstyle-checks.xml</configLocation> - <configLocation>${project.basedir}/../src/source-checks/objectlab-checks.xml</configLocation> - --> - <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> - </configuration> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>dashboard-maven-plugin</artifactId> - </plugin> - </plugins> - </reporting> - -</project> Copied: tags/kit-parent-1.2.0/pom.xml (from rev 362, trunk/pom.xml) =================================================================== --- tags/kit-parent-1.2.0/pom.xml (rev 0) +++ tags/kit-parent-1.2.0/pom.xml 2010-05-10 05:09:44 UTC (rev 363) @@ -0,0 +1,350 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>net.objectlab.kit</groupId> + <artifactId>kit-parent</artifactId> + <version>1.2.0</version> + <packaging>pom</packaging> + + <modules> + <module>datecalc-common</module> + <module>datecalc-jdk</module> + <module>datecalc-joda</module> + </modules> + + <name>ObjectLab Kit</name> + + <description> + ObjectLab Kit provides a generic Business Calendar for calculating dates given set(s) of holidays. + Why re-invent the wheel? + </description> + + <inceptionYear>2006</inceptionYear> + <url>http://objectlabkit.sourceforge.net/</url> + + <organization> + <name>Appendium - Portfolio Financing Platform</name> + <url>http://www.appendium.com/</url> + </organization> + + <developers> + <developer> + <id>benoitx</id> + <name>Benoit Xhenseval</name> + <roles> + <role>Team Leader</role> + <role>Developer</role> + </roles> + <organization>Appendium Ltd</organization> + <organizationUrl>http://www.appendium.com/</organizationUrl> + <email>kit AT appendium DOT com</email> + <timezone>+0</timezone> + </developer> + <developer> + <id>marchy</id> + <name>Marcin Jekot</name> + <roles> + <role>Developer</role> + </roles> + <organization>ObjectLab Ltd</organization> + <organizationUrl>http://www.objectlab.co.uk/</organizationUrl> + <email>marchy AT users DOT sourceforge DOT net</email> + <timezone>+2</timezone> + </developer> + </developers> + + <licenses> + <license> + <name>The Apache Software License, Version 2.0</name> + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + + <mailingLists> + <mailingList> + <name>News about ObjectLab's projects (Alerts online)</name> + <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-news</subscribe> + <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-news</unsubscribe> + <post /> + <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-news</archive> + </mailingList> + <mailingList> + <name>Kit Announcements</name> + <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce</subscribe> + <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce</unsubscribe> + <post /> + <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-announce</archive> + </mailingList> + <mailingList> + <name>Kit User</name> + <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-user</subscribe> + <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-user</unsubscribe> + <post>obj...@li...</post> + <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-user</archive> + </mailingList> + <mailingList> + <name>Kit Developers (SVN checkins)</name> + <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-svn</subscribe> + <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-svn</unsubscribe> + <post /> + <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-svn</archive> + </mailingList> + </mailingLists> + + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.5</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>junitperf</groupId> + <artifactId>junitperf</artifactId> + <version>1.8</version> + <scope>test</scope> + </dependency> + </dependencies> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <version>${pom.version}</version> + </dependency> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <version>${pom.version}</version> + <scope>test</scope> + <classifier>tests</classifier> + </dependency> + <dependency> + <groupId>org.apache.felix</groupId> + <artifactId>org.osgi.core</artifactId> + <version>1.0.0</version> + </dependency> + </dependencies> + </dependencyManagement> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <source>1.5</source> + <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet> + <docletArtifact> + <groupId>gr.spinellis</groupId> + <artifactId>UmlGraph</artifactId> + <version>4.6</version> + </docletArtifact> + <additionalparam> + -inferrel -inferdep -quiet -constructors -visibility -types -postfixpackage + -nodefontsize 9 -nodefontpackagesize 7 -hide java.* -collpackages java.util.* + -link http://java.sun.com/j2se/1.5.0/docs/api/ -link http://joda-time.sourceforge.net/api-release/ + </additionalparam> + </configuration> + <executions> + <execution> + <id>aggregate</id> + <goals> + <goal>aggregate</goal> + </goals> + <phase>site</phase> + </execution> + </executions> + </plugin> + </plugins> + </build> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <site.deploy.url>file:///tmp/site</site.deploy.url> + </properties> + + <profiles> + <profile> + <id>code-sign</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-gpg-plugin</artifactId> + <executions> + <execution> + <id>sign-artifacts</id> + <phase>verify</phase> + <goals> + <goal>sign</goal> + </goals> + </execution> + </executions> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + </plugins> + </build> + </profile> + <profile> + <id>stat-scm</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + <reporting> + <plugins> + <plugin> + <groupId>net.sf</groupId> + <artifactId>stat-scm</artifactId> + <inherited>false</inherited> + </plugin> + </plugins> + </reporting> + </profile> + <profile> + <id>deploy-site</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + <properties> + <!-- the real site deploy url, this is a hack because site:stage (v2.1) doesn't work properly --> + <site.deploy.url>scp://shell.sourceforge.net/home/groups/o/ob/objectlabkit/htdocs</site.deploy.url> + </properties> + </profile> + <profile> + <id>stage-site</id> + <properties> + <!-- stage the site in the /test folder on sourceforge --> + <site.deploy.url>scp://shell.sourceforge.net/home/groups/o/ob/objectlabkit/htdocs/test</site.deploy.url> + </properties> + </profile> + </profiles> + + <scm> + <connection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/tags/kit-parent-1.2.0</connection> + <developerConnection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/tags/kit-parent-1.2.0</developerConnection> + <url>http://objectlabkit.svn.sourceforge.net/viewvc/objectlabkit/tags/kit-parent-1.2.0</url> + </scm> + + <issueManagement> + <system>sourceforge</system> + <url>https://sourceforge.net/tracker/?group_id=175139</url> + </issueManagement> + + <distributionManagement> + <repository> + <id>sonatype-nexus-staging</id> + <name>Sonatype Nexus Staging Repository</name> + <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> + </repository> + <snapshotRepository> + <id>sonatype-nexus-snapshots</id> + <name>Sonatype Nexus Snapshots Repository</name> + <url>http://oss.sonatype.org/content/repositories/snapshots/</url> + </snapshotRepository> + <site> + <id>objectlabkit.sf.net</id> + <url>${site.deploy.url}</url> + </site> + </distributionManagement> + + <reporting> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> + </plugin> + <plugin> + <artifactId>maven-changes-plugin</artifactId> + <configuration> + <issueLinkTemplatePerSystem> + <default>%URL%/?group_id=175139&func=detail&%ISSUE%</default> + </issueLinkTemplatePerSystem> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jxr-plugin</artifactId> + <configuration> + <aggregate>true</aggregate> + <linkJavadoc>true</linkJavadoc> + <javadocDir>apidocs</javadocDir> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-report-plugin</artifactId> + <inherited>false</inherited> + <configuration> + <aggregate>true</aggregate> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <configuration> + <targetJdk>1.5</targetJdk> + <rulesets> + <ruleset>/rulesets/basic.xml</ruleset> + </rulesets> + <minimumTokens>100</minimumTokens> + <linkXref>true</linkXref> + <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>findbugs-maven-plugin</artifactId> + <version>2.0</version> + <configuration> + <effort>Max</effort> + <threshold>Low</threshold> + <includeFilterFile>${project.basedir}/../src/source-checks/findbugs-filter.xml</includeFilterFile> + <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <configuration> + <!-- these do not currently work as they are in the old format + <configLocation>${project.basedir}/../src/source-checks/checkstyle-checks.xml</configLocation> + <configLocation>${project.basedir}/../src/source-checks/objectlab-checks.xml</configLocation> + --> + <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>dashboard-maven-plugin</artifactId> + </plugin> + </plugins> + </reporting> + +</project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-05-10 05:09:41
|
Revision: 362 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=362&view=rev Author: marchy Date: 2010-05-10 05:09:33 +0000 (Mon, 10 May 2010) Log Message: ----------- [maven-release-plugin] prepare release kit-parent-1.2.0 Modified Paths: -------------- trunk/datecalc-common/pom.xml trunk/datecalc-jdk/pom.xml trunk/datecalc-joda/pom.xml trunk/pom.xml Modified: trunk/datecalc-common/pom.xml =================================================================== --- trunk/datecalc-common/pom.xml 2010-05-10 03:26:01 UTC (rev 361) +++ trunk/datecalc-common/pom.xml 2010-05-10 05:09:33 UTC (rev 362) @@ -1,47 +1,46 @@ -<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> - - <parent> - <groupId>net.objectlab.kit</groupId> - <artifactId>kit-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> - </parent> - - <artifactId>datecalc-common</artifactId> - <packaging>bundle</packaging> - - <name>Date Calculator Common</name> - <description>Common Date Calculator Code</description> - - <build> - <plugins> - <plugin> - <groupId>org.apache.felix</groupId> - <artifactId>maven-bundle-plugin</artifactId> - <extensions>true</extensions> - <configuration> - <instructions> - <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> - <Private-Package /> - <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> - <Bundle-Version>${pom.version}</Bundle-Version> - <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> - </instructions> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>test-jar</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> - +<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> + + <parent> + <groupId>net.objectlab.kit</groupId> + <artifactId>kit-parent</artifactId> + <version>1.2.0</version> + </parent> + + <artifactId>datecalc-common</artifactId> + <packaging>bundle</packaging> + + <name>Date Calculator Common</name> + <description>Common Date Calculator Code</description> + + <build> + <plugins> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <instructions> + <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> + <Private-Package /> + <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> + <Bundle-Version>${pom.version}</Bundle-Version> + <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> + </instructions> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </project> \ No newline at end of file Modified: trunk/datecalc-jdk/pom.xml =================================================================== --- trunk/datecalc-jdk/pom.xml 2010-05-10 03:26:01 UTC (rev 361) +++ trunk/datecalc-jdk/pom.xml 2010-05-10 05:09:33 UTC (rev 362) @@ -1,108 +1,107 @@ -<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> - - <parent> - <groupId>net.objectlab.kit</groupId> - <artifactId>kit-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> - </parent> - - <artifactId>datecalc-jdk</artifactId> - <packaging>bundle</packaging> - - <name>Date Calculator for JDK</name> - <description>Date Calculator methods for JDK</description> - - <dependencies> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - </dependency> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - <scope>test</scope> - <classifier>tests</classifier> - </dependency> - </dependencies> - - <build> - <plugins> - <!-- UNIT tests --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <version>2.5</version> - <configuration> - <skip>true</skip> - </configuration> - <executions> - <execution> - <id>surefire-test</id> - <phase>test</phase> - <goals> - <goal>test</goal> - </goals> - <configuration> - <skip>false</skip> - <excludes> - <exclude>**/perf/**</exclude> - </excludes> - </configuration> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.felix</groupId> - <artifactId>maven-bundle-plugin</artifactId> - <extensions>true</extensions> - <configuration> - <instructions> - <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> - <Private-Package /> - <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> - <Bundle-Version>${pom.version}</Bundle-Version> - <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> - </instructions> - </configuration> - </plugin> - </plugins> - </build> - - <profiles> - <profile> - <id>perf-testing</id> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <version>2.5</version> - <configuration> - <skip>true</skip> - </configuration> - <executions> - <execution> - <id>surefire-perf</id> - <!-- use it mvn test -P perf-testing --> - <phase>test</phase> - <goals> - <goal>test</goal> - </goals> - <configuration> - <argLine>-Xms256m -Xmx1024m</argLine> - <skip>false</skip> - <includes> - <include>**/perf/*Test.java</include> - </includes> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - </profiles> - +<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> + + <parent> + <groupId>net.objectlab.kit</groupId> + <artifactId>kit-parent</artifactId> + <version>1.2.0</version> + </parent> + + <artifactId>datecalc-jdk</artifactId> + <packaging>bundle</packaging> + + <name>Date Calculator for JDK</name> + <description>Date Calculator methods for JDK</description> + + <dependencies> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + </dependency> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <scope>test</scope> + <classifier>tests</classifier> + </dependency> + </dependencies> + + <build> + <plugins> + <!-- UNIT tests --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.5</version> + <configuration> + <skip>true</skip> + </configuration> + <executions> + <execution> + <id>surefire-test</id> + <phase>test</phase> + <goals> + <goal>test</goal> + </goals> + <configuration> + <skip>false</skip> + <excludes> + <exclude>**/perf/**</exclude> + </excludes> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <instructions> + <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> + <Private-Package /> + <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> + <Bundle-Version>${pom.version}</Bundle-Version> + <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> + </instructions> + </configuration> + </plugin> + </plugins> + </build> + + <profiles> + <profile> + <id>perf-testing</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.5</version> + <configuration> + <skip>true</skip> + </configuration> + <executions> + <execution> + <id>surefire-perf</id> + <!-- use it mvn test -P perf-testing --> + <phase>test</phase> + <goals> + <goal>test</goal> + </goals> + <configuration> + <argLine>-Xms256m -Xmx1024m</argLine> + <skip>false</skip> + <includes> + <include>**/perf/*Test.java</include> + </includes> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + </project> \ No newline at end of file Modified: trunk/datecalc-joda/pom.xml =================================================================== --- trunk/datecalc-joda/pom.xml 2010-05-10 03:26:01 UTC (rev 361) +++ trunk/datecalc-joda/pom.xml 2010-05-10 05:09:33 UTC (rev 362) @@ -1,113 +1,112 @@ -<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> - - <parent> - <groupId>net.objectlab.kit</groupId> - <artifactId>kit-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> - </parent> - - <artifactId>datecalc-joda</artifactId> - <packaging>bundle</packaging> - - <name>Date Calculator for Joda</name> - <description>Date Calculator methods for Joda</description> - - <dependencies> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - </dependency> - <dependency> - <groupId>joda-time</groupId> - <artifactId>joda-time</artifactId> - <version>1.6</version> - </dependency> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - <scope>test</scope> - <classifier>tests</classifier> - </dependency> - </dependencies> - - <build> - <plugins> - <!-- UNIT tests --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <version>2.5</version> - <configuration> - <skip>true</skip> - </configuration> - <executions> - <execution> - <id>surefire-test</id> - <phase>test</phase> - <goals> - <goal>test</goal> - </goals> - <configuration> - <skip>false</skip> - <excludes> - <exclude>**/perf/**</exclude> - </excludes> - </configuration> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.felix</groupId> - <artifactId>maven-bundle-plugin</artifactId> - <extensions>true</extensions> - <configuration> - <instructions> - <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> - <Private-Package /> - <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> - <Bundle-Version>${pom.version}</Bundle-Version> - <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> - </instructions> - </configuration> - </plugin> - </plugins> - </build> - - <profiles> - <profile> - <id>perf-testing</id> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <version>2.5</version> - <configuration> - <skip>true</skip> - </configuration> - <executions> - <execution> - <id>surefire-perf</id> - <!-- use it mvn test -P perf-testing --> - <phase>test</phase> - <goals> - <goal>test</goal> - </goals> - <configuration> - <argLine>-Xms256m -Xmx1024m</argLine> - <skip>false</skip> - <includes> - <include>**/perf/*Test.java</include> - </includes> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - </profiles> - +<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> + + <parent> + <groupId>net.objectlab.kit</groupId> + <artifactId>kit-parent</artifactId> + <version>1.2.0</version> + </parent> + + <artifactId>datecalc-joda</artifactId> + <packaging>bundle</packaging> + + <name>Date Calculator for Joda</name> + <description>Date Calculator methods for Joda</description> + + <dependencies> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + </dependency> + <dependency> + <groupId>joda-time</groupId> + <artifactId>joda-time</artifactId> + <version>1.6</version> + </dependency> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <scope>test</scope> + <classifier>tests</classifier> + </dependency> + </dependencies> + + <build> + <plugins> + <!-- UNIT tests --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.5</version> + <configuration> + <skip>true</skip> + </configuration> + <executions> + <execution> + <id>surefire-test</id> + <phase>test</phase> + <goals> + <goal>test</goal> + </goals> + <configuration> + <skip>false</skip> + <excludes> + <exclude>**/perf/**</exclude> + </excludes> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <instructions> + <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> + <Private-Package /> + <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> + <Bundle-Version>${pom.version}</Bundle-Version> + <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> + </instructions> + </configuration> + </plugin> + </plugins> + </build> + + <profiles> + <profile> + <id>perf-testing</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.5</version> + <configuration> + <skip>true</skip> + </configuration> + <executions> + <execution> + <id>surefire-perf</id> + <!-- use it mvn test -P perf-testing --> + <phase>test</phase> + <goals> + <goal>test</goal> + </goals> + <configuration> + <argLine>-Xms256m -Xmx1024m</argLine> + <skip>false</skip> + <includes> + <include>**/perf/*Test.java</include> + </includes> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + </project> \ No newline at end of file Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-05-10 03:26:01 UTC (rev 361) +++ trunk/pom.xml 2010-05-10 05:09:33 UTC (rev 362) @@ -1,351 +1,350 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> - <modelVersion>4.0.0</modelVersion> - - <groupId>net.objectlab.kit</groupId> - <artifactId>kit-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> - <packaging>pom</packaging> - - <modules> - <module>datecalc-common</module> - <module>datecalc-jdk</module> - <module>datecalc-joda</module> - </modules> - - <name>ObjectLab Kit</name> - - <description> - ObjectLab Kit provides a generic Business Calendar for calculating dates given set(s) of holidays. - Why re-invent the wheel? - </description> - - <inceptionYear>2006</inceptionYear> - <url>http://objectlabkit.sourceforge.net/</url> - - <organization> - <name>Appendium - Portfolio Financing Platform</name> - <url>http://www.appendium.com/</url> - </organization> - - <developers> - <developer> - <id>benoitx</id> - <name>Benoit Xhenseval</name> - <roles> - <role>Team Leader</role> - <role>Developer</role> - </roles> - <organization>Appendium Ltd</organization> - <organizationUrl>http://www.appendium.com/</organizationUrl> - <email>kit AT appendium DOT com</email> - <timezone>+0</timezone> - </developer> - <developer> - <id>marchy</id> - <name>Marcin Jekot</name> - <roles> - <role>Developer</role> - </roles> - <organization>ObjectLab Ltd</organization> - <organizationUrl>http://www.objectlab.co.uk/</organizationUrl> - <email>marchy AT users DOT sourceforge DOT net</email> - <timezone>+2</timezone> - </developer> - </developers> - - <licenses> - <license> - <name>The Apache Software License, Version 2.0</name> - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> - <distribution>repo</distribution> - </license> - </licenses> - - <mailingLists> - <mailingList> - <name>News about ObjectLab's projects (Alerts online)</name> - <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-news</subscribe> - <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-news</unsubscribe> - <post /> - <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-news</archive> - </mailingList> - <mailingList> - <name>Kit Announcements</name> - <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce</subscribe> - <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce</unsubscribe> - <post /> - <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-announce</archive> - </mailingList> - <mailingList> - <name>Kit User</name> - <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-user</subscribe> - <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-user</unsubscribe> - <post>obj...@li...</post> - <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-user</archive> - </mailingList> - <mailingList> - <name>Kit Developers (SVN checkins)</name> - <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-svn</subscribe> - <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-svn</unsubscribe> - <post /> - <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-svn</archive> - </mailingList> - </mailingLists> - - <dependencies> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.5</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>junitperf</groupId> - <artifactId>junitperf</artifactId> - <version>1.8</version> - <scope>test</scope> - </dependency> - </dependencies> - - <dependencyManagement> - <dependencies> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - <version>${pom.version}</version> - </dependency> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - <version>${pom.version}</version> - <scope>test</scope> - <classifier>tests</classifier> - </dependency> - <dependency> - <groupId>org.apache.felix</groupId> - <artifactId>org.osgi.core</artifactId> - <version>1.0.0</version> - </dependency> - </dependencies> - </dependencyManagement> - - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>1.5</source> - <target>1.5</target> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <configuration> - <source>1.5</source> - <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet> - <docletArtifact> - <groupId>gr.spinellis</groupId> - <artifactId>UmlGraph</artifactId> - <version>4.6</version> - </docletArtifact> - <additionalparam> - -inferrel -inferdep -quiet -constructors -visibility -types -postfixpackage - -nodefontsize 9 -nodefontpackagesize 7 -hide java.* -collpackages java.util.* - -link http://java.sun.com/j2se/1.5.0/docs/api/ -link http://joda-time.sourceforge.net/api-release/ - </additionalparam> - </configuration> - <executions> - <execution> - <id>aggregate</id> - <goals> - <goal>aggregate</goal> - </goals> - <phase>site</phase> - </execution> - </executions> - </plugin> - </plugins> - </build> - - <properties> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <site.deploy.url>file:///tmp/site</site.deploy.url> - </properties> - - <profiles> - <profile> - <id>code-sign</id> - <activation> - <property> - <name>performRelease</name> - <value>true</value> - </property> - </activation> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-gpg-plugin</artifactId> - <executions> - <execution> - <id>sign-artifacts</id> - <phase>verify</phase> - <goals> - <goal>sign</goal> - </goals> - </execution> - </executions> - <configuration> - <source>1.5</source> - <target>1.5</target> - </configuration> - </plugin> - </plugins> - </build> - </profile> - <profile> - <id>stat-scm</id> - <activation> - <property> - <name>performRelease</name> - <value>true</value> - </property> - </activation> - <reporting> - <plugins> - <plugin> - <groupId>net.sf</groupId> - <artifactId>stat-scm</artifactId> - <inherited>false</inherited> - </plugin> - </plugins> - </reporting> - </profile> - <profile> - <id>deploy-site</id> - <activation> - <property> - <name>performRelease</name> - <value>true</value> - </property> - </activation> - <properties> - <!-- the real site deploy url, this is a hack because site:stage (v2.1) doesn't work properly --> - <site.deploy.url>scp://shell.sourceforge.net/home/groups/o/ob/objectlabkit/htdocs</site.deploy.url> - </properties> - </profile> - <profile> - <id>stage-site</id> - <properties> - <!-- stage the site in the /test folder on sourceforge --> - <site.deploy.url>scp://shell.sourceforge.net/home/groups/o/ob/objectlabkit/htdocs/test</site.deploy.url> - </properties> - </profile> - </profiles> - - <scm> - <connection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/trunk/</connection> - <developerConnection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/trunk/</developerConnection> - <url>http://objectlabkit.svn.sourceforge.net/viewvc/objectlabkit/</url> - </scm> - - <issueManagement> - <system>sourceforge</system> - <url>https://sourceforge.net/tracker/?group_id=175139</url> - </issueManagement> - - <distributionManagement> - <repository> - <id>sonatype-nexus-staging</id> - <name>Sonatype Nexus Staging Repository</name> - <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> - </repository> - <snapshotRepository> - <id>sonatype-nexus-snapshots</id> - <name>Sonatype Nexus Snapshots Repository</name> - <url>http://oss.sonatype.org/content/repositories/snapshots/</url> - </snapshotRepository> - <site> - <id>objectlabkit.sf.net</id> - <url>${site.deploy.url}</url> - </site> - </distributionManagement> - - <reporting> - <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>cobertura-maven-plugin</artifactId> - </plugin> - <plugin> - <artifactId>maven-changes-plugin</artifactId> - <configuration> - <issueLinkTemplatePerSystem> - <default>%URL%/?group_id=175139&func=detail&%ISSUE%</default> - </issueLinkTemplatePerSystem> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jxr-plugin</artifactId> - <configuration> - <aggregate>true</aggregate> - <linkJavadoc>true</linkJavadoc> - <javadocDir>apidocs</javadocDir> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-report-plugin</artifactId> - <inherited>false</inherited> - <configuration> - <aggregate>true</aggregate> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-pmd-plugin</artifactId> - <configuration> - <targetJdk>1.5</targetJdk> - <rulesets> - <ruleset>/rulesets/basic.xml</ruleset> - </rulesets> - <minimumTokens>100</minimumTokens> - <linkXref>true</linkXref> - <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> - </configuration> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>findbugs-maven-plugin</artifactId> - <version>2.0</version> - <configuration> - <effort>Max</effort> - <threshold>Low</threshold> - <includeFilterFile>${project.basedir}/../src/source-checks/findbugs-filter.xml</includeFilterFile> - <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - <configuration> - <!-- these do not currently work as they are in the old format - <configLocation>${project.basedir}/../src/source-checks/checkstyle-checks.xml</configLocation> - <configLocation>${project.basedir}/../src/source-checks/objectlab-checks.xml</configLocation> - --> - <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> - </configuration> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>dashboard-maven-plugin</artifactId> - </plugin> - </plugins> - </reporting> - -</project> +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>net.objectlab.kit</groupId> + <artifactId>kit-parent</artifactId> + <version>1.2.0</version> + <packaging>pom</packaging> + + <modules> + <module>datecalc-common</module> + <module>datecalc-jdk</module> + <module>datecalc-joda</module> + </modules> + + <name>ObjectLab Kit</name> + + <description> + ObjectLab Kit provides a generic Business Calendar for calculating dates given set(s) of holidays. + Why re-invent the wheel? + </description> + + <inceptionYear>2006</inceptionYear> + <url>http://objectlabkit.sourceforge.net/</url> + + <organization> + <name>Appendium - Portfolio Financing Platform</name> + <url>http://www.appendium.com/</url> + </organization> + + <developers> + <developer> + <id>benoitx</id> + <name>Benoit Xhenseval</name> + <roles> + <role>Team Leader</role> + <role>Developer</role> + </roles> + <organization>Appendium Ltd</organization> + <organizationUrl>http://www.appendium.com/</organizationUrl> + <email>kit AT appendium DOT com</email> + <timezone>+0</timezone> + </developer> + <developer> + <id>marchy</id> + <name>Marcin Jekot</name> + <roles> + <role>Developer</role> + </roles> + <organization>ObjectLab Ltd</organization> + <organizationUrl>http://www.objectlab.co.uk/</organizationUrl> + <email>marchy AT users DOT sourceforge DOT net</email> + <timezone>+2</timezone> + </developer> + </developers> + + <licenses> + <license> + <name>The Apache Software License, Version 2.0</name> + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + + <mailingLists> + <mailingList> + <name>News about ObjectLab's projects (Alerts online)</name> + <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-news</subscribe> + <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-news</unsubscribe> + <post /> + <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-news</archive> + </mailingList> + <mailingList> + <name>Kit Announcements</name> + <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce</subscribe> + <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-announce</unsubscribe> + <post /> + <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-announce</archive> + </mailingList> + <mailingList> + <name>Kit User</name> + <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-user</subscribe> + <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-user</unsubscribe> + <post>obj...@li...</post> + <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-user</archive> + </mailingList> + <mailingList> + <name>Kit Developers (SVN checkins)</name> + <subscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-svn</subscribe> + <unsubscribe>http://lists.sourceforge.net/lists/listinfo/objectlabkit-svn</unsubscribe> + <post /> + <archive>http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-svn</archive> + </mailingList> + </mailingLists> + + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.5</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>junitperf</groupId> + <artifactId>junitperf</artifactId> + <version>1.8</version> + <scope>test</scope> + </dependency> + </dependencies> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <version>${pom.version}</version> + </dependency> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <version>${pom.version}</version> + <scope>test</scope> + <classifier>tests</classifier> + </dependency> + <dependency> + <groupId>org.apache.felix</groupId> + <artifactId>org.osgi.core</artifactId> + <version>1.0.0</version> + </dependency> + </dependencies> + </dependencyManagement> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <source>1.5</source> + <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet> + <docletArtifact> + <groupId>gr.spinellis</groupId> + <artifactId>UmlGraph</artifactId> + <version>4.6</version> + </docletArtifact> + <additionalparam> + -inferrel -inferdep -quiet -constructors -visibility -types -postfixpackage + -nodefontsize 9 -nodefontpackagesize 7 -hide java.* -collpackages java.util.* + -link http://java.sun.com/j2se/1.5.0/docs/api/ -link http://joda-time.sourceforge.net/api-release/ + </additionalparam> + </configuration> + <executions> + <execution> + <id>aggregate</id> + <goals> + <goal>aggregate</goal> + </goals> + <phase>site</phase> + </execution> + </executions> + </plugin> + </plugins> + </build> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <site.deploy.url>file:///tmp/site</site.deploy.url> + </properties> + + <profiles> + <profile> + <id>code-sign</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-gpg-plugin</artifactId> + <executions> + <execution> + <id>sign-artifacts</id> + <phase>verify</phase> + <goals> + <goal>sign</goal> + </goals> + </execution> + </executions> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + </plugins> + </build> + </profile> + <profile> + <id>stat-scm</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + <reporting> + <plugins> + <plugin> + <groupId>net.sf</groupId> + <artifactId>stat-scm</artifactId> + <inherited>false</inherited> + </plugin> + </plugins> + </reporting> + </profile> + <profile> + <id>deploy-site</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + <properties> + <!-- the real site deploy url, this is a hack because site:stage (v2.1) doesn't work properly --> + <site.deploy.url>scp://shell.sourceforge.net/home/groups/o/ob/objectlabkit/htdocs</site.deploy.url> + </properties> + </profile> + <profile> + <id>stage-site</id> + <properties> + <!-- stage the site in the /test folder on sourceforge --> + <site.deploy.url>scp://shell.sourceforge.net/home/groups/o/ob/objectlabkit/htdocs/test</site.deploy.url> + </properties> + </profile> + </profiles> + + <scm> + <connection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/tags/kit-parent-1.2.0</connection> + <developerConnection>scm:svn:https://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit/tags/kit-parent-1.2.0</developerConnection> + <url>http://objectlabkit.svn.sourceforge.net/viewvc/objectlabkit/tags/kit-parent-1.2.0</url> + </scm> + + <issueManagement> + <system>sourceforge</system> + <url>https://sourceforge.net/tracker/?group_id=175139</url> + </issueManagement> + + <distributionManagement> + <repository> + <id>sonatype-nexus-staging</id> + <name>Sonatype Nexus Staging Repository</name> + <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> + </repository> + <snapshotRepository> + <id>sonatype-nexus-snapshots</id> + <name>Sonatype Nexus Snapshots Repository</name> + <url>http://oss.sonatype.org/content/repositories/snapshots/</url> + </snapshotRepository> + <site> + <id>objectlabkit.sf.net</id> + <url>${site.deploy.url}</url> + </site> + </distributionManagement> + + <reporting> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> + </plugin> + <plugin> + <artifactId>maven-changes-plugin</artifactId> + <configuration> + <issueLinkTemplatePerSystem> + <default>%URL%/?group_id=175139&func=detail&%ISSUE%</default> + </issueLinkTemplatePerSystem> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jxr-plugin</artifactId> + <configuration> + <aggregate>true</aggregate> + <linkJavadoc>true</linkJavadoc> + <javadocDir>apidocs</javadocDir> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-report-plugin</artifactId> + <inherited>false</inherited> + <configuration> + <aggregate>true</aggregate> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <configuration> + <targetJdk>1.5</targetJdk> + <rulesets> + <ruleset>/rulesets/basic.xml</ruleset> + </rulesets> + <minimumTokens>100</minimumTokens> + <linkXref>true</linkXref> + <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>findbugs-maven-plugin</artifactId> + <version>2.0</version> + <configuration> + <effort>Max</effort> + <threshold>Low</threshold> + <includeFilterFile>${project.basedir}/../src/source-checks/findbugs-filter.xml</includeFilterFile> + <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <configuration> + <!-- these do not currently work as they are in the old format + <configLocation>${project.basedir}/../src/source-checks/checkstyle-checks.xml</configLocation> + <configLocation>${project.basedir}/../src/source-checks/objectlab-checks.xml</configLocation> + --> + <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>dashboard-maven-plugin</artifactId> + </plugin> + </plugins> + </reporting> + +</project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-05-10 03:26:07
|
Revision: 361 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=361&view=rev Author: marchy Date: 2010-05-10 03:26:01 +0000 (Mon, 10 May 2010) Log Message: ----------- left align sonar logo Modified Paths: -------------- trunk/src/site/resources/css/site.css Modified: trunk/src/site/resources/css/site.css =================================================================== --- trunk/src/site/resources/css/site.css 2010-05-10 03:25:36 UTC (rev 360) +++ trunk/src/site/resources/css/site.css 2010-05-10 03:26:01 UTC (rev 361) @@ -31,7 +31,7 @@ #sonar { padding: 20px 20px 20px 20px; - text-align: center; + text-align: left; } #ohloh { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-05-10 03:25:43
|
Revision: 360 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=360&view=rev Author: marchy Date: 2010-05-10 03:25:36 +0000 (Mon, 10 May 2010) Log Message: ----------- removing twitter section, inifying the download segments (even they're copy and paste - want them the same), and updating the release dates. Modified Paths: -------------- trunk/src/changes/changes.xml trunk/src/site/xdoc/download.xml trunk/src/site/xdoc/index.xml Modified: trunk/src/changes/changes.xml =================================================================== --- trunk/src/changes/changes.xml 2010-04-21 10:33:45 UTC (rev 359) +++ trunk/src/changes/changes.xml 2010-05-10 03:25:36 UTC (rev 360) @@ -6,7 +6,7 @@ <author email="ki...@ob...">Benoit Xhenseval</author> </properties> <body> - <release version="1.2.0" date="in SVN" description="Maintenance"> + <release version="1.2.0" date="2010-05-10" description="Maintenance"> <action dev="marchy" type="add" issue="atid=872036&aid=2853974" due-to="insumo">Changed the visibility on JodaWorkingWeek(final byte workingDays) constructor from private to protected.</action> <action dev="marchy" type="fix" issue="atid=872033&aid=2963607" due-to="Aldo Tamburini">Fixed DefaultHolidayCalendar when used with java.util.Date / java.util.Calendar holidays.</action> <action dev="benoitx" type="fix">Removed the deprecated constructors that used to take Set of "Date", use the HolidayCalendar.</action> Modified: trunk/src/site/xdoc/download.xml =================================================================== --- trunk/src/site/xdoc/download.xml 2010-04-21 10:33:45 UTC (rev 359) +++ trunk/src/site/xdoc/download.xml 2010-05-10 03:25:36 UTC (rev 360) @@ -20,7 +20,7 @@ <body> <subsection name="Maven"> - <p>The ObjectLab Kit is in the Maven Central Repository.</p> + <p>If you're using Maven, setup is easy, as DateCalc is in the Maven Central Repository.</p> <p>To use the JDK Version:</p> <pre class="brush: xml; gutter: false"> <dependency> @@ -50,7 +50,7 @@ </pre> </subsection> - <subsection name="Download the jars"> + <subsection name="Download the Jars"> <p>If you are not using Maven, you can <a href="https://sourceforge.net/projects/objectlabkit/files/">download the jars here</a>.</p> </subsection> Modified: trunk/src/site/xdoc/index.xml =================================================================== --- trunk/src/site/xdoc/index.xml 2010-04-21 10:33:45 UTC (rev 359) +++ trunk/src/site/xdoc/index.xml 2010-05-10 03:25:36 UTC (rev 360) @@ -20,87 +20,16 @@ <body> <section name="Quick News"> + <p style="margin-top:10px; margin-bottom:0; padding-bottom:0; text-align:center; line-height:0"><a href="http://feeds.feedburner.com/~r/ObjectlabOpenSourceNews/~6/1"><img src="http://feeds.feedburner.com/ObjectlabOpenSourceNews.1.gif" alt="ObjectLab Open Source News" style="border:0"/></a></p> - <p><script type="text/javascript" src="http://www.ohloh.net/p/4682/widgets/project_users.js?style=blue"></script><b>2010-03-xx</b>: version 1.2.0 is out and contains a couple of changes, including the ability to see the registered calendar and unregistering calendars (useful if calendars are dynamic). + <p><b>2010-05-10</b>: version 1.2.0 is out and contains a couple of changes, including the ability to see the registered calendar and unregistering calendars (useful if calendars are dynamic). More info on the changes <a href="changes-report.html">here</a>. Also, one of the authors is on Twitter, follow your favorite Belgian at <a href="http://twitter.com/benoitx">http://twitter.com/benoitx</a>.</p> <p><b>2007-03-25</b>: version 1.1.0 is out and contains a couple of changes, a new HolidayHandler and the ability to define a valid range for the holiday (and if the calculation is beyond that range, an exception is thrown). This is done via HolidayCalendar which should replace the simple Set<E> for holidays. More info on the changes <a href="changes-report.html">here</a>.</p> - -<script src="http://widgets.twimg.com/j/2/widget.js"></script> -<table> -<tr><td valign='top'> -<script> -new TWTR.Widget({ - version: 2, - type: 'profile', - rpp: 5, - interval: 6000, - width: 300, - height: 300, - theme: { - shell: { - background: '#8ec1da', - color: '#ffffff' - }, - tweets: { - background: '#ffffff', - color: '#444444', - links: '#1985b5' - } - }, - features: { - scrollbar: false, - loop: false, - live: false, - hashtags: true, - timestamp: true, - avatars: true, - behavior: 'all' - } -}).render().setUser('benoitx').start(); -</script> -</td> -<td valign='top'> - -<script> -new TWTR.Widget({ - version: 2, - type: 'search', - search: 'objectlab OR Appendium', - interval: 6000, - title: 'Excitement is in the air...', - subject: 'ObjectLab', - width: 300, - height: 300, - theme: { - shell: { - background: '#8ec1da', - color: '#ffffff' - }, - tweets: { - background: '#ffffff', - color: '#444444', - links: '#1985b5' - } - }, - features: { - scrollbar: false, - loop: true, - live: true, - hashtags: true, - timestamp: true, - avatars: true, - behavior: 'default' - } -}).render().start(); -</script> -</td></tr> -</table> - </section> <section name="ObjectLab Kit Introduction"> @@ -118,37 +47,43 @@ <li>The <a href="datecalc-jdk/index.html">Joda Time implementation</a>, which depends on the <a href="http://joda-time.sourceforge.net">Joda Time library</a> (we recommend using this one).</li> </ul> </p> - <p>If you're using Maven, setup is easy, as DateCalc is in the Maven Central Repository.</p> - <p>To use the JDK Version:</p> - <pre class="brush: xml; gutter: false"> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - <version>1.2.0</version> - </dependency> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-jdk</artifactId> - <version>1.2.0</version> - </dependency> - </pre> - - <p>To use the JODA Version (recommended):</p> - <pre class="brush: xml; gutter: false"> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - <version>1.2.0</version> - </dependency> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-joda</artifactId> - <version>1.2.0</version> - </dependency> - </pre> - <p>If you are not using Maven, you can <a href="https://sourceforge.net/projects/objectlabkit/files/">download the jars here</a>.</p> </subsection> + <subsection name="Maven"> + <p>If you're using Maven, setup is easy, as DateCalc is in the Maven Central Repository.</p> + <p>To use the JDK Version:</p> + <pre class="brush: xml; gutter: false"> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <version>1.2.0</version> + </dependency> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-jdk</artifactId> + <version>1.2.0</version> + </dependency> + </pre> + + <p>To use the JODA Version (recommended):</p> + <pre class="brush: xml; gutter: false"> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <version>1.2.0</version> + </dependency> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-joda</artifactId> + <version>1.2.0</version> + </dependency> + </pre> + </subsection> + + <subsection name="Download the Jars"> + <p>If you are not using Maven, you can <a href="https://sourceforge.net/projects/objectlabkit/files/">download the jars here</a>.</p> + </subsection> + <subsection name ="Date Calculations? What is that?"> <p>Apart from the very basic "add days" features, most business have to <strong>deal with Holidays</strong> and what to do when a <strong>calculated day falls on a holiday</strong>. This library does <strong>not</strong> attempt to create or guess the holidays, we This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-04-21 10:33:51
|
Revision: 359 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=359&view=rev Author: marchy Date: 2010-04-21 10:33:45 +0000 (Wed, 21 Apr 2010) Log Message: ----------- removing empty dir Removed Paths: ------------- trunk/common-build/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-04-16 10:26:22
|
Revision: 358 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=358&view=rev Author: marchy Date: 2010-04-16 10:26:16 +0000 (Fri, 16 Apr 2010) Log Message: ----------- update sonar link Modified Paths: -------------- trunk/src/site/xdoc/code-metrics.xml Modified: trunk/src/site/xdoc/code-metrics.xml =================================================================== --- trunk/src/site/xdoc/code-metrics.xml 2010-04-16 10:25:16 UTC (rev 357) +++ trunk/src/site/xdoc/code-metrics.xml 2010-04-16 10:26:16 UTC (rev 358) @@ -21,7 +21,7 @@ <subsection name="Code Metrics"> <div id="sonar"> - <a href="http://nemo.sonarsource.org/project/index/net.objectlab.kit.datecalc:datecalc"> + <a href="http://nemo.sonarsource.org/project/index/net.objectlab.kit:kit-parent"> <span> <img src="images/sonar_logo.png"/> </span> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-04-16 10:25:22
|
Revision: 357 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=357&view=rev Author: marchy Date: 2010-04-16 10:25:16 +0000 (Fri, 16 Apr 2010) Log Message: ----------- collapsed 3 sections into 1 (Getting Started) to make index page cleaner. Modified Paths: -------------- trunk/src/site/xdoc/download.xml trunk/src/site/xdoc/index.xml Modified: trunk/src/site/xdoc/download.xml =================================================================== --- trunk/src/site/xdoc/download.xml 2010-04-16 08:40:59 UTC (rev 356) +++ trunk/src/site/xdoc/download.xml 2010-04-16 10:25:16 UTC (rev 357) @@ -19,35 +19,41 @@ <body> - <section name="Maven Dependency"> - <p> - We're in Maven Central Repo, so if you're using Maven, you can just insert this dependency in your project's pom.xml: - <subsection name="Joda Time (recommended)"> - <pre class="brush: xml; gutter: false;"> - <dependency> - <groupId>net.objectlab.kit.datecalc</groupId> - <artifactId>datecalc-joda</artifactId> - <version>1.2.0</version> - </dependency> - </pre> - </subsection> + <subsection name="Maven"> + <p>The ObjectLab Kit is in the Maven Central Repository.</p> + <p>To use the JDK Version:</p> + <pre class="brush: xml; gutter: false"> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <version>1.2.0</version> + </dependency> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-jdk</artifactId> + <version>1.2.0</version> + </dependency> + </pre> + + <p>To use the JODA Version (recommended):</p> + <pre class="brush: xml; gutter: false"> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <version>1.2.0</version> + </dependency> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-joda</artifactId> + <version>1.2.0</version> + </dependency> + </pre> + </subsection> - <subsection name="JDK"> - <pre class="brush: xml; gutter: false;"> - <dependency> - <groupId>net.objectlab.kit.datecalc</groupId> - <artifactId>datecalc-jdk</artifactId> - <version>1.2.0</version> - </dependency> - </pre> - </subsection> - </p> - </section> + <subsection name="Download the jars"> + <p>If you are not using Maven, you can <a href="https://sourceforge.net/projects/objectlabkit/files/">download the jars here</a>.</p> + </subsection> - <section name="Download the jars"> - <p>Alternatively, you can <a href="https://sourceforge.net/projects/objectlabkit/files/">download the zip file</a> which contains all of the jars.</p> - </section> - </body> </document> \ No newline at end of file Modified: trunk/src/site/xdoc/index.xml =================================================================== --- trunk/src/site/xdoc/index.xml 2010-04-16 08:40:59 UTC (rev 356) +++ trunk/src/site/xdoc/index.xml 2010-04-16 10:25:16 UTC (rev 357) @@ -108,25 +108,47 @@ <p>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 company and Bank. Most banks will require basic Date calculation, we did spot another open source project for this but their licence forbids most financial institution from using it. This one is released under - the business-friendly Apache 2.0 license. <a href="http://digg.com/submit?phase=2&url=objectlabkit.sourceforge.net&title=ObjectLab%20Kit%3A%20Open%20Source%20Date%20Calculators%20for%20Business%20and%20Finance&bodytext=ObjectLab%20released%20version%201%2E1%2E0%20of%20ObjectLab%20Kit%20for%20Java%201%2E5,%20available%20for%20download%20via%20SourceForge%20or%20the%20Maven%20Central%20Repository%2E%20The%20Kit%20provides%20a%20Date%20Calculator%20that%20handle%20holidays,%20a%20IMM%20Date%20and%20Period%20Count%20Calculator%20and%20comes%20in%20two%20versions%3A%20one%20based%20on%20pure%20JDK%20(1%2E5)%20and%20one%20based%20on%20the%20Joda-time%20library%20(1%2E3%2B,%20JDK%201%2E5)%2E&topic=programming"> + the business-friendly Apache 2.0 license. <a href="http://digg.com/submit?phase=2&url=objectlabkit.sourceforge.net&title=ObjectLab%20Kit%3A%20Open%20Source%20Date%20Calculators%20for%20Business%20and%20Finance&bodytext=ObjectLab%20released%20version%201%2E2%2E0%20of%20ObjectLab%20Kit%20for%20Java%201%2E5,%20available%20for%20download%20via%20SourceForge%20or%20the%20Maven%20Central%20Repository%2E%20The%20Kit%20provides%20a%20Date%20Calculator%20that%20handle%20holidays,%20a%20IMM%20Date%20and%20Period%20Count%20Calculator%20and%20comes%20in%20two%20versions%3A%20one%20based%20on%20pure%20JDK%20(1%2E5)%20and%20one%20based%20on%20the%20Joda-time%20library%20(1%2E3%2B,%20JDK%201%2E5)%2E&topic=programming"> <img src="http://digg.com/img/badges/91x17-digg-button.png" width="91" height="17" alt="Digg!" style="vertical-align:middle" /></a></p> - - <subsection name="So, what is on offer?"> - <p>The initial release provides 2 implementations for <strong>Date calculations</strong>, both depend on the classes in datecalc-common. So, - you need to include:</p> + <subsection name="Getting Started"> + <p>DateCalc comes in 2 different implementations, both run on <strong>JDK 1.5 or higher</strong>: <ul> - <li><strong>datecalc-common.jar</strong> (mandatory)</li> - <li>and either <strong>datecalc-jdk.jar</strong> OR <strong>datecalc-joda.jar</strong></li> + <li>The vanilla <a href="datecalc-jdk/index.html">JDK implementation</a> has no external dependencies.</li> + <li>The <a href="datecalc-jdk/index.html">Joda Time implementation</a>, which depends on the <a href="http://joda-time.sourceforge.net">Joda Time library</a> (we recommend using this one).</li> </ul> + </p> + <p>If you're using Maven, setup is easy, as DateCalc is in the Maven Central Repository.</p> + <p>To use the JDK Version:</p> + <pre class="brush: xml; gutter: false"> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <version>1.2.0</version> + </dependency> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-jdk</artifactId> + <version>1.2.0</version> + </dependency> + </pre> - <p>The <a href="datecalc-jdk/index.html">datecalc-jdk.jar</a> has no dependencies other than JDK 1.5+. - <a href="datecalc-joda/index.html">datecalc-joda.jar</a> is based on the powerful - <a href="http://joda-time.sourceforge.net">Joda Time</a> library (we recommend it!)</p> - - <p>See the <a href="download.html">Download</a> page for details.</p> + <p>To use the JODA Version (recommended):</p> + <pre class="brush: xml; gutter: false"> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <version>1.2.0</version> + </dependency> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-joda</artifactId> + <version>1.2.0</version> + </dependency> + </pre> + <p>If you are not using Maven, you can <a href="https://sourceforge.net/projects/objectlabkit/files/">download the jars here</a>.</p> </subsection> - + <subsection name ="Date Calculations? What is that?"> <p>Apart from the very basic "add days" features, most business have to <strong>deal with Holidays</strong> and what to do when a <strong>calculated day falls on a holiday</strong>. This library does <strong>not</strong> attempt to create or guess the holidays, we @@ -136,8 +158,8 @@ Friday, our library provides you with full flexibility to design a Working Week.</p> <p>As such a Non-working Day can be a holiday or a 'weekend'.</p> </subsection> + - <subsection name ="Ok, what algorithm for handling a holiday do you support?"> <p>At the moment, we support the following 6 algorithms:</p> <ol> @@ -153,41 +175,6 @@ <p>See this page for some <a href="algo.html">examples</a>.</p> </subsection> - <subsection name="Which JDK?"> - <p>1.5 or above.</p> - </subsection> - - <subsection name="Maven Repository"> - <p>The ObjectLab Kit should be in the Maven Central Repository.</p> - <p>To use the JDK Version:</p> - <pre class="brush: xml"> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - <version>1.2.0</version> - </dependency> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-jdk</artifactId> - <version>1.2.0</version> - </dependency> - </pre> - - <p>To use the JODA Version:</p> - <pre class="brush: xml"> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-common</artifactId> - <version>1.2.0</version> - </dependency> - <dependency> - <groupId>net.objectlab.kit</groupId> - <artifactId>datecalc-joda</artifactId> - <version>1.2.0</version> - </dependency> - </pre> - </subsection> - <subsection name="UML?"> <p>We generate our JavaDocs with the added twist of UML diagrams:</p> <ul> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-04-16 08:41:06
|
Revision: 356 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=356&view=rev Author: marchy Date: 2010-04-16 08:40:59 +0000 (Fri, 16 Apr 2010) Log Message: ----------- moved PNG's to images folder Modified Paths: -------------- trunk/src/site/xdoc/algo.xml trunk/src/site/xdoc/tenor.xml Added Paths: ----------- trunk/src/site/resources/images/1d.png trunk/src/site/resources/images/1m.png trunk/src/site/resources/images/1w.png trunk/src/site/resources/images/1y.png trunk/src/site/resources/images/2d.png trunk/src/site/resources/images/backward.png trunk/src/site/resources/images/forward.png trunk/src/site/resources/images/modif-following.png trunk/src/site/resources/images/modif-preceding.png trunk/src/site/resources/images/spot.png Removed Paths: ------------- trunk/src/site/resources/1d.png trunk/src/site/resources/1m.png trunk/src/site/resources/1w.png trunk/src/site/resources/1y.png trunk/src/site/resources/2d.png trunk/src/site/resources/backward.png trunk/src/site/resources/forward.png trunk/src/site/resources/modif-following.png trunk/src/site/resources/modif-preceding.png trunk/src/site/resources/spot.png Deleted: trunk/src/site/resources/1d.png =================================================================== (Binary files differ) Deleted: trunk/src/site/resources/1m.png =================================================================== (Binary files differ) Deleted: trunk/src/site/resources/1w.png =================================================================== (Binary files differ) Deleted: trunk/src/site/resources/1y.png =================================================================== (Binary files differ) Deleted: trunk/src/site/resources/2d.png =================================================================== (Binary files differ) Deleted: trunk/src/site/resources/backward.png =================================================================== (Binary files differ) Deleted: trunk/src/site/resources/forward.png =================================================================== (Binary files differ) Copied: trunk/src/site/resources/images/1d.png (from rev 355, trunk/src/site/resources/1d.png) =================================================================== (Binary files differ) Copied: trunk/src/site/resources/images/1m.png (from rev 355, trunk/src/site/resources/1m.png) =================================================================== (Binary files differ) Copied: trunk/src/site/resources/images/1w.png (from rev 355, trunk/src/site/resources/1w.png) =================================================================== (Binary files differ) Copied: trunk/src/site/resources/images/1y.png (from rev 355, trunk/src/site/resources/1y.png) =================================================================== (Binary files differ) Copied: trunk/src/site/resources/images/2d.png (from rev 355, trunk/src/site/resources/2d.png) =================================================================== (Binary files differ) Copied: trunk/src/site/resources/images/backward.png (from rev 355, trunk/src/site/resources/backward.png) =================================================================== (Binary files differ) Copied: trunk/src/site/resources/images/forward.png (from rev 355, trunk/src/site/resources/forward.png) =================================================================== (Binary files differ) Copied: trunk/src/site/resources/images/modif-following.png (from rev 355, trunk/src/site/resources/modif-following.png) =================================================================== (Binary files differ) Copied: trunk/src/site/resources/images/modif-preceding.png (from rev 355, trunk/src/site/resources/modif-preceding.png) =================================================================== (Binary files differ) Copied: trunk/src/site/resources/images/spot.png (from rev 355, trunk/src/site/resources/spot.png) =================================================================== (Binary files differ) Deleted: trunk/src/site/resources/modif-following.png =================================================================== (Binary files differ) Deleted: trunk/src/site/resources/modif-preceding.png =================================================================== (Binary files differ) Deleted: trunk/src/site/resources/spot.png =================================================================== (Binary files differ) Modified: trunk/src/site/xdoc/algo.xml =================================================================== --- trunk/src/site/xdoc/algo.xml 2010-04-15 20:19:57 UTC (rev 355) +++ trunk/src/site/xdoc/algo.xml 2010-04-16 08:40:59 UTC (rev 356) @@ -24,24 +24,24 @@ <subsection name="Forward"> <p>If the date is a non-working day, move forward to the next working day.</p> - <img src="forward.png"/> + <img src="images/forward.png"/> </subsection> <subsection name="Modified Following"> <p>If the date is a non-working day, move forward to the next working day, UNLESS it crosses over a new month, in which case we revert to find the last working day of the current month.</p> - <img src="modif-following.png"/> + <img src="images/modif-following.png"/> </subsection> <subsection name="Backward"> <p>If the date is a non-working day, move backward to the previous working day.</p> - <img src="backward.png"/> + <img src="images/backward.png"/> </subsection> <subsection name="Modified Preceding"> <p>If the date is a non-working day, move backward to the previous working day, UNLESS it crosses over a new month, in which case we revert to find the next working day of the current month.</p> - <img src="modif-preceding.png"/> + <img src="images/modif-preceding.png"/> </subsection> </section> Modified: trunk/src/site/xdoc/tenor.xml =================================================================== --- trunk/src/site/xdoc/tenor.xml 2010-04-15 20:19:57 UTC (rev 355) +++ trunk/src/site/xdoc/tenor.xml 2010-04-16 08:40:59 UTC (rev 356) @@ -25,36 +25,36 @@ <subsection name="Spot"> <p>Example that shows the calculation of a Spot date with 2 different spotLags. SpotLag is typically 2 days but this may vary by market and/or currencies.</p> - <img src="spot.png"/> + <img src="images/spot.png"/> </subsection> <subsection name="1D - 1 Day"> <p>Example of a 1D calculation, first of all it calculates the Spot Day (spotLag=2) and then adds 1 day to it</p> - <img src="1d.png"/> + <img src="images/1d.png"/> </subsection> <subsection name="2D - 2 Day"> <p>Example of a 2D calculation, first of all it calculates the Spot Day (spotLag=2) and then adds 2 days to it and it must roll forward as the calculated date falls on a weekend.</p> - <img src="2d.png"/> + <img src="images/2d.png"/> </subsection> <subsection name="1W - 1 Week"> <p>Example of a 1W calculation, first of all it calculates the Spot Day (spotLag=2) and then adds 1 week to it and it must roll forward as the calculated date falls on a holiday.</p> - <img src="1w.png"/> + <img src="images/1w.png"/> </subsection> <subsection name="1M - 1 Month"> <p>Example of a 1M calculation, first of all it calculates the Spot Day (spotLag=2) and then adds 1 month to it. Notice that it falls on the last day of the month too.</p> - <img src="1m.png"/> + <img src="images/1m.png"/> </subsection> <subsection name="1Y - 1 Year"> <p>Example of a 1Y calculation, first of all it calculates the Spot Day (spotLag=2) and then adds 1 year to it. Notice that it falls on a weekend and hence is moved forward (if HandlerHolidayType is 'forward').</p> - <img src="1y.png"/> + <img src="images/1y.png"/> </subsection> </section> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2010-04-15 20:20:04
|
Revision: 355 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=355&view=rev Author: benoitx Date: 2010-04-15 20:19:57 +0000 (Thu, 15 Apr 2010) Log Message: ----------- Added ohloh.net "Use It" Added 2 scripts for Twitter Added the Maven Repository. Modified Paths: -------------- trunk/src/site/xdoc/index.xml Modified: trunk/src/site/xdoc/index.xml =================================================================== --- trunk/src/site/xdoc/index.xml 2010-04-15 10:49:45 UTC (rev 354) +++ trunk/src/site/xdoc/index.xml 2010-04-15 20:19:57 UTC (rev 355) @@ -22,12 +22,85 @@ <section name="Quick News"> <p style="margin-top:10px; margin-bottom:0; padding-bottom:0; text-align:center; line-height:0"><a href="http://feeds.feedburner.com/~r/ObjectlabOpenSourceNews/~6/1"><img src="http://feeds.feedburner.com/ObjectlabOpenSourceNews.1.gif" alt="ObjectLab Open Source News" style="border:0"/></a></p> - <p><b>2010-03-xx</b>: version 1.2.0 is out and contains a couple of changes, including the ability to see the registered calendar and unregistering calendars (useful if calendars are dynamic). + <p><script type="text/javascript" src="http://www.ohloh.net/p/4682/widgets/project_users.js?style=blue"></script><b>2010-03-xx</b>: version 1.2.0 is out and contains a couple of changes, including the ability to see the registered calendar and unregistering calendars (useful if calendars are dynamic). More info on the changes <a href="changes-report.html">here</a>. Also, one of the authors is on Twitter, follow your favorite Belgian at <a href="http://twitter.com/benoitx">http://twitter.com/benoitx</a>.</p> <p><b>2007-03-25</b>: version 1.1.0 is out and contains a couple of changes, a new HolidayHandler and the ability to define a valid range for the holiday (and if the calculation is beyond that range, an exception is thrown). This is done via HolidayCalendar which should replace the simple Set<E> for holidays. More info on the changes <a href="changes-report.html">here</a>.</p> + + +<script src="http://widgets.twimg.com/j/2/widget.js"></script> +<table> +<tr><td valign='top'> +<script> +new TWTR.Widget({ + version: 2, + type: 'profile', + rpp: 5, + interval: 6000, + width: 300, + height: 300, + theme: { + shell: { + background: '#8ec1da', + color: '#ffffff' + }, + tweets: { + background: '#ffffff', + color: '#444444', + links: '#1985b5' + } + }, + features: { + scrollbar: false, + loop: false, + live: false, + hashtags: true, + timestamp: true, + avatars: true, + behavior: 'all' + } +}).render().setUser('benoitx').start(); +</script> +</td> +<td valign='top'> + +<script> +new TWTR.Widget({ + version: 2, + type: 'search', + search: 'objectlab OR Appendium', + interval: 6000, + title: 'Excitement is in the air...', + subject: 'ObjectLab', + width: 300, + height: 300, + theme: { + shell: { + background: '#8ec1da', + color: '#ffffff' + }, + tweets: { + background: '#ffffff', + color: '#444444', + links: '#1985b5' + } + }, + features: { + scrollbar: false, + loop: true, + live: true, + hashtags: true, + timestamp: true, + avatars: true, + behavior: 'default' + } +}).render().start(); +</script> +</td></tr> +</table> + </section> <section name="ObjectLab Kit Introduction"> @@ -84,6 +157,37 @@ <p>1.5 or above.</p> </subsection> + <subsection name="Maven Repository"> + <p>The ObjectLab Kit should be in the Maven Central Repository.</p> + <p>To use the JDK Version:</p> + <pre class="brush: xml"> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <version>1.2.0</version> + </dependency> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-jdk</artifactId> + <version>1.2.0</version> + </dependency> + </pre> + + <p>To use the JODA Version:</p> + <pre class="brush: xml"> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-common</artifactId> + <version>1.2.0</version> + </dependency> + <dependency> + <groupId>net.objectlab.kit</groupId> + <artifactId>datecalc-joda</artifactId> + <version>1.2.0</version> + </dependency> + </pre> + </subsection> + <subsection name="UML?"> <p>We generate our JavaDocs with the added twist of UML diagrams:</p> <ul> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-04-15 10:49:51
|
Revision: 354 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=354&view=rev Author: marchy Date: 2010-04-15 10:49:45 +0000 (Thu, 15 Apr 2010) Log Message: ----------- added stage-site profile, for deploying to test/ subfolder. Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-04-15 10:48:57 UTC (rev 353) +++ trunk/pom.xml 2010-04-15 10:49:45 UTC (rev 354) @@ -238,6 +238,13 @@ <site.deploy.url>scp://shell.sourceforge.net/home/groups/o/ob/objectlabkit/htdocs</site.deploy.url> </properties> </profile> + <profile> + <id>stage-site</id> + <properties> + <!-- stage the site in the /test folder on sourceforge --> + <site.deploy.url>scp://shell.sourceforge.net/home/groups/o/ob/objectlabkit/htdocs/test</site.deploy.url> + </properties> + </profile> </profiles> <scm> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-04-15 10:49:08
|
Revision: 353 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=353&view=rev Author: marchy Date: 2010-04-15 10:48:57 +0000 (Thu, 15 Apr 2010) Log Message: ----------- removing qalab.xml files. Removed Paths: ------------- trunk/datecalc-common/qalab.xml trunk/datecalc-jdk/qalab.xml trunk/datecalc-joda/qalab.xml Deleted: trunk/datecalc-common/qalab.xml =================================================================== --- trunk/datecalc-common/qalab.xml 2010-04-15 10:47:28 UTC (rev 352) +++ trunk/datecalc-common/qalab.xml 2010-04-15 10:48:57 UTC (rev 353) @@ -1,1359 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE qalab [<!ELEMENT qalab (summary,file*)> -<!ATTLIST qalab version CDATA #REQUIRED> -<!ELEMENT summary (summaryresult*)> -<!ELEMENT file (result+)> -<!ATTLIST file id ID #REQUIRED> -<!ATTLIST file project CDATA #REQUIRED> -<!ATTLIST file module CDATA #REQUIRED> -<!ATTLIST file path CDATA #REQUIRED> -<!ELEMENT result EMPTY> -<!ATTLIST result date CDATA #REQUIRED> -<!ATTLIST result statvalue CDATA #REQUIRED> -<!ATTLIST result type CDATA #REQUIRED> -<!ELEMENT summaryresult EMPTY> -<!ATTLIST summaryresult project CDATA #REQUIRED> -<!ATTLIST summaryresult module CDATA #REQUIRED> -<!ATTLIST summaryresult date CDATA #REQUIRED> -<!ATTLIST summaryresult statvalue CDATA #REQUIRED> -<!ATTLIST summaryresult filecount CDATA #REQUIRED> -<!ATTLIST summaryresult type CDATA #REQUIRED> -]> -<qalab version="1.2"> - <summary> - <summaryresult date="2006-08-08" filecount="7" module="common" - project="objectlabkit" statvalue="5" type="checkstyle"/> - <summaryresult date="2006-08-08" filecount="2" module="common" - project="objectlabkit" statvalue="3" type="pmd"/> - <summaryresult date="2006-08-08" filecount="1" module="common" - project="objectlabkit" statvalue="1" type="findbugs"/> - <summaryresult date="2006-08-08" filecount="6" module="common" - project="objectlabkit" statvalue="47" type="cobertura-line"/> - <summaryresult date="2006-08-08" filecount="6" module="common" - project="objectlabkit" statvalue="57" type="cobertura-branch"/> - <summaryresult date="2006-08-09" filecount="7" module="common" - project="objectlabkit" statvalue="5" type="checkstyle"/> - <summaryresult date="2006-08-09" filecount="6" module="common" - project="objectlabkit" statvalue="86" type="cobertura-line"/> - <summaryresult date="2006-08-09" filecount="6" module="common" - project="objectlabkit" statvalue="91" type="cobertura-branch"/> - <summaryresult date="2006-08-10" filecount="7" module="common" - project="objectlabkit" statvalue="4" type="checkstyle"/> - <summaryresult date="2006-08-10" filecount="6" module="common" - project="objectlabkit" statvalue="90" type="cobertura-line"/> - <summaryresult date="2006-08-10" filecount="6" module="common" - project="objectlabkit" statvalue="100" type="cobertura-branch"/> - <summaryresult date="2006-08-19" filecount="7" module="common" - project="objectlabkit" statvalue="1" type="checkstyle"/> - <summaryresult date="2006-08-19" filecount="6" module="common" - project="objectlabkit" statvalue="91" type="cobertura-line"/> - <summaryresult date="2006-08-19" filecount="6" module="common" - project="objectlabkit" statvalue="96" type="cobertura-branch"/> - <summaryresult date="2006-08-20" filecount="7" module="common" - project="objectlabkit" statvalue="1" type="checkstyle"/> - <summaryresult date="2006-08-20" filecount="6" module="common" - project="objectlabkit" statvalue="90" type="cobertura-line"/> - <summaryresult date="2006-08-20" filecount="6" module="common" - project="objectlabkit" statvalue="100" type="cobertura-branch"/> - <summaryresult date="2006-08-23" filecount="10" module="common" - project="objectlabkit" statvalue="25" type="checkstyle"/> - <summaryresult date="2006-08-23" filecount="9" module="common" - project="objectlabkit" statvalue="74" type="cobertura-line"/> - <summaryresult date="2006-08-23" filecount="9" module="common" - project="objectlabkit" statvalue="87" type="cobertura-branch"/> - <summaryresult date="2006-08-24" filecount="10" module="common" - project="objectlabkit" statvalue="1" type="checkstyle"/> - <summaryresult date="2006-08-24" filecount="9" module="common" - project="objectlabkit" statvalue="62" type="cobertura-line"/> - <summaryresult date="2006-08-24" filecount="9" module="common" - project="objectlabkit" statvalue="65" type="cobertura-branch"/> - <summaryresult date="2006-08-28" filecount="13" module="common" - project="objectlabkit" statvalue="3" type="checkstyle"/> - <summaryresult date="2006-08-28" filecount="12" module="common" - project="objectlabkit" statvalue="60" type="cobertura-line"/> - <summaryresult date="2006-08-28" filecount="12" module="common" - project="objectlabkit" statvalue="65" type="cobertura-branch"/> - <summaryresult date="2006-09-02" filecount="13" module="common" - project="objectlabkit" statvalue="9" type="checkstyle"/> - <summaryresult date="2006-09-02" filecount="12" module="common" - project="objectlabkit" statvalue="59" type="cobertura-line"/> - <summaryresult date="2006-09-02" filecount="12" module="common" - project="objectlabkit" statvalue="61" type="cobertura-branch"/> - <summaryresult date="2006-09-04" filecount="15" module="common" - project="objectlabkit" statvalue="12" type="checkstyle"/> - <summaryresult date="2006-09-04" filecount="1" module="common" - project="objectlabkit" statvalue="1" type="findbugs"/> - <summaryresult date="2006-09-04" filecount="14" module="common" - project="objectlabkit" statvalue="61" type="cobertura-line"/> - <summaryresult date="2006-09-04" filecount="14" module="common" - project="objectlabkit" statvalue="64" type="cobertura-branch"/> - <summaryresult date="2006-09-05" filecount="16" module="common" - project="objectlabkit" statvalue="9" type="checkstyle"/> - <summaryresult date="2006-09-05" filecount="1" module="common" - project="objectlabkit" statvalue="1" type="findbugs"/> - <summaryresult date="2006-09-05" filecount="15" module="common" - project="objectlabkit" statvalue="63" type="cobertura-line"/> - <summaryresult date="2006-09-05" filecount="15" module="common" - project="objectlabkit" statvalue="67" type="cobertura-branch"/> - <summaryresult date="2006-09-06" filecount="18" module="common" - project="objectlabkit" statvalue="1" type="checkstyle"/> - <summaryresult date="2006-09-06" filecount="17" module="common" - project="objectlabkit" statvalue="66" type="cobertura-line"/> - <summaryresult date="2006-09-06" filecount="17" module="common" - project="objectlabkit" statvalue="68" type="cobertura-branch"/> - <summaryresult date="2006-09-07" filecount="17" module="common" - project="objectlabkit" statvalue="64" type="cobertura-line"/> - <summaryresult date="2006-09-07" filecount="17" module="common" - project="objectlabkit" statvalue="64" type="cobertura-branch"/> - <summaryresult date="2006-09-09" filecount="17" module="common" - project="objectlabkit" statvalue="63" type="cobertura-line"/> - <summaryresult date="2006-09-09" filecount="17" module="common" - project="objectlabkit" statvalue="64" type="cobertura-branch"/> - <summaryresult date="2006-09-12" filecount="17" module="common" - project="objectlabkit" statvalue="59" type="cobertura-line"/> - <summaryresult date="2006-09-12" filecount="17" module="common" - project="objectlabkit" statvalue="62" type="cobertura-branch"/> - <summaryresult date="2006-09-14" filecount="17" module="common" - project="objectlabkit" statvalue="57" type="cobertura-line"/> - <summaryresult date="2006-09-14" filecount="17" module="common" - project="objectlabkit" statvalue="60" type="cobertura-branch"/> - <summaryresult date="2006-09-18" filecount="17" module="common" - project="objectlabkit" statvalue="57" type="cobertura-line"/> - <summaryresult date="2006-09-18" filecount="17" module="common" - project="objectlabkit" statvalue="60" type="cobertura-branch"/> - <summaryresult date="2006-09-20" filecount="17" module="common" - project="objectlabkit" statvalue="57" type="cobertura-line"/> - <summaryresult date="2006-09-20" filecount="17" module="common" - project="objectlabkit" statvalue="60" type="cobertura-branch"/> - <summaryresult date="2006-09-21" filecount="17" module="common" - project="objectlabkit" statvalue="57" type="cobertura-line"/> - <summaryresult date="2006-09-21" filecount="17" module="common" - project="objectlabkit" statvalue="60" type="cobertura-branch"/> - <summaryresult date="2006-09-22" filecount="17" module="common" - project="objectlabkit" statvalue="57" type="cobertura-line"/> - <summaryresult date="2006-09-22" filecount="17" module="common" - project="objectlabkit" statvalue="60" type="cobertura-branch"/> - <summaryresult date="2006-10-10" filecount="17" module="common" - project="objectlabkit" statvalue="58" type="cobertura-line"/> - <summaryresult date="2006-10-10" filecount="17" module="common" - project="objectlabkit" statvalue="60" type="cobertura-branch"/> - <summaryresult date="2006-10-11" filecount="17" module="common" - project="objectlabkit" statvalue="58" type="cobertura-line"/> - <summaryresult date="2006-10-11" filecount="17" module="common" - project="objectlabkit" statvalue="60" type="cobertura-branch"/> - <summaryresult date="2006-10-12" filecount="17" module="common" - project="objectlabkit" statvalue="58" type="cobertura-line"/> - <summaryresult date="2006-10-12" filecount="17" module="common" - project="objectlabkit" statvalue="60" type="cobertura-branch"/> - <summaryresult date="2006-10-13" filecount="17" module="common" - project="objectlabkit" statvalue="58" type="cobertura-line"/> - <summaryresult date="2006-10-13" filecount="17" module="common" - project="objectlabkit" statvalue="60" type="cobertura-branch"/> - <summaryresult date="2006-10-14" filecount="17" module="common" - project="objectlabkit" statvalue="58" type="cobertura-line"/> - <summaryresult date="2006-10-14" filecount="17" module="common" - project="objectlabkit" statvalue="60" type="cobertura-branch"/> - <summaryresult date="2006-10-15" filecount="17" module="common" - project="objectlabkit" statvalue="58" type="cobertura-line"/> - <summaryresult date="2006-10-15" filecount="17" module="common" - project="objectlabkit" statvalue="60" type="cobertura-branch"/> - <summaryresult date="2006-11-13" filecount="17" module="common" - project="objectlabkit" statvalue="56" type="cobertura-line"/> - <summaryresult date="2006-11-13" filecount="17" module="common" - project="objectlabkit" statvalue="60" type="cobertura-branch"/> - <summaryresult date="2007-01-03" filecount="19" module="common" - project="objectlabkit" statvalue="54" type="cobertura-line"/> - <summaryresult date="2007-01-03" filecount="19" module="common" - project="objectlabkit" statvalue="58" type="cobertura-branch"/> - <summaryresult date="2007-01-04" filecount="21" module="common" - project="objectlabkit" statvalue="1" type="checkstyle"/> - <summaryresult date="2007-01-04" filecount="20" module="common" - project="objectlabkit" statvalue="34" type="cobertura-line"/> - <summaryresult date="2007-01-04" filecount="20" module="common" - project="objectlabkit" statvalue="30" type="cobertura-branch"/> - <summaryresult date="2007-01-05" filecount="21" module="common" - project="objectlabkit" statvalue="1" type="checkstyle"/> - <summaryresult date="2007-01-05" filecount="20" module="common" - project="objectlabkit" statvalue="45" type="cobertura-line"/> - <summaryresult date="2007-01-05" filecount="20" module="common" - project="objectlabkit" statvalue="46" type="cobertura-branch"/> - <summaryresult date="2007-01-09" filecount="21" module="common" - project="objectlabkit" statvalue="1" type="checkstyle"/> - <summaryresult date="2007-01-09" filecount="20" module="common" - project="objectlabkit" statvalue="45" type="cobertura-line"/> - <summaryresult date="2007-01-09" filecount="20" module="common" - project="objectlabkit" statvalue="46" type="cobertura-branch"/> - <summaryresult date="2007-01-22" filecount="21" module="common" - project="objectlabkit" statvalue="1" type="checkstyle"/> - <summaryresult date="2007-01-22" filecount="20" module="common" - project="objectlabkit" statvalue="45" type="cobertura-line"/> - <summaryresult date="2007-01-22" filecount="20" module="common" - project="objectlabkit" statvalue="46" type="cobertura-branch"/> - <summaryresult date="2008-03-24" filecount="21" module="common" - project="objectlabkit" statvalue="1" type="checkstyle"/> - <summaryresult date="2008-03-24" filecount="2" module="common" - project="objectlabkit" statvalue="2" type="findbugs"/> - <summaryresult date="2008-03-24" filecount="20" module="common" - project="objectlabkit" statvalue="45" type="cobertura-line"/> - <summaryresult date="2008-03-24" filecount="20" module="common" - project="objectlabkit" statvalue="33" type="cobertura-branch"/> - <summaryresult date="2008-03-27" filecount="21" module="common" - project="objectlabkit" statvalue="1" type="checkstyle"/> - <summaryresult date="2008-03-27" filecount="2" module="common" - project="objectlabkit" statvalue="2" type="findbugs"/> - <summaryresult date="2008-03-27" filecount="20" module="common" - project="objectlabkit" statvalue="45" type="cobertura-line"/> - <summaryresult date="2008-03-27" filecount="20" module="common" - project="objectlabkit" statvalue="33" type="cobertura-branch"/> - <summaryresult date="2008-05-05" filecount="21" module="common" - project="objectlabkit" statvalue="4" type="checkstyle"/> - <summaryresult date="2008-05-05" filecount="2" module="common" - project="objectlabkit" statvalue="2" type="findbugs"/> - <summaryresult date="2008-05-05" filecount="20" module="common" - project="objectlabkit" statvalue="45" type="cobertura-line"/> - <summaryresult date="2008-05-05" filecount="20" module="common" - project="objectlabkit" statvalue="33" type="cobertura-branch"/> - <summaryresult date="2009-02-06" filecount="21" module="common" - project="objectlabkit" statvalue="4" type="checkstyle"/> - <summaryresult date="2009-02-06" filecount="2" module="common" - project="objectlabkit" statvalue="2" type="findbugs"/> - <summaryresult date="2009-02-06" filecount="20" module="common" - project="objectlabkit" statvalue="43" type="cobertura-line"/> - <summaryresult date="2009-02-06" filecount="20" module="common" - project="objectlabkit" statvalue="30" type="cobertura-branch"/> - <summaryresult date="2009-02-07" filecount="21" module="common" - project="objectlabkit" statvalue="4" type="checkstyle"/> - <summaryresult date="2009-02-07" filecount="2" module="common" - project="objectlabkit" statvalue="2" type="findbugs"/> - <summaryresult date="2009-02-07" filecount="20" module="common" - project="objectlabkit" statvalue="44" type="cobertura-line"/> - <summaryresult date="2009-02-07" filecount="20" module="common" - project="objectlabkit" statvalue="33" type="cobertura-branch"/> - </summary> - <file - id="objectlabkit-common-net_objectlab_kit_datecalc_common_package.html" - module="common" - path="net/objectlab/kit/datecalc/common/package.html" project="objectlabkit"> - <result date="2006-08-08" statvalue="1" type="checkstyle"/> - <result date="2006-08-09" statvalue="1" type="checkstyle"/> - <result date="2006-08-10" statvalue="1" type="checkstyle"/> - <result date="2006-08-19" statvalue="1" type="checkstyle"/> - <result date="2006-08-20" statvalue="1" type="checkstyle"/> - <result date="2006-08-23" statvalue="1" type="checkstyle"/> - <result date="2006-08-24" statvalue="1" type="checkstyle"/> - <result date="2006-08-28" statvalue="1" type="checkstyle"/> - <result date="2006-09-02" statvalue="1" type="checkstyle"/> - <result date="2006-09-04" statvalue="1" type="checkstyle"/> - <result date="2006-09-05" statvalue="1" type="checkstyle"/> - </file> - <file - id="objectlabkit-common-net_objectlab_kit_datecalc_common_Tenor.java" - module="common" - path="net/objectlab/kit/datecalc/common/Tenor.java" project="objectlabkit"> - <result date="2006-08-08" statvalue="1" type="checkstyle"/> - <result date="2006-08-08" statvalue="55" type="cobertura-line"/> - <result date="2006-08-08" statvalue="43" type="cobertura-branch"/> - <result date="2006-08-09" statvalue="1" type="checkstyle"/> - <result date="2006-08-09" statvalue="94" type="cobertura-line"/> - <result date="2006-08-09" statvalue="93" type="cobertura-branch"/> - <result date="2006-08-10" statvalue="1" type="checkstyle"/> - <result date="2006-08-10" statvalue="100" type="cobertura-line"/> - <result date="2006-08-10" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-19" statvalue="100" type="cobertura-line"/> - <result date="2006-08-19" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-20" statvalue="100" type="cobertura-line"/> - <result date="2006-08-20" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-23" statvalue="100" type="cobertura-line"/> - <result date="2006-08-23" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-24" statvalue="100" type="cobertura-line"/> - <result date="2006-08-24" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-28" statvalue="100" type="cobertura-line"/> - <result date="2006-08-28" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-02" statvalue="100" type="cobertura-line"/> - <result date="2006-09-02" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-04" statvalue="100" type="cobertura-line"/> - <result date="2006-09-04" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-05" statvalue="100" type="cobertura-line"/> - <result date="2006-09-05" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-06" statvalue="100" type="cobertura-line"/> - <result date="2006-09-06" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-07" statvalue="100" type="cobertura-line"/> - <result date="2006-09-07" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-09" statvalue="100" type="cobertura-line"/> - <result date="2006-09-09" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-12" statvalue="100" type="cobertura-line"/> - <result date="2006-09-12" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-14" statvalue="100" type="cobertura-line"/> - <result date="2006-09-14" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-18" statvalue="100" type="cobertura-line"/> - <result date="2006-09-18" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-20" statvalue="100" type="cobertura-line"/> - <result date="2006-09-20" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-21" statvalue="100" type="cobertura-line"/> - <result date="2006-09-21" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-22" statvalue="100" type="cobertura-line"/> - <result date="2006-09-22" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-10" statvalue="100" type="cobertura-line"/> - <result date="2006-10-10" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-11" statvalue="100" type="cobertura-line"/> - <result date="2006-10-11" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-12" statvalue="100" type="cobertura-line"/> - <result date="2006-10-12" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-13" statvalue="100" type="cobertura-line"/> - <result date="2006-10-13" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-14" statvalue="100" type="cobertura-line"/> - <result date="2006-10-14" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-15" statvalue="100" type="cobertura-line"/> - <result date="2006-10-15" statvalue="100" type="cobertura-branch"/> - <result date="2006-11-13" statvalue="100" type="cobertura-line"/> - <result date="2006-11-13" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-03" statvalue="100" type="cobertura-line"/> - <result date="2007-01-03" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-05" statvalue="100" type="cobertura-line"/> - <result date="2007-01-05" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-09" statvalue="100" type="cobertura-line"/> - <result date="2007-01-09" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-22" statvalue="100" type="cobertura-line"/> - <result date="2007-01-22" statvalue="100" type="cobertura-branch"/> - <result date="2008-03-24" statvalue="1" type="findbugs"/> - <result date="2008-03-24" statvalue="100" type="cobertura-line"/> - <result date="2008-03-24" statvalue="92" type="cobertura-branch"/> - <result date="2008-03-27" statvalue="1" type="findbugs"/> - <result date="2008-03-27" statvalue="100" type="cobertura-line"/> - <result date="2008-03-27" statvalue="92" type="cobertura-branch"/> - <result date="2008-05-05" statvalue="1" type="findbugs"/> - <result date="2008-05-05" statvalue="100" type="cobertura-line"/> - <result date="2008-05-05" statvalue="92" type="cobertura-branch"/> - <result date="2009-02-06" statvalue="1" type="findbugs"/> - <result date="2009-02-06" statvalue="100" type="cobertura-line"/> - <result date="2009-02-06" statvalue="92" type="cobertura-branch"/> - <result date="2009-02-07" statvalue="1" type="findbugs"/> - <result date="2009-02-07" statvalue="100" type="cobertura-line"/> - <result date="2009-02-07" statvalue="92" type="cobertura-branch"/> - </file> - <file - id="objectlabkit-common-net_objectlab_kit_datecalc_common_WorkingWeek.java" - module="common" - path="net/objectlab/kit/datecalc/common/WorkingWeek.java" project="objectlabkit"> - <result date="2006-08-08" statvalue="3" type="checkstyle"/> - <result date="2006-08-08" statvalue="1" type="findbugs"/> - <result date="2006-08-08" statvalue="82" type="cobertura-line"/> - <result date="2006-08-08" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-09" statvalue="3" type="checkstyle"/> - <result date="2006-08-09" statvalue="100" type="cobertura-line"/> - <result date="2006-08-09" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-10" statvalue="2" type="checkstyle"/> - <result date="2006-08-10" statvalue="100" type="cobertura-line"/> - <result date="2006-08-10" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-19" statvalue="100" type="cobertura-line"/> - <result date="2006-08-19" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-20" statvalue="100" type="cobertura-line"/> - <result date="2006-08-20" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-23" statvalue="100" type="cobertura-line"/> - <result date="2006-08-23" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-24" statvalue="100" type="cobertura-line"/> - <result date="2006-08-24" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-28" statvalue="100" type="cobertura-line"/> - <result date="2006-08-28" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-02" statvalue="100" type="cobertura-line"/> - <result date="2006-09-02" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-04" statvalue="1" type="checkstyle"/> - <result date="2006-09-04" statvalue="1" type="findbugs"/> - <result date="2006-09-04" statvalue="95" type="cobertura-line"/> - <result date="2006-09-04" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-05" statvalue="1" type="checkstyle"/> - <result date="2006-09-05" statvalue="1" type="findbugs"/> - <result date="2006-09-05" statvalue="95" type="cobertura-line"/> - <result date="2006-09-05" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-06" statvalue="95" type="cobertura-line"/> - <result date="2006-09-06" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-07" statvalue="95" type="cobertura-line"/> - <result date="2006-09-07" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-09" statvalue="95" type="cobertura-line"/> - <result date="2006-09-09" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-12" statvalue="95" type="cobertura-line"/> - <result date="2006-09-12" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-14" statvalue="95" type="cobertura-line"/> - <result date="2006-09-14" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-18" statvalue="95" type="cobertura-line"/> - <result date="2006-09-18" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-20" statvalue="95" type="cobertura-line"/> - <result date="2006-09-20" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-21" statvalue="95" type="cobertura-line"/> - <result date="2006-09-21" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-22" statvalue="95" type="cobertura-line"/> - <result date="2006-09-22" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-10" statvalue="94" type="cobertura-line"/> - <result date="2006-10-10" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-11" statvalue="94" type="cobertura-line"/> - <result date="2006-10-11" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-12" statvalue="94" type="cobertura-line"/> - <result date="2006-10-12" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-13" statvalue="94" type="cobertura-line"/> - <result date="2006-10-13" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-14" statvalue="94" type="cobertura-line"/> - <result date="2006-10-14" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-15" statvalue="94" type="cobertura-line"/> - <result date="2006-10-15" statvalue="100" type="cobertura-branch"/> - <result date="2006-11-13" statvalue="95" type="cobertura-line"/> - <result date="2006-11-13" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-03" statvalue="95" type="cobertura-line"/> - <result date="2007-01-03" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-05" statvalue="95" type="cobertura-line"/> - <result date="2007-01-05" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-09" statvalue="95" type="cobertura-line"/> - <result date="2007-01-09" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-22" statvalue="95" type="cobertura-line"/> - <result date="2007-01-22" statvalue="100" type="cobertura-branch"/> - <result date="2008-03-24" statvalue="95" type="cobertura-line"/> - <result date="2008-03-24" statvalue="90" type="cobertura-branch"/> - <result date="2008-03-27" statvalue="95" type="cobertura-line"/> - <result date="2008-03-27" statvalue="90" type="cobertura-branch"/> - <result date="2008-05-05" statvalue="95" type="cobertura-line"/> - <result date="2008-05-05" statvalue="90" type="cobertura-branch"/> - <result date="2009-02-06" statvalue="95" type="cobertura-line"/> - <result date="2009-02-06" statvalue="90" type="cobertura-branch"/> - <result date="2009-02-07" statvalue="95" type="cobertura-line"/> - <result date="2009-02-07" statvalue="90" type="cobertura-branch"/> - </file> - <file - id="objectlabkit-common-net_objectlab_kit_datecalc_common_TenorCode.java" - module="common" - path="net/objectlab/kit/datecalc/common/TenorCode.java" project="objectlabkit"> - <result date="2006-08-08" statvalue="100" type="cobertura-line"/> - <result date="2006-08-08" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-09" statvalue="100" type="cobertura-line"/> - <result date="2006-08-09" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-10" statvalue="100" type="cobertura-line"/> - <result date="2006-08-10" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-19" statvalue="100" type="cobertura-line"/> - <result date="2006-08-19" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-20" statvalue="100" type="cobertura-line"/> - <result date="2006-08-20" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-23" statvalue="100" type="cobertura-line"/> - <result date="2006-08-23" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-24" statvalue="100" type="cobertura-line"/> - <result date="2006-08-24" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-28" statvalue="100" type="cobertura-line"/> - <result date="2006-08-28" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-02" statvalue="100" type="cobertura-line"/> - <result date="2006-09-02" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-04" statvalue="100" type="cobertura-line"/> - <result date="2006-09-04" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-05" statvalue="100" type="cobertura-line"/> - <result date="2006-09-05" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-06" statvalue="100" type="cobertura-line"/> - <result date="2006-09-06" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-07" statvalue="100" type="cobertura-line"/> - <result date="2006-09-07" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-09" statvalue="100" type="cobertura-line"/> - <result date="2006-09-09" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-12" statvalue="100" type="cobertura-line"/> - <result date="2006-09-12" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-14" statvalue="100" type="cobertura-line"/> - <result date="2006-09-14" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-18" statvalue="100" type="cobertura-line"/> - <result date="2006-09-18" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-20" statvalue="100" type="cobertura-line"/> - <result date="2006-09-20" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-21" statvalue="100" type="cobertura-line"/> - <result date="2006-09-21" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-22" statvalue="100" type="cobertura-line"/> - <result date="2006-09-22" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-10" statvalue="100" type="cobertura-line"/> - <result date="2006-10-10" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-11" statvalue="100" type="cobertura-line"/> - <result date="2006-10-11" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-12" statvalue="100" type="cobertura-line"/> - <result date="2006-10-12" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-13" statvalue="100" type="cobertura-line"/> - <result date="2006-10-13" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-14" statvalue="100" type="cobertura-line"/> - <result date="2006-10-14" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-15" statvalue="100" type="cobertura-line"/> - <result date="2006-10-15" statvalue="100" type="cobertura-branch"/> - <result date="2006-11-13" statvalue="100" type="cobertura-line"/> - <result date="2006-11-13" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-03" statvalue="100" type="cobertura-line"/> - <result date="2007-01-03" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-05" statvalue="100" type="cobertura-line"/> - <result date="2007-01-05" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-09" statvalue="100" type="cobertura-line"/> - <result date="2007-01-09" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-22" statvalue="100" type="cobertura-line"/> - <result date="2007-01-22" statvalue="100" type="cobertura-branch"/> - <result date="2008-03-24" statvalue="100" type="cobertura-line"/> - <result date="2008-03-24" statvalue="100" type="cobertura-branch"/> - <result date="2008-03-27" statvalue="100" type="cobertura-line"/> - <result date="2008-03-27" statvalue="100" type="cobertura-branch"/> - <result date="2008-05-05" statvalue="100" type="cobertura-line"/> - <result date="2008-05-05" statvalue="100" type="cobertura-branch"/> - <result date="2009-02-06" statvalue="100" type="cobertura-line"/> - <result date="2009-02-06" statvalue="100" type="cobertura-branch"/> - <result date="2009-02-07" statvalue="100" type="cobertura-line"/> - <result date="2009-02-07" statvalue="100" type="cobertura-branch"/> - </file> - <file - id="objectlabkit-common-net_objectlab_kit_datecalc_common_HolidayHandlerType.java" - module="common" - path="net/objectlab/kit/datecalc/common/HolidayHandlerType.java" project="objectlabkit"> - <result date="2006-08-08" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-09" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-10" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-19" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-20" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-23" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-24" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-28" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-02" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-04" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-05" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-06" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-07" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-09" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-12" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-14" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-18" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-20" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-21" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-22" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-10" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-11" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-12" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-13" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-14" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-15" statvalue="100" type="cobertura-branch"/> - <result date="2006-11-13" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-03" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-05" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-09" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-22" statvalue="100" type="cobertura-branch"/> - <result date="2008-03-24" statvalue="100" type="cobertura-branch"/> - <result date="2008-03-27" statvalue="100" type="cobertura-branch"/> - <result date="2008-05-05" statvalue="100" type="cobertura-branch"/> - <result date="2009-02-06" statvalue="100" type="cobertura-branch"/> - <result date="2009-02-07" statvalue="100" type="cobertura-branch"/> - </file> - <file - id="objectlabkit-common-net_objectlab_kit_datecalc_common_PeriodCountBasis.java" - module="common" - path="net/objectlab/kit/datecalc/common/PeriodCountBasis.java" project="objectlabkit"> - <result date="2006-08-08" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-10" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-20" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-23" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-24" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-28" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-02" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-04" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-05" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-06" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-07" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-09" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-12" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-14" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-18" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-20" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-21" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-22" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-10" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-11" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-12" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-13" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-14" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-15" statvalue="100" type="cobertura-branch"/> - <result date="2006-11-13" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-03" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-05" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-09" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-22" statvalue="100" type="cobertura-branch"/> - <result date="2008-03-24" statvalue="100" type="cobertura-branch"/> - <result date="2008-03-27" statvalue="100" type="cobertura-branch"/> - <result date="2008-05-05" statvalue="100" type="cobertura-branch"/> - <result date="2009-02-06" statvalue="100" type="cobertura-branch"/> - <result date="2009-02-07" statvalue="100" type="cobertura-branch"/> - </file> - <file - id="objectlabkit-common-net_objectlab_kit_datecalc_common_StandardTenor.java" - module="common" - path="net/objectlab/kit/datecalc/common/StandardTenor.java" project="objectlabkit"> - <result date="2006-08-08" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-09" statvalue="92" type="cobertura-line"/> - <result date="2006-08-09" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-10" statvalue="92" type="cobertura-line"/> - <result date="2006-08-10" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-19" statvalue="92" type="cobertura-line"/> - <result date="2006-08-19" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-20" statvalue="92" type="cobertura-line"/> - <result date="2006-08-20" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-23" statvalue="92" type="cobertura-line"/> - <result date="2006-08-23" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-24" statvalue="92" type="cobertura-line"/> - <result date="2006-08-24" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-28" statvalue="92" type="cobertura-line"/> - <result date="2006-08-28" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-02" statvalue="92" type="cobertura-line"/> - <result date="2006-09-02" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-04" statvalue="92" type="cobertura-line"/> - <result date="2006-09-04" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-05" statvalue="92" type="cobertura-line"/> - <result date="2006-09-05" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-06" statvalue="92" type="cobertura-line"/> - <result date="2006-09-06" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-07" statvalue="92" type="cobertura-line"/> - <result date="2006-09-07" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-09" statvalue="92" type="cobertura-line"/> - <result date="2006-09-09" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-12" statvalue="90" type="cobertura-line"/> - <result date="2006-09-12" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-14" statvalue="90" type="cobertura-line"/> - <result date="2006-09-14" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-18" statvalue="90" type="cobertura-line"/> - <result date="2006-09-18" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-20" statvalue="90" type="cobertura-line"/> - <result date="2006-09-20" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-21" statvalue="90" type="cobertura-line"/> - <result date="2006-09-21" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-22" statvalue="90" type="cobertura-line"/> - <result date="2006-09-22" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-10" statvalue="93" type="cobertura-line"/> - <result date="2006-10-10" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-11" statvalue="93" type="cobertura-line"/> - <result date="2006-10-11" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-12" statvalue="93" type="cobertura-line"/> - <result date="2006-10-12" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-13" statvalue="93" type="cobertura-line"/> - <result date="2006-10-13" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-14" statvalue="93" type="cobertura-line"/> - <result date="2006-10-14" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-15" statvalue="93" type="cobertura-line"/> - <result date="2006-10-15" statvalue="100" type="cobertura-branch"/> - <result date="2006-11-13" statvalue="90" type="cobertura-line"/> - <result date="2006-11-13" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-03" statvalue="92" type="cobertura-line"/> - <result date="2007-01-03" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-05" statvalue="93" type="cobertura-line"/> - <result date="2007-01-05" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-09" statvalue="93" type="cobertura-line"/> - <result date="2007-01-09" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-22" statvalue="93" type="cobertura-line"/> - <result date="2007-01-22" statvalue="100" type="cobertura-branch"/> - <result date="2008-03-24" statvalue="93" type="cobertura-line"/> - <result date="2008-03-24" statvalue="100" type="cobertura-branch"/> - <result date="2008-03-27" statvalue="93" type="cobertura-line"/> - <result date="2008-03-27" statvalue="100" type="cobertura-branch"/> - <result date="2008-05-05" statvalue="93" type="cobertura-line"/> - <result date="2008-05-05" statvalue="100" type="cobertura-branch"/> - <result date="2009-02-06" statvalue="93" type="cobertura-line"/> - <result date="2009-02-06" statvalue="100" type="cobertura-branch"/> - <result date="2009-02-07" statvalue="93" type="cobertura-line"/> - <result date="2009-02-07" statvalue="100" type="cobertura-branch"/> - </file> - <file - id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractDateCalculator.java" - module="common" - path="net/objectlab/kit/datecalc/common/AbstractDateCalculator.java" project="objectlabkit"> - <result date="2006-08-23" statvalue="5" type="checkstyle"/> - <result date="2007-01-05" statvalue="1" type="checkstyle"/> - <result date="2007-01-09" statvalue="1" type="checkstyle"/> - <result date="2007-01-22" statvalue="1" type="checkstyle"/> - <result date="2008-03-24" statvalue="1" type="checkstyle"/> - <result date="2008-03-24" statvalue="1" type="findbugs"/> - <result date="2008-03-27" statvalue="1" type="checkstyle"/> - <result date="2008-03-27" statvalue="1" type="findbugs"/> - <result date="2008-05-05" statvalue="4" type="checkstyle"/> - <result date="2008-05-05" statvalue="1" type="findbugs"/> - <result date="2009-02-06" statvalue="4" type="checkstyle"/> - <result date="2009-02-06" statvalue="1" type="findbugs"/> - <result date="2009-02-07" statvalue="4" type="checkstyle"/> - <result date="2009-02-07" statvalue="1" type="findbugs"/> - </file> - <file - id="objectlabkit-common-net_objectlab_kit_datecalc_common_DateCalculatorGeneric.java" - module="common" - path="net/objectlab/kit/datecalc/common/DateCalculatorGeneric.java" project="objectlabkit"/> - <file - id="objectlabkit-common-net_objectlab_kit_datecalc_common_DateCalculator.java" - module="common" - path="net/objectlab/kit/datecalc/common/DateCalculator.java" project="objectlabkit"> - <result date="2006-08-23" statvalue="19" type="checkstyle"/> - <result date="2006-08-23" statvalue="100" type="cobertura-line"/> - <result date="2006-08-23" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-24" statvalue="100" type="cobertura-line"/> - <result date="2006-08-24" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-28" statvalue="100" type="cobertura-line"/> - <result date="2006-08-28" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-02" statvalue="100" type="cobertura-line"/> - <result date="2006-09-02" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-04" statvalue="100" type="cobertura-line"/> - <result date="2006-09-04" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-05" statvalue="100" type="cobertura-line"/> - <result date="2006-09-05" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-06" statvalue="100" type="cobertura-line"/> - <result date="2006-09-06" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-07" statvalue="100" type="cobertura-line"/> - <result date="2006-09-07" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-09" statvalue="100" type="cobertura-line"/> - <result date="2006-09-09" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-12" statvalue="100" type="cobertura-line"/> - <result date="2006-09-12" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-14" statvalue="100" type="cobertura-line"/> - <result date="2006-09-14" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-18" statvalue="100" type="cobertura-line"/> - <result date="2006-09-18" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-20" statvalue="100" type="cobertura-line"/> - <result date="2006-09-20" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-21" statvalue="100" type="cobertura-line"/> - <result date="2006-09-21" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-22" statvalue="100" type="cobertura-line"/> - <result date="2006-09-22" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-10" statvalue="100" type="cobertura-line"/> - <result date="2006-10-10" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-11" statvalue="100" type="cobertura-line"/> - <result date="2006-10-11" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-12" statvalue="100" type="cobertura-line"/> - <result date="2006-10-12" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-13" statvalue="100" type="cobertura-line"/> - <result date="2006-10-13" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-14" statvalue="100" type="cobertura-line"/> - <result date="2006-10-14" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-15" statvalue="100" type="cobertura-line"/> - <result date="2006-10-15" statvalue="100" type="cobertura-branch"/> - <result date="2006-11-13" statvalue="100" type="cobertura-line"/> - <result date="2006-11-13" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-03" statvalue="100" type="cobertura-line"/> - <result date="2007-01-03" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-05" statvalue="100" type="cobertura-line"/> - <result date="2007-01-05" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-09" statvalue="100" type="cobertura-line"/> - <result date="2007-01-09" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-22" statvalue="100" type="cobertura-line"/> - <result date="2007-01-22" statvalue="100" type="cobertura-branch"/> - <result date="2008-03-24" statvalue="100" type="cobertura-line"/> - <result date="2008-03-24" statvalue="100" type="cobertura-branch"/> - <result date="2008-03-27" statvalue="100" type="cobertura-line"/> - <result date="2008-03-27" statvalue="100" type="cobertura-branch"/> - <result date="2008-05-05" statvalue="100" type="cobertura-line"/> - <result date="2008-05-05" statvalue="100" type="cobertura-branch"/> - <result date="2009-02-06" statvalue="100" type="cobertura-line"/> - <result date="2009-02-06" statvalue="100" type="cobertura-branch"/> - <result date="2009-02-07" statvalue="100" type="cobertura-line"/> - <result date="2009-02-07" statvalue="100" type="cobertura-branch"/> - </file> - <file - id="objectlabkit-common-net_objectlab_kit_datecalc_common_HolidayHandler.java" - module="common" - path="net/objectlab/kit/datecalc/common/HolidayHandler.java" project="objectlabkit"> - <result date="2006-08-23" statvalue="100" type="cobertura-line"/> - <result date="2006-08-23" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-24" statvalue="100" type="cobertura-line"/> - <result date="2006-08-24" statvalue="100" type="cobertura-branch"/> - <result date="2006-08-28" statvalue="100" type="cobertura-line"/> - <result date="2006-08-28" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-02" statvalue="100" type="cobertura-line"/> - <result date="2006-09-02" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-04" statvalue="100" type="cobertura-line"/> - <result date="2006-09-04" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-05" statvalue="100" type="cobertura-line"/> - <result date="2006-09-05" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-06" statvalue="100" type="cobertura-line"/> - <result date="2006-09-06" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-07" statvalue="100" type="cobertura-line"/> - <result date="2006-09-07" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-09" statvalue="100" type="cobertura-line"/> - <result date="2006-09-09" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-12" statvalue="100" type="cobertura-line"/> - <result date="2006-09-12" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-14" statvalue="100" type="cobertura-line"/> - <result date="2006-09-14" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-18" statvalue="100" type="cobertura-line"/> - <result date="2006-09-18" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-20" statvalue="100" type="cobertura-line"/> - <result date="2006-09-20" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-21" statvalue="100" type="cobertura-line"/> - <result date="2006-09-21" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-22" statvalue="100" type="cobertura-line"/> - <result date="2006-09-22" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-10" statvalue="100" type="cobertura-line"/> - <result date="2006-10-10" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-11" statvalue="100" type="cobertura-line"/> - <result date="2006-10-11" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-12" statvalue="100" type="cobertura-line"/> - <result date="2006-10-12" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-13" statvalue="100" type="cobertura-line"/> - <result date="2006-10-13" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-14" statvalue="100" type="cobertura-line"/> - <result date="2006-10-14" statvalue="100" type="cobertura-branch"/> - <result date="2006-10-15" statvalue="100" type="cobertura-line"/> - <result date="2006-10-15" statvalue="100" type="cobertura-branch"/> - <result date="2006-11-13" statvalue="100" type="cobertura-line"/> - <result date="2006-11-13" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-03" statvalue="100" type="cobertura-line"/> - <result date="2007-01-03" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-05" statvalue="100" type="cobertura-line"/> - <result date="2007-01-05" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-09" statvalue="100" type="cobertura-line"/> - <result date="2007-01-09" statvalue="100" type="cobertura-branch"/> - <result date="2007-01-22" statvalue="100" type="cobertura-line"/> - <result date="2007-01-22" statvalue="100" type="cobertura-branch"/> - <result date="2008-03-24" statvalue="100" type="cobertura-line"/> - <result date="2008-03-24" statvalue="100" type="cobertura-branch"/> - <result date="2008-03-27" statvalue="100" type="cobertura-line"/> - <result date="2008-03-27" statvalue="100" type="cobertura-branch"/> - <result date="2008-05-05" statvalue="100" type="cobertura-line"/> - <result date="2008-05-05" statvalue="100" type="cobertura-branch"/> - <result date="2009-02-06" statvalue="100" type="cobertura-line"/> - <result date="2009-02-06" statvalue="100" type="cobertura-branch"/> - <result date="2009-02-07" statvalue="100" type="cobertura-line"/> - <result date="2009-02-07" statvalue="100" type="cobertura-branch"/> - </file> - <file - id="objectlabkit-common-net_objectlab_kit_datecalc_common_AbstractDateCalculatorFactory.java" - module="common" - path="net/objectlab/kit/datecalc/common/AbstractDateCalculatorFactory.java" project="objectlabkit"> - <result date="2006-08-28" statvalue="2" type="checkstyle"/> - <result date="2006-08-28" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-02" statvalue="2" type="checkstyle"/> - <result date="2006-09-02" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-04" statvalue="2" type="checkstyle"/> - <result date="2006-09-04" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-05" statvalue="1" type="checkstyle"/> - <result date="2006-09-05" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-06" statvalue="1" type="checkstyle"/> - <result date="2006-09-06" statvalue="100" type="cobertura-branch"/> - </file> - <file - id="objectlabkit-common-net_objectlab_kit_datecalc_common_DateCalculatorFactory.java" - module="common" - path="net/objectlab/kit/datecalc/common/DateCalculatorFactory.java" project="objectlabkit"> - <result date="2006-08-28" statvalue="100" type="cobertura-line"/> - <result date="2006-08-28" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-02" statvalue="100" type="cobertura-line"/> - <result date="2006-09-02" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-04" statvalue="100" type="cobertura-line"/> - <result date="2006-09-04" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-05" statvalue="100" type="cobertura-line"/> - <result date="2006-09-05" statvalue="100" type="cobertura-branch"/> - <result date="2006-09-06" statvalue="100" type="cobertura-line"/> - <result date="2006-09-06" statvalue="100" type="cobertura-branch"/> - <result ... [truncated message content] |
From: <ma...@us...> - 2010-04-15 10:47:34
|
Revision: 352 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=352&view=rev Author: marchy Date: 2010-04-15 10:47:28 +0000 (Thu, 15 Apr 2010) Log Message: ----------- not inheriting stat-scm, just one big report in the root module. Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-04-15 10:46:35 UTC (rev 351) +++ trunk/pom.xml 2010-04-15 10:47:28 UTC (rev 352) @@ -220,6 +220,7 @@ <plugin> <groupId>net.sf</groupId> <artifactId>stat-scm</artifactId> + <inherited>false</inherited> </plugin> </plugins> </reporting> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-04-15 10:46:41
|
Revision: 351 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=351&view=rev Author: marchy Date: 2010-04-15 10:46:35 +0000 (Thu, 15 Apr 2010) Log Message: ----------- groupId=net.objectlab.kit parent artifactId=kit-parent Modified Paths: -------------- trunk/datecalc-common/pom.xml trunk/datecalc-jdk/pom.xml trunk/datecalc-joda/pom.xml trunk/pom.xml Modified: trunk/datecalc-common/pom.xml =================================================================== --- trunk/datecalc-common/pom.xml 2010-04-14 16:02:01 UTC (rev 350) +++ trunk/datecalc-common/pom.xml 2010-04-15 10:46:35 UTC (rev 351) @@ -3,8 +3,8 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>net.objectlab.kit.datecalc</groupId> - <artifactId>datecalc</artifactId> + <groupId>net.objectlab.kit</groupId> + <artifactId>kit-parent</artifactId> <version>1.2.0-SNAPSHOT</version> </parent> @@ -22,7 +22,7 @@ <extensions>true</extensions> <configuration> <instructions> - <Export-Package>net.objectlab.kit.datecalc.*;version="${pom.version}"</Export-Package> + <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> <Private-Package /> <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> <Bundle-Version>${pom.version}</Bundle-Version> Modified: trunk/datecalc-jdk/pom.xml =================================================================== --- trunk/datecalc-jdk/pom.xml 2010-04-14 16:02:01 UTC (rev 350) +++ trunk/datecalc-jdk/pom.xml 2010-04-15 10:46:35 UTC (rev 351) @@ -3,8 +3,8 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>net.objectlab.kit.datecalc</groupId> - <artifactId>datecalc</artifactId> + <groupId>net.objectlab.kit</groupId> + <artifactId>kit-parent</artifactId> <version>1.2.0-SNAPSHOT</version> </parent> @@ -16,11 +16,11 @@ <dependencies> <dependency> - <groupId>net.objectlab.kit.datecalc</groupId> + <groupId>net.objectlab.kit</groupId> <artifactId>datecalc-common</artifactId> </dependency> <dependency> - <groupId>net.objectlab.kit.datecalc</groupId> + <groupId>net.objectlab.kit</groupId> <artifactId>datecalc-common</artifactId> <scope>test</scope> <classifier>tests</classifier> @@ -59,7 +59,7 @@ <extensions>true</extensions> <configuration> <instructions> - <Export-Package>net.objectlab.kit.datecalc.*;version="${pom.version}"</Export-Package> + <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> <Private-Package /> <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> <Bundle-Version>${pom.version}</Bundle-Version> Modified: trunk/datecalc-joda/pom.xml =================================================================== --- trunk/datecalc-joda/pom.xml 2010-04-14 16:02:01 UTC (rev 350) +++ trunk/datecalc-joda/pom.xml 2010-04-15 10:46:35 UTC (rev 351) @@ -3,8 +3,8 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>net.objectlab.kit.datecalc</groupId> - <artifactId>datecalc</artifactId> + <groupId>net.objectlab.kit</groupId> + <artifactId>kit-parent</artifactId> <version>1.2.0-SNAPSHOT</version> </parent> @@ -16,7 +16,7 @@ <dependencies> <dependency> - <groupId>net.objectlab.kit.datecalc</groupId> + <groupId>net.objectlab.kit</groupId> <artifactId>datecalc-common</artifactId> </dependency> <dependency> @@ -25,7 +25,7 @@ <version>1.6</version> </dependency> <dependency> - <groupId>net.objectlab.kit.datecalc</groupId> + <groupId>net.objectlab.kit</groupId> <artifactId>datecalc-common</artifactId> <scope>test</scope> <classifier>tests</classifier> @@ -64,7 +64,7 @@ <extensions>true</extensions> <configuration> <instructions> - <Export-Package>net.objectlab.kit.datecalc.*;version="${pom.version}"</Export-Package> + <Export-Package>net.objectlab.kit.*;version="${pom.version}"</Export-Package> <Private-Package /> <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> <Bundle-Version>${pom.version}</Bundle-Version> Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-04-14 16:02:01 UTC (rev 350) +++ trunk/pom.xml 2010-04-15 10:46:35 UTC (rev 351) @@ -3,8 +3,8 @@ 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>net.objectlab.kit.datecalc</groupId> - <artifactId>datecalc</artifactId> + <groupId>net.objectlab.kit</groupId> + <artifactId>kit-parent</artifactId> <version>1.2.0-SNAPSHOT</version> <packaging>pom</packaging> @@ -112,12 +112,12 @@ <dependencyManagement> <dependencies> <dependency> - <groupId>net.objectlab.kit.datecalc</groupId> + <groupId>net.objectlab.kit</groupId> <artifactId>datecalc-common</artifactId> <version>${pom.version}</version> </dependency> <dependency> - <groupId>net.objectlab.kit.datecalc</groupId> + <groupId>net.objectlab.kit</groupId> <artifactId>datecalc-common</artifactId> <version>${pom.version}</version> <scope>test</scope> @@ -333,7 +333,7 @@ <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> </configuration> </plugin> - <plugin> + <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>dashboard-maven-plugin</artifactId> </plugin> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-04-14 16:02:07
|
Revision: 350 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=350&view=rev Author: marchy Date: 2010-04-14 16:02:01 +0000 (Wed, 14 Apr 2010) Log Message: ----------- sorta fixed the code metrics page - still looks a bit ug, but at least it's usable. Modified Paths: -------------- trunk/src/site/resources/css/site.css trunk/src/site/xdoc/code-metrics.xml Modified: trunk/src/site/resources/css/site.css =================================================================== --- trunk/src/site/resources/css/site.css 2010-04-14 11:17:31 UTC (rev 349) +++ trunk/src/site/resources/css/site.css 2010-04-14 16:02:01 UTC (rev 350) @@ -16,8 +16,8 @@ h4 { color: #2872B4; - font-size:12px; - font-weight:bold; + font-size: 12px; + font-weight: bold; } #navcolumn h5 { @@ -27,4 +27,21 @@ #footer { border-top: 1px solid #2872B4; +} + +#sonar { + padding: 20px 20px 20px 20px; + text-align: center; +} + +#ohloh { +} + +#cocomo { + float:left; + margin:10px 0 0 10px; +} + +#factoids { + margin:0 0 10px 320px; } \ No newline at end of file Modified: trunk/src/site/xdoc/code-metrics.xml =================================================================== --- trunk/src/site/xdoc/code-metrics.xml 2010-04-14 11:17:31 UTC (rev 349) +++ trunk/src/site/xdoc/code-metrics.xml 2010-04-14 16:02:01 UTC (rev 350) @@ -20,18 +20,27 @@ <body> <subsection name="Code Metrics"> - <div id=""> - <a href="http://nemo.sonarsource.org/project/index/net.objectlab.kit.datecalc:datecalc"><img src="images/sonar_logo.png"/>View Code Metrics by Sonar</a> + <div id="sonar"> + <a href="http://nemo.sonarsource.org/project/index/net.objectlab.kit.datecalc:datecalc"> + <span> + <img src="images/sonar_logo.png"/> + </span> + <span> + View Code Metrics by Sonar + </span> + </a> </div> </subsection> - <subsection name="Ohloh stats"> - <div id=""> - <script type="text/javascript" src="http://www.ohloh.net/p/4682/widgets/project_factoids.js"></script> + <subsection name="Ohloh Stats"> + <div id="ohloh"> + <div id="cocomo"> + <script type="text/javascript" src="http://www.ohloh.net/p/4682/widgets/project_cocomo.js"></script> + </div> + <div id="factoids"> + <script type="text/javascript" src="http://www.ohloh.net/p/4682/widgets/project_factoids.js"></script> + </div> </div> - <div id=""> - <script type="text/javascript" src="http://www.ohloh.net/p/4682/widgets/project_cocomo.js"></script> - </div> </subsection> </body> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-04-14 11:17:37
|
Revision: 349 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=349&view=rev Author: marchy Date: 2010-04-14 11:17:31 +0000 (Wed, 14 Apr 2010) Log Message: ----------- adding download and code metrics pages. code metrics still needs to be formatted better. Modified Paths: -------------- trunk/src/site/site.xml Added Paths: ----------- trunk/src/site/xdoc/code-metrics.xml trunk/src/site/xdoc/download.xml Modified: trunk/src/site/site.xml =================================================================== --- trunk/src/site/site.xml 2010-04-14 11:16:02 UTC (rev 348) +++ trunk/src/site/site.xml 2010-04-14 11:17:31 UTC (rev 349) @@ -65,7 +65,7 @@ </links> <breadcrumbs> - <item name="ObjectLab Kit" href="http://objectlabkit.sourceforge.net/"/> + <item name="ObjectLab Kit" href="http://objectlabkit.sourceforge.net/index.html"/> </breadcrumbs> <menu name="Kit"> Added: trunk/src/site/xdoc/code-metrics.xml =================================================================== --- trunk/src/site/xdoc/code-metrics.xml (rev 0) +++ trunk/src/site/xdoc/code-metrics.xml 2010-04-14 11:17:31 UTC (rev 349) @@ -0,0 +1,39 @@ +<document> + + <properties> + <author email="ki...@ob...">Benoit Xhenseval</author> + <title>Code Metrics</title> + </properties> + + <head> + <meta name="description" content="ObjectLab Kit offers free and open source Date calculators, released under the business-friendly Apache 2.0 license." /> + <meta name="keywords" content="Date calculator, IMM Dates, Period Calculator, Financial Calendar, Business Calendar, java, open source" /> + <meta name="Subject" content="Date Calculators" /> + <meta name="Copyright" content="ObjectLab Financial Ltd" /> + <meta name="Language" content="English" /> + <meta name="Designer" content="ObjectLab Financial Ltd" /> + <meta name="Distribution" content="Global" /> + <meta name="robots" content="ALL"/> + <meta name="Revisit-After" content="20 Days" /> + </head> + + <body> + + <subsection name="Code Metrics"> + <div id=""> + <a href="http://nemo.sonarsource.org/project/index/net.objectlab.kit.datecalc:datecalc"><img src="images/sonar_logo.png"/>View Code Metrics by Sonar</a> + </div> + </subsection> + + <subsection name="Ohloh stats"> + <div id=""> + <script type="text/javascript" src="http://www.ohloh.net/p/4682/widgets/project_factoids.js"></script> + </div> + <div id=""> + <script type="text/javascript" src="http://www.ohloh.net/p/4682/widgets/project_cocomo.js"></script> + </div> + </subsection> + + </body> + +</document> \ No newline at end of file Added: trunk/src/site/xdoc/download.xml =================================================================== --- trunk/src/site/xdoc/download.xml (rev 0) +++ trunk/src/site/xdoc/download.xml 2010-04-14 11:17:31 UTC (rev 349) @@ -0,0 +1,53 @@ +<document> + + <properties> + <author email="ki...@ob...">Benoit Xhenseval</author> + <title>Download</title> + </properties> + + <head> + <meta name="description" content="ObjectLab Kit offers free and open source Date calculators, released under the business-friendly Apache 2.0 license." /> + <meta name="keywords" content="Date calculator, IMM Dates, Period Calculator, Financial Calendar, Business Calendar, java, open source" /> + <meta name="Subject" content="Date Calculators" /> + <meta name="Copyright" content="ObjectLab Financial Ltd" /> + <meta name="Language" content="English" /> + <meta name="Designer" content="ObjectLab Financial Ltd" /> + <meta name="Distribution" content="Global" /> + <meta name="robots" content="ALL"/> + <meta name="Revisit-After" content="20 Days" /> + </head> + + <body> + + <section name="Maven Dependency"> + <p> + We're in Maven Central Repo, so if you're using Maven, you can just insert this dependency in your project's pom.xml: + <subsection name="Joda Time (recommended)"> + <pre class="brush: xml; gutter: false;"> + <dependency> + <groupId>net.objectlab.kit.datecalc</groupId> + <artifactId>datecalc-joda</artifactId> + <version>1.2.0</version> + </dependency> + </pre> + </subsection> + + <subsection name="JDK"> + <pre class="brush: xml; gutter: false;"> + <dependency> + <groupId>net.objectlab.kit.datecalc</groupId> + <artifactId>datecalc-jdk</artifactId> + <version>1.2.0</version> + </dependency> + </pre> + </subsection> + </p> + </section> + + <section name="Download the jars"> + <p>Alternatively, you can <a href="https://sourceforge.net/projects/objectlabkit/files/">download the zip file</a> which contains all of the jars.</p> + </section> + + </body> + +</document> \ 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: <ma...@us...> - 2010-04-14 11:16:09
|
Revision: 348 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=348&view=rev Author: marchy Date: 2010-04-14 11:16:02 +0000 (Wed, 14 Apr 2010) Log Message: ----------- syntax highlighting: including xml brush, plus a lighter style, i think it's more mellow. plus merged the 2 liner java snippets under one <div> tag Modified Paths: -------------- trunk/src/site/site.xml trunk/src/site/xdoc/index.xml Modified: trunk/src/site/site.xml =================================================================== --- trunk/src/site/site.xml 2010-04-14 11:14:56 UTC (rev 347) +++ trunk/src/site/site.xml 2010-04-14 11:16:02 UTC (rev 348) @@ -47,9 +47,10 @@ <!-- BEGIN: Syntax Highlighting --> <script type="text/javascript" src="js/shCore.js"></script> <script type="text/javascript" src="js/shBrushJava.js"></script> + <script type="text/javascript" src="js/shBrushXml.js"></script> <link href="css/shCore.css" rel="stylesheet" type="text/css" /> - <link href="css/shThemeMidnight.css" rel="stylesheet" type="text/css" /> + <link href="css/shThemeDefault.css" rel="stylesheet" type="text/css" /> <script type="text/javascript"> SyntaxHighlighter.all() </script> @@ -72,8 +73,8 @@ <item name="Holiday Handling" href="algo.html" /> <item name="Tenor Handling" href="tenor.html" /> <item name="JavaDocs" href="apidocs/index.html" /> - <item name="Code Metrics" href="http://nemo.sonarsource.org/project/index/net.objectlab.kit.datecalc:datecalc" /> - <item name="Download" href="https://sourceforge.net/projects/objectlabkit/files/" /> + <item name="Code Metrics" href="code-metrics.html" /> + <item name="Download" href="download.html" /> <item name="In the press" href="press/index.html" /> <item name="FAQ" href="faq.html" /> </menu> Modified: trunk/src/site/xdoc/index.xml =================================================================== --- trunk/src/site/xdoc/index.xml 2010-04-14 11:14:56 UTC (rev 347) +++ trunk/src/site/xdoc/index.xml 2010-04-14 11:16:02 UTC (rev 348) @@ -47,9 +47,11 @@ <li>and either <strong>datecalc-jdk.jar</strong> OR <strong>datecalc-joda.jar</strong></li> </ul> - <p>the <a href="datecalc-jdk/index.html">datecalc-jdk.jar</a> has no dependencies other than JDK 1.5+. + <p>The <a href="datecalc-jdk/index.html">datecalc-jdk.jar</a> has no dependencies other than JDK 1.5+. <a href="datecalc-joda/index.html">datecalc-joda.jar</a> is based on the powerful <a href="http://joda-time.sourceforge.net">Joda Time</a> library (we recommend it!)</p> + + <p>See the <a href="download.html">Download</a> page for details.</p> </subsection> <subsection name ="Date Calculations? What is that?"> @@ -104,30 +106,26 @@ <p>2 implementations for Pure JDK have been released</p> <ol> <li><strong><code>Calendar</code></strong>: - <pre class="brush: java"> -DateCalculator<Calendar> calc = CalendarKitCalculatorsFactory.getDefaultInstance() + <pre class="brush: java; gutter: false"> +DateCalculator<Calendar> calc1 = CalendarKitCalculatorsFactory.getDefaultInstance() .getDateCalculator("UK", HolidayHandlerType.FORWARD); - </pre> - <pre class="brush: java"> -PeriodCountCalculator<Calendar> calc = CalendarKitCalculatorsFactory.getDefaultInstance() + +PeriodCountCalculator<Calendar> calc2 = CalendarKitCalculatorsFactory.getDefaultInstance() .getPeriodCountCalculator(); - </pre> - <pre class="brush: java"> -IMMDateCalculator<Calendar> calc = CalendarKitCalculatorsFactory.getDefaultInstance() + +IMMDateCalculator<Calendar> calc3 = CalendarKitCalculatorsFactory.getDefaultInstance() .getIMMDateCalculator(); </pre> </li> <li><strong><code>Date</code></strong>: - <pre class="brush: java"> -DateCalculator<Date> calc = DateKitCalculatorsFactory.getDefaultInstance() + <pre class="brush: java; gutter: false"> +DateCalculator<Date> calc1 = DateKitCalculatorsFactory.getDefaultInstance() .getDateCalculator("UK", HolidayHandlerType.FORWARD); - </pre> - <pre class="brush: java"> -PeriodCountCalculator<Date> calc = DateKitCalculatorsFactory.getDefaultInstance() + +PeriodCountCalculator<Date> calc2 = DateKitCalculatorsFactory.getDefaultInstance() .getPeriodCountCalculator(); - </pre> - <pre class="brush: java"> -IMMDateCalculator<Date> calc = DateKitCalculatorsFactory.getDefaultInstance() + +IMMDateCalculator<Date> calc3 = DateKitCalculatorsFactory.getDefaultInstance() .getIMMDateCalculator(); </pre> </li> @@ -136,31 +134,27 @@ <h4>JODA</h4> <p>2 implementations for Joda have been released</p> <ol> - <li><strong><code>LocalDate</code></strong> (preferred): - <pre class="brush: java"> -DateCalculator<LocalDate> calc = LocalDateKitCalculatorsFactory.getDefaultInstance() + <li><strong><code>LocalDate</code></strong> (recommended): + <pre class="brush: java; gutter: false"> +DateCalculator<LocalDate> calc1 = LocalDateKitCalculatorsFactory.getDefaultInstance() .getDateCalculator("UK", HolidayHandlerType.FORWARD); - </pre> - <pre class="brush: java"> -PeriodCountCalculator<LocalDate> calc = LocalDateKitCalculatorsFactory.getDefaultInstance() + +PeriodCountCalculator<LocalDate> calc2 = LocalDateKitCalculatorsFactory.getDefaultInstance() .getPeriodCountCalculator(); - </pre> - <pre class="brush: java"> -IMMDateCalculator<LocalDate> calc = LocalDateKitCalculatorsFactory.getDefaultInstance() + +IMMDateCalculator<LocalDate> calc3 = LocalDateKitCalculatorsFactory.getDefaultInstance() .getIMMDateCalculator(); </pre> </li> <li><strong><code>YearMonthDay</code></strong>: - <pre class="brush: java"> -DateCalculator<YearMonthDay> calc = YearMonthDayKitCalculatorsFactory.getDefaultInstance() + <pre class="brush: java; gutter: false"> +DateCalculator<YearMonthDay> calc1 = YearMonthDayKitCalculatorsFactory.getDefaultInstance() .getDateCalculator("UK", HolidayHandlerType.FORWARD); - </pre> - <pre class="brush: java"> -PeriodCountCalculator<YearMonthDay> calc = YearMonthDayKitCalculatorsFactory.getDefaultInstance() + +PeriodCountCalculator<YearMonthDay> calc2 = YearMonthDayKitCalculatorsFactory.getDefaultInstance() .getPeriodCountCalculator(); - </pre> - <pre class="brush: java"> -IMMDateCalculator<YearMonthDay> calc = YearMonthDayKitCalculatorsFactory.getDefaultInstance() + +IMMDateCalculator<YearMonthDay> calc3 = YearMonthDayKitCalculatorsFactory.getDefaultInstance() .getIMMDateCalculator(); </pre> </li> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2010-04-14 11:15:03
|
Revision: 347 http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=347&view=rev Author: marchy Date: 2010-04-14 11:14:56 +0000 (Wed, 14 Apr 2010) Log Message: ----------- updated syntax highlighter, and fixed toolbox icons - view/print source works. Modified Paths: -------------- trunk/src/site/resources/js/shCore.js Added Paths: ----------- trunk/src/site/resources/css/help.png trunk/src/site/resources/css/magnifier.png trunk/src/site/resources/css/page_white_code.png trunk/src/site/resources/css/page_white_copy.png trunk/src/site/resources/css/printer.png trunk/src/site/resources/css/shThemeDefault.css trunk/src/site/resources/css/shThemeEclipse.css trunk/src/site/resources/js/shBrushXml.js Added: trunk/src/site/resources/css/help.png =================================================================== --- trunk/src/site/resources/css/help.png (rev 0) +++ trunk/src/site/resources/css/help.png 2010-04-14 11:14:56 UTC (rev 347) @@ -0,0 +1,12 @@ +\x89PNG + + |