|
From: <ma...@us...> - 2010-03-23 21:03:44
|
Revision: 310
http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=310&view=rev
Author: marchy
Date: 2010-03-23 21:03:32 +0000 (Tue, 23 Mar 2010)
Log Message:
-----------
Removed OSGI comments in pom's.
Modified Paths:
--------------
trunk/datecalc-common/pom.xml
trunk/datecalc-joda/pom.xml
Modified: trunk/datecalc-common/pom.xml
===================================================================
--- trunk/datecalc-common/pom.xml 2010-03-23 21:01:49 UTC (rev 309)
+++ trunk/datecalc-common/pom.xml 2010-03-23 21:03:32 UTC (rev 310)
@@ -9,7 +9,7 @@
</parent>
<artifactId>datecalc-common</artifactId>
- <packaging>bundle</packaging> <!-- (1) OSGi -->
+ <packaging>bundle</packaging>
<name>DateCalc Commons</name>
<description>Common Date Calculator Code</description>
Modified: trunk/datecalc-joda/pom.xml
===================================================================
--- trunk/datecalc-joda/pom.xml 2010-03-23 21:01:49 UTC (rev 309)
+++ trunk/datecalc-joda/pom.xml 2010-03-23 21:03:32 UTC (rev 310)
@@ -59,7 +59,7 @@
</executions>
</plugin>
- <plugin> <!-- (2) OSGi START -->
+ <plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
@@ -70,12 +70,9 @@
<Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
<Bundle-Version>${pom.version}</Bundle-Version>
<Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
-
- <!--<Private-Package>com.my.company.*</Private-Package>-->
- <!--<Bundle-Activator>com.my.company.Activator</Bundle-Activator>-->
</instructions>
</configuration>
- </plugin> <!-- (2) END -->
+ </plugin>
</plugins>
</build>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ma...@us...> - 2010-03-23 21:08:20
|
Revision: 311
http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=311&view=rev
Author: marchy
Date: 2010-03-23 21:08:11 +0000 (Tue, 23 Mar 2010)
Log Message:
-----------
Removing unused imports.
Modified Paths:
--------------
trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractPerformanceDateCalculatorTest.java
trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/CalendarDateCalculator.java
trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/DateDateCalculator.java
trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/LocalDateCalculator.java
Modified: trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractPerformanceDateCalculatorTest.java
===================================================================
--- trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractPerformanceDateCalculatorTest.java 2010-03-23 21:03:32 UTC (rev 310)
+++ trunk/datecalc-common/src/test/java/net/objectlab/kit/datecalc/common/AbstractPerformanceDateCalculatorTest.java 2010-03-23 21:08:11 UTC (rev 311)
@@ -35,8 +35,6 @@
import java.util.Map;
import java.util.TreeMap;
-import junit.framework.Assert;
-
public abstract class AbstractPerformanceDateCalculatorTest<E> extends AbstractDateTestCase<E> {
private static final int REPEAT = 100000;
private static final Map<String, String> RESULTS = new TreeMap<String, String>();
Modified: trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/CalendarDateCalculator.java
===================================================================
--- trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/CalendarDateCalculator.java 2010-03-23 21:03:32 UTC (rev 310)
+++ trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/CalendarDateCalculator.java 2010-03-23 21:08:11 UTC (rev 311)
@@ -34,7 +34,6 @@
import java.util.Calendar;
import java.util.Collections;
-import java.util.Set;
import net.objectlab.kit.datecalc.common.AbstractDateCalculator;
import net.objectlab.kit.datecalc.common.DateCalculator;
Modified: trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/DateDateCalculator.java
===================================================================
--- trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/DateDateCalculator.java 2010-03-23 21:03:32 UTC (rev 310)
+++ trunk/datecalc-jdk/src/main/java/net/objectlab/kit/datecalc/jdk/DateDateCalculator.java 2010-03-23 21:08:11 UTC (rev 311)
@@ -35,7 +35,6 @@
import java.util.Calendar;
import java.util.Collections;
import java.util.Date;
-import java.util.Set;
import net.objectlab.kit.datecalc.common.AbstractDateCalculator;
import net.objectlab.kit.datecalc.common.DateCalculator;
Modified: trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/LocalDateCalculator.java
===================================================================
--- trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/LocalDateCalculator.java 2010-03-23 21:03:32 UTC (rev 310)
+++ trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/LocalDateCalculator.java 2010-03-23 21:08:11 UTC (rev 311)
@@ -33,7 +33,6 @@
package net.objectlab.kit.datecalc.joda;
import java.util.Collections;
-import java.util.Set;
import net.objectlab.kit.datecalc.common.AbstractDateCalculator;
import net.objectlab.kit.datecalc.common.DateCalculator;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <be...@us...> - 2010-03-26 21:09:18
|
Revision: 314
http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=314&view=rev
Author: benoitx
Date: 2010-03-26 21:09:11 +0000 (Fri, 26 Mar 2010)
Log Message:
-----------
First cut for the utils module.
Added Paths:
-----------
trunk/utils/
trunk/utils/pom.xml
trunk/utils/src/
trunk/utils/src/main/
trunk/utils/src/main/java/
trunk/utils/src/main/java/net/
trunk/utils/src/main/java/net/objectlab/
trunk/utils/src/main/java/net/objectlab/kit/
trunk/utils/src/main/java/net/objectlab/kit/console/
trunk/utils/src/main/java/net/objectlab/kit/console/ConsoleMenu.java
trunk/utils/src/main/java/net/objectlab/kit/console/Repeater.java
trunk/utils/src/main/java/net/objectlab/kit/util/
trunk/utils/src/main/java/net/objectlab/kit/util/Average.java
trunk/utils/src/main/java/net/objectlab/kit/util/BigDecimalUtil.java
trunk/utils/src/main/java/net/objectlab/kit/util/BooleanUtil.java
trunk/utils/src/main/java/net/objectlab/kit/util/CaseTreatment.java
trunk/utils/src/main/java/net/objectlab/kit/util/CollectionUtil.java
trunk/utils/src/main/java/net/objectlab/kit/util/IntegerUtil.java
trunk/utils/src/main/java/net/objectlab/kit/util/ObjectHolder.java
trunk/utils/src/main/java/net/objectlab/kit/util/ObjectUtil.java
trunk/utils/src/main/java/net/objectlab/kit/util/Pair.java
trunk/utils/src/main/java/net/objectlab/kit/util/Quadruplet.java
trunk/utils/src/main/java/net/objectlab/kit/util/StringUtil.java
trunk/utils/src/main/java/net/objectlab/kit/util/Sum.java
trunk/utils/src/main/java/net/objectlab/kit/util/Triplet.java
trunk/utils/src/main/java/net/objectlab/kit/util/WeightedAverage.java
trunk/utils/src/test/
trunk/utils/src/test/java/
trunk/utils/src/test/java/net/
trunk/utils/src/test/java/net/objectlab/
trunk/utils/src/test/java/net/objectlab/kit/
trunk/utils/src/test/java/net/objectlab/kit/util/
Added: trunk/utils/pom.xml
===================================================================
--- trunk/utils/pom.xml (rev 0)
+++ trunk/utils/pom.xml 2010-03-26 21:09:11 UTC (rev 314)
@@ -0,0 +1,39 @@
+<?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.util</groupId>
+ <artifactId>utils</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <packaging>jar</packaging>
+
+ <name>ObjectLab Kit - General Utilities</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>2.4</version>
+ </dependency>
+ <dependency>
+ <groupId>joda-time</groupId>
+ <artifactId>joda-time</artifactId>
+ <version>1.6</version>
+ </dependency>
+ </dependencies>
+
+ <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>
+ </plugins>
+ </build>
+
+</project>
Added: trunk/utils/src/main/java/net/objectlab/kit/console/ConsoleMenu.java
===================================================================
--- trunk/utils/src/main/java/net/objectlab/kit/console/ConsoleMenu.java (rev 0)
+++ trunk/utils/src/main/java/net/objectlab/kit/console/ConsoleMenu.java 2010-03-26 21:09:11 UTC (rev 314)
@@ -0,0 +1,433 @@
+package net.objectlab.kit.console;
+
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.InputStreamReader;
+import java.io.PrintStream;
+import java.lang.reflect.Method;
+import java.math.BigDecimal;
+import java.text.ParseException;
+import java.text.SimpleDateFormat;
+import java.util.ArrayList;
+import java.util.Date;
+import java.util.List;
+
+import org.apache.commons.lang.StringUtils;
+import org.joda.time.LocalDate;
+
+/**
+ * @author Benoit Xhenseval
+ *
+ */
+public class ConsoleMenu {
+ private static final int EXIT_CODE = 0;
+
+ private static final int SCREEN_COLUMNS = 110;
+
+ private static final int COL = 10;
+
+ private static final PrintStream OUT = System.out;
+
+ // ~ Instance fields
+ // ------------------------------------------------------------------------------------------------
+
+ private final List<String> menu = new ArrayList<String>();
+
+ private final List<String> methods = new ArrayList<String>();
+
+ private final List<Boolean> askForRepeat = new ArrayList<Boolean>();
+
+ private final Repeater target;
+
+ private int screenColumns = SCREEN_COLUMNS;
+
+ // ~ Constructors
+ // ---------------------------------------------------------------------------------------------------
+
+ /**
+ * @param containingObject
+ * the object that will be called back once an option is chosen
+ * in the menu
+ */
+ public ConsoleMenu(final Repeater containingObject) {
+ target = containingObject;
+ }
+
+ // ~ Methods
+ // --------------------------------------------------------------------------------------------------------
+
+ /**
+ * add an entry in the menu, sequentially
+ *
+ * @param menuDisplay
+ * how the entry will be displayed in the menu
+ * @param methodName
+ * name of the public method
+ * @parem askForRepeat call back for repeat
+ */
+ public void addMenuItem(final String menuDisplay, final String methodName, final boolean repeat) {
+ menu.add(menuDisplay);
+ methods.add(methodName);
+ askForRepeat.add(Boolean.valueOf(repeat));
+ }
+
+ public void setScreenColumns(final int width) {
+ screenColumns = width;
+ }
+
+ /**
+ * display the menu, the application goes into a loop which provides the
+ * menu and fires the entries selected. It automatically adds an entry to
+ * exit.
+ */
+ public void displayMenu() {
+ while (true) {
+ ConsoleMenu.println("");
+ ConsoleMenu.println("Menu Options");
+
+ final int size = menu.size();
+
+ displayMenu(size);
+
+ int opt = -1;
+
+ do {
+ opt = ConsoleMenu.getInt("Enter your choice:", -1);
+ } while (((opt <= 0) || (opt > methods.size())) && (opt != EXIT_CODE));
+
+ if (opt == EXIT_CODE) {
+ ConsoleMenu.println("Exiting menu");
+ try {
+ final Method meth = target.getClass().getMethod("tearDown", new Class[0]);
+ if (meth != null) {
+ meth.invoke(target, new Object[0]);
+ }
+ } catch (final Exception e) {
+ e.printStackTrace();
+ }
+
+ return;
+ }
+
+ // now call the method
+ final String method = methods.get(opt - 1);
+ final Boolean repeat = askForRepeat.get(opt - 1);
+
+ try {
+ final Method meth = target.getClass().getMethod(method, new Class[0]);
+ if (repeat) {
+ target.repeat(meth);
+ } else {
+ meth.invoke(target, new Object[0]);
+ }
+ } catch (final Exception e) {
+ e.printStackTrace();
+ }
+ }
+ }
+
+ private void displayMenu(final int size) {
+ for (int i = 0; i < (size / 2); i++) {
+ final StringBuffer line = new StringBuffer();
+ final String col1 = menu.get(i);
+
+ if ((i + 1) < COL) {
+ line.append(" ");
+ }
+
+ final int pos = i + 1;
+ line.append(" ").append(pos).append(") ").append(col1);
+
+ while (line.length() < (screenColumns / 2)) {
+ line.append(" ");
+ }
+
+ if ((i + (size / 2)) < size) {
+ final String col2 = menu.get(i + (size / 2));
+ final int position = i + 1 + (size / 2);
+ line.append(" ").append(position).append(") ").append(col2);
+ }
+
+ ConsoleMenu.println(line.toString());
+ }
+
+ if (size % 2 != 0) {
+ final StringBuffer line = new StringBuffer();
+ final String col1 = menu.get(size - 1);
+
+ if (size < COL) {
+ line.append(" ");
+ }
+
+ line.append(" ").append(size).append(") ").append(col1);
+
+ while (line.length() < (screenColumns / 2)) {
+ line.append(" ");
+ }
+
+ line.append(" ").append(EXIT_CODE).append(") ").append("Exit");
+ ConsoleMenu.println(line.toString());
+ } else {
+ ConsoleMenu.println(" " + EXIT_CODE + ") Exit");
+ }
+ }
+
+ /**
+ * Gets an int from the System.in
+ *
+ * @param title
+ * for the command line
+ * @return int as entered by the user of the console app
+ */
+ public static int getInt(final String title, final int defaultValue) {
+ int opt = -1;
+
+ do {
+ try {
+ final String val = ConsoleMenu.getString(title + " (default:" + defaultValue + ")");
+ if (val.length() == 0) {
+ opt = defaultValue;
+ } else {
+ opt = Integer.parseInt(val);
+ }
+ } catch (final NumberFormatException e) {
+ opt = -1;
+ }
+ } while (opt == -1);
+
+ return opt;
+ }
+
+ /**
+ * Gets a boolean from the System.in
+ *
+ * @param title
+ * for the command line
+ * @return boolean as selected by the user of the console app
+ */
+ public static boolean getBoolean(final String title, final boolean defaultValue) {
+ final String val = ConsoleMenu.selectOne(title, new String[] { "Yes", "No" }, new String[] { Boolean.TRUE.toString(),
+ Boolean.FALSE.toString() }, defaultValue ? 1 : 2);
+
+ return Boolean.valueOf(val);
+ }
+
+ /**
+ * Gets an BigDecimal from the System.in
+ *
+ * @param title
+ * for the command line
+ * @return int as entered by the user of the console app
+ */
+ public static BigDecimal getBigDecimal(final String title, final BigDecimal defaultValue) {
+ BigDecimal opt = null;
+
+ do {
+ try {
+ final String val = ConsoleMenu.getString(title + " (default:" + defaultValue + ")");
+ if (val.length() == 0) {
+ opt = defaultValue;
+ } else {
+ opt = new BigDecimal(val);
+ }
+ } catch (final NumberFormatException e) {
+ opt = null;
+ }
+ } while (opt == null && defaultValue != null);
+
+ return opt;
+ }
+
+ public static Date getDate(final String title, final Date defaultValue) {
+ final SimpleDateFormat fmt = new SimpleDateFormat("dd-MM-yyyy");
+ final String date = ConsoleMenu.getString(title + "(dd-MM-yyyy" + (defaultValue != null ? ", default:" + fmt.format(defaultValue) : "") + ")");
+ try {
+ if (date == null || date.length() == 0) {
+ return defaultValue;
+ }
+ return fmt.parse(date);
+ } catch (final ParseException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
+ return null;
+ }
+
+ public static LocalDate getYMD(final String title, final LocalDate defaultValue) {
+ final Date dateStr = ConsoleMenu.getDate(title, (defaultValue != null ? defaultValue.toDateMidnight().toDate() : null));
+ if (dateStr != null) {
+ return new LocalDate(dateStr);
+ }
+ return null;
+ }
+
+ /**
+ * Gets a String from the System.in
+ *
+ * @param msg
+ * for the command line
+ * @return String as entered by the user of the console app
+ */
+ public static String getString(final String msg) {
+ ConsoleMenu.print(msg);
+
+ BufferedReader bufReader = null;
+ String opt = null;
+
+ try {
+ bufReader = new BufferedReader(new InputStreamReader(System.in));
+ opt = bufReader.readLine();
+ } catch (final IOException ex) {
+ ex.printStackTrace();
+ System.exit(1);
+ }
+
+ return opt;
+ }
+
+ /**
+ * Gets a String from the System.in
+ *
+ * @param msg
+ * for the command line
+ * @return String as entered by the user of the console app
+ */
+ public static String getString(final String msg, final String defaultVal) {
+ String s = getString(msg + "(default:" + defaultVal + "):");
+ if (StringUtils.isBlank(s)) {
+ s = defaultVal;
+ }
+
+ return s;
+ }
+
+ /**
+ * Generates a menu with a list of options and return the value selected.
+ *
+ * @param title
+ * for the command line
+ * @param optionNames
+ * name for each option
+ * @param optionValues
+ * value for each option
+ * @return String as selected by the user of the console app
+ */
+ public static String selectOne(final String title, final String[] optionNames, final String[] optionValues, final int defaultOption) {
+ if (optionNames.length != optionValues.length) {
+ throw new IllegalArgumentException("option names and values must have same length");
+ }
+
+ ConsoleMenu.println("Please chose " + title + " (default:" + defaultOption + ")");
+
+ for (int i = 0; i < optionNames.length; i++) {
+ ConsoleMenu.println(i + 1 + ") " + optionNames[i]);
+ }
+
+ int choice = 0;
+
+ do {
+ choice = ConsoleMenu.getInt("Your Choice 1-" + optionNames.length + ": ", defaultOption);
+ } while ((choice <= 0) || (choice > optionNames.length));
+
+ return optionValues[choice - 1];
+ }
+
+ /**
+ * @param prompt
+ * The prompt to display to the user.
+ * @return The password as entered by the user.
+ */
+ public static String getPassword(final String prompt) {
+ try {
+ // password holder
+ final StringBuffer password = new StringBuffer();
+ final PasswordHidingThread maskingthread = new PasswordHidingThread(prompt);
+ final Thread thread = new Thread(maskingthread);
+ thread.start();
+
+ // block until enter is pressed
+ while (true) {
+ char c = (char) System.in.read();
+
+ // assume enter pressed, stop masking
+ maskingthread.stopMasking();
+
+ if (c == '\r') {
+ c = (char) System.in.read();
+
+ if (c == '\n') {
+ break;
+ }
+ continue;
+ } else if (c == '\n') {
+ break;
+ } else {
+ // store the password
+ password.append(c);
+ }
+ }
+
+ return password.toString();
+ } catch (final IOException e) {
+ e.printStackTrace();
+ }
+
+ return null;
+ }
+
+ // ~ Inner Classes
+ // --------------------------------------------------------------------------------------------------
+
+ /**
+ * This class attempts to erase characters echoed to the console.
+ */
+ static class PasswordHidingThread extends Thread {
+ private boolean stop = false;
+
+ private final String prompt;
+
+ /**
+ * @param prompt
+ * The prompt displayed to the user
+ */
+ public PasswordHidingThread(final String prompt) {
+ this.prompt = prompt;
+ }
+
+ /**
+ * Begin masking until asked to stop.
+ */
+ @Override
+ public void run() {
+ while (!stop) {
+ try {
+ // attempt masking at this rate
+ Thread.sleep(1);
+ } catch (final InterruptedException iex) {
+ iex.printStackTrace();
+ }
+
+ if (!stop) {
+ ConsoleMenu.print("\r" + prompt + " \r" + prompt);
+ }
+
+ System.out.flush();
+ }
+ }
+
+ /**
+ * Instruct the thread to stop masking.
+ */
+ public void stopMasking() {
+ this.stop = true;
+ }
+ }
+
+ private static void println(final String txt) {
+ OUT.println(txt);
+ }
+
+ private static void print(final String txt) {
+ OUT.print(txt);
+ }
+}
Added: trunk/utils/src/main/java/net/objectlab/kit/console/Repeater.java
===================================================================
--- trunk/utils/src/main/java/net/objectlab/kit/console/Repeater.java (rev 0)
+++ trunk/utils/src/main/java/net/objectlab/kit/console/Repeater.java 2010-03-26 21:09:11 UTC (rev 314)
@@ -0,0 +1,7 @@
+package net.objectlab.kit.console;
+
+import java.lang.reflect.Method;
+
+public interface Repeater {
+ void repeat(Method target);
+}
Added: trunk/utils/src/main/java/net/objectlab/kit/util/Average.java
===================================================================
--- trunk/utils/src/main/java/net/objectlab/kit/util/Average.java (rev 0)
+++ trunk/utils/src/main/java/net/objectlab/kit/util/Average.java 2010-03-26 21:09:11 UTC (rev 314)
@@ -0,0 +1,46 @@
+package net.objectlab.kit.util;
+
+import java.math.BigDecimal;
+
+/**
+ * @author Benoit
+ *
+ */
+public final class Average {
+ private Sum sum = new Sum();
+ private int count = 0;
+
+ public Average() {
+ }
+
+ public Average(final BigDecimal start) {
+ sum = new Sum(start);
+ }
+
+ public Average(final int scale) {
+ BigDecimal bd = new BigDecimal(0);
+ sum = new Sum(bd.setScale(scale));
+ }
+
+ public void add(BigDecimal val) {
+ sum.add(val);
+ count++;
+ }
+
+ public BigDecimal getTotal() {
+ return sum.getTotal();
+ }
+
+ public int getDataPoints() {
+ return count;
+ }
+
+ public BigDecimal getAverage() {
+ return BigDecimalUtil.divide(getTotal(), new BigDecimal(count), BigDecimal.ROUND_HALF_UP);
+ }
+
+ @Override
+ public String toString() {
+ return StringUtil.concatWithSpaces("Total:", getTotal(), "Points", getDataPoints(), "Avg:", getAverage());
+ }
+}
Added: trunk/utils/src/main/java/net/objectlab/kit/util/BigDecimalUtil.java
===================================================================
--- trunk/utils/src/main/java/net/objectlab/kit/util/BigDecimalUtil.java (rev 0)
+++ trunk/utils/src/main/java/net/objectlab/kit/util/BigDecimalUtil.java 2010-03-26 21:09:11 UTC (rev 314)
@@ -0,0 +1,649 @@
+package net.objectlab.kit.util;
+
+import java.math.BigDecimal;
+import java.text.NumberFormat;
+
+/**
+ * @author Benoit Xhenseval
+ *
+ */
+public final class BigDecimalUtil {
+ private static final double ROUNDING_UP_FLOAT = 0.5d;
+ private static final int MAX_SCALE_FOR_INVERSE = 20;
+ private static final NumberFormat NUMBER_FORMAT = NumberFormat.getInstance();
+
+ private BigDecimalUtil() {
+ }
+
+ /**
+ * Return the inverse of value, using scale
+ */
+ public static BigDecimal inverse(final BigDecimal value, final int scale) {
+ if (isNotZero(value)) {
+ return BigDecimal.ONE.divide(value, scale, BigDecimal.ROUND_HALF_UP);
+ }
+ return null;
+ }
+
+ /**
+ * Return the inverse of value
+ */
+ public static BigDecimal inverse(final BigDecimal value) {
+ if (isNotZero(value)) {
+ return BigDecimal.ONE.setScale(MAX_SCALE_FOR_INVERSE).divide(value, BigDecimal.ROUND_HALF_UP);
+ }
+ return null;
+ }
+
+ /**
+ * @return true if value !=null and <> 0.
+ */
+ public static boolean isNotZero(final BigDecimal value) {
+ return value != null && value.signum() != 0;
+ }
+
+ /**
+ * @return true if value !=null and 0.
+ */
+ public static boolean isZero(final BigDecimal value) {
+ return value != null && value.signum() == 0;
+ }
+
+ /**
+ * @return true if value !=null and <0.
+ */
+ public static boolean isNegative(final BigDecimal value) {
+ return value != null && value.signum() == -1;
+ }
+
+ /**
+ * @return true if value !=null and >0.
+ */
+ public static boolean isStrictlyPositive(final BigDecimal value) {
+ return value != null && value.signum() == 1;
+ }
+
+ /**
+ * @return true if value ==null OR 0.
+ */
+ public static boolean isNullOrZero(final BigDecimal value) {
+ return value == null || value.signum() == 0;
+ }
+
+ /**
+ * @return true if val1 == val2 (ignoring scale and null are treated as 0)
+ */
+ public static boolean isSameValue(final BigDecimal val1, final BigDecimal val2) {
+ return val1 == null && val2 == null || val1 != null && val2 != null && val1.compareTo(val2) == 0;
+ }
+
+ /**
+ * @return true if val1 == val2 (ignoring scale and null are treated as 0)
+ */
+ public static boolean isSameValueTreatNullAsZero(final BigDecimal val1, final BigDecimal val2) {
+ return val1 == null && val2 == null || signum(val1) == 0 && signum(val2) == 0 || val1 != null && val2 != null && val1.compareTo(val2) == 0;
+ }
+
+ /**
+ * Add 2 BigDecimal safely (i.e. handles nulls)
+ */
+ public static BigDecimal add(final BigDecimal v1, final BigDecimal v2) {
+ BigDecimal total = v1;
+ if (v1 != null && v2 != null) {
+ total = v1.add(v2);
+ } else if (v2 != null) {
+ total = v2;
+ }
+ return total;
+ }
+
+ /**
+ * Add n BigDecimal safely (i.e. handles nulls)
+ */
+ public static BigDecimal add(final BigDecimal start, final BigDecimal... values) {
+ BigDecimal total = start;
+ for (final BigDecimal v : values) {
+ total = add(total, v);
+ }
+ return total;
+ }
+
+ /**
+ * Subtract n BigDecimal safely (i.e. handles nulls)
+ */
+ public static BigDecimal subtract(final BigDecimal start, final BigDecimal... values) {
+ BigDecimal total = start;
+ for (final BigDecimal v : values) {
+ total = subtract(total, v);
+ }
+ return total;
+ }
+
+ /**
+ * Subtract 2 BigDecimal safely (i.e. handles nulls) v1 - v2
+ */
+ public static BigDecimal subtract(final BigDecimal v1, final BigDecimal v2) {
+ BigDecimal diff = v1;
+ if (v1 != null && v2 != null) {
+ diff = v1.subtract(v2);
+ } else if (v2 != null) {
+ diff = v2.negate();
+ }
+ return diff;
+ }
+
+ /**
+ * @return numerator / denominator if they are not null and the denominator is not zero, it returns null otherwise.
+ */
+ public static BigDecimal divide(final BigDecimal numerator, final BigDecimal denominator, final int rounding) {
+ BigDecimal diff = null;
+ if (numerator != null && isNotZero(denominator)) {
+ diff = numerator.divide(denominator, rounding);
+ }
+ return diff;
+ }
+
+ public static BigDecimal calculateWeight(final BigDecimal value, final BigDecimal total) {
+ return BigDecimalUtil.setScale(BigDecimalUtil.divide(BigDecimalUtil.setScale(value, 9), BigDecimalUtil.setScale(total, 9),
+ BigDecimal.ROUND_HALF_UP), 9);
+ }
+
+ /**
+ * @return numerator / denominator if they are not null and the denominator is not zero, it returns null otherwise.
+ */
+ public static BigDecimal divide(final int numeratorScale, final BigDecimal numerator, final BigDecimal denominator, final int rounding) {
+ BigDecimal diff = null;
+ if (numerator != null && isNotZero(denominator)) {
+ diff = numerator.setScale(numeratorScale).divide(denominator, rounding);
+ }
+ return diff;
+ }
+
+ /**
+ * @return numerator / denominator if they are not null and the denominator is not zero, it returns null otherwise.
+ */
+ public static BigDecimal divide(final BigDecimal numerator, final BigDecimal denominator, final int scale, final int rounding) {
+ BigDecimal diff = null;
+ if (numerator != null && isNotZero(denominator)) {
+ diff = numerator.divide(denominator, rounding);
+ }
+ return BigDecimalUtil.setScale(diff, scale, rounding);
+ }
+
+ public static BigDecimal multiply(final BigDecimal value, final BigDecimal multiplicand) {
+ BigDecimal diff = null;
+ if (value != null && multiplicand != null) {
+ diff = value.multiply(multiplicand);
+ }
+ return diff;
+ }
+
+ public static BigDecimal multiply(final BigDecimal value, final BigDecimal... multiplicand) {
+ BigDecimal diff = null;
+ if (value != null && multiplicand != null) {
+ diff = value;
+ for (final BigDecimal bd : multiplicand) {
+ if (bd != null) {
+ diff = diff.multiply(bd);
+ }
+ }
+ }
+ return diff;
+ }
+
+ /**
+ * Returns the ABS of the value, handles null.
+ */
+ public static BigDecimal abs(final BigDecimal value) {
+ return value != null ? value.abs() : null;
+ }
+
+ /**
+ * Returns the negate of the value, handles null.
+ */
+ public static BigDecimal negate(final BigDecimal value) {
+ return value != null ? value.negate() : null;
+ }
+
+ /**
+ * Returns the negate of the value if condition is true, handles null.
+ */
+ public static BigDecimal negateIfTrue(final boolean condition, final BigDecimal value) {
+ return condition ? negate(value) : value;
+ }
+
+ /**
+ * @return false if the ABS value match!
+ */
+ public static boolean isNotSameAbsValue(final BigDecimal v1, final BigDecimal v2) {
+ return !isSameAbsValue(v1, v2);
+ }
+
+ /**
+ * @return false if the value match!
+ */
+ public static boolean isNotSameValue(final BigDecimal v1, final BigDecimal v2) {
+ return !isSameValue(v1, v2);
+ }
+
+ /**
+ * @return true if the ABS value match!
+ */
+ public static boolean isSameAbsValue(final BigDecimal v1, final BigDecimal v2) {
+ return isSameValue(abs(v1), abs(v2));
+ }
+
+ /**
+ * @return 1 if v1 > v2 or v2==null and v2!=null
+ * @return 0 if v1 == v2 or v1==null and v2==null
+ * @return -1 if v1 < v2 or v1==null and v2!=null
+ */
+ public static int compareTo(final BigDecimal v1, final BigDecimal v2) {
+ int ret = 1;
+ if (v1 != null && v2 != null) {
+ ret = v1.compareTo(v2);
+ } else if (v1 == null && v2 == null) {
+ ret = 0;
+ } else if (v1 == null) {
+ ret = -1;
+ }
+ return ret;
+ }
+
+ /**
+ * @return true if the ABS(v1) > ABS(v2)
+ */
+ public static int absCompareTo(final BigDecimal v1, final BigDecimal v2) {
+ return compareTo(abs(v1), abs(v2));
+ }
+
+ /**
+ * @return true if the ABS( ABS(v1) - ABS(v2) )
+ */
+ public static BigDecimal absDiff(final BigDecimal v1, final BigDecimal v2) {
+ return abs(subtract(abs(v1), abs(v2)));
+ }
+
+ /**
+ * Safe shift (check for null), shift RIGHT if shift>0.
+ */
+ public static BigDecimal movePoint(final BigDecimal v1, final int shift) {
+ return v1 == null ? null : v1.movePointRight(shift);
+ }
+
+ /**
+ * returns a new BigDecimal with correct scale after being round to n dec places.
+ *
+ * @param bd value
+ * @param numberOfDecPlaces number of dec place to round to
+ * @param finalScale final scale of result (typically numberOfDecPlaces < finalScale);
+ * @return new bd or null
+ */
+ public static BigDecimal roundTo(final BigDecimal bd, final int numberOfDecPlaces, final int finalScale) {
+ return setScale(setScale(bd, numberOfDecPlaces, BigDecimal.ROUND_HALF_UP), finalScale);
+ }
+
+ /**
+ * returns a new BigDecimal with correct scale.
+ *
+ * @param bd
+ * @return new bd or null
+ */
+ public static BigDecimal setScale(final BigDecimal bd, final int scale) {
+ return setScale(bd, scale, BigDecimal.ROUND_HALF_UP);
+ }
+
+ /**
+ * returns a new BigDecimal with correct Scale.
+ *
+ * @param bd
+ * @return new bd or null
+ */
+ public static BigDecimal setScale(final BigDecimal bd, final Integer scale) {
+ return setScale(bd, scale, BigDecimal.ROUND_HALF_UP);
+ }
+
+ /**
+ * returns a new BigDecimal with correct Scales.PERCENT_SCALE. This is used
+ * by the table renderer.
+ *
+ * @param bd
+ * @return new bd or null
+ */
+ public static BigDecimal setScale(final BigDecimal bd, final Integer scale, final int rounding) {
+ if (bd != null && scale != null) {
+ return bd.setScale(scale, rounding);
+ }
+ return null;
+ }
+
+ /**
+ * If value is null return 0 otherwise the signum().
+ * @param value
+ * @return
+ */
+ public static int signum(final BigDecimal value) {
+ return value == null ? 0 : value.signum();
+ }
+
+ /**
+ * @return true if both v1/v2 are null or same sign.
+ */
+ public static boolean isSameSignum(final BigDecimal v1, final BigDecimal v2) {
+ re...
[truncated message content] |
|
From: <ma...@us...> - 2010-03-28 20:08:18
|
Revision: 322
http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=322&view=rev
Author: marchy
Date: 2010-03-28 20:08:11 +0000 (Sun, 28 Mar 2010)
Log Message:
-----------
Removed Maven 1 files.
Added Paths:
-----------
trunk/src/source-checks/
trunk/src/source-checks/checkstyle-checks.xml
trunk/src/source-checks/findbugs-filter.xml
trunk/src/source-checks/objectlab-checks.xml
Removed Paths:
-------------
trunk/common-build/checkstyle_checks.xml
trunk/common-build/findbugs-exclude-filter.xml
trunk/common-build/objectlab_checks.xml
trunk/common-build/project.properties
trunk/common-build/project.xml
trunk/datecalc-common/maven.xml
trunk/datecalc-common/project.properties
trunk/datecalc-common/project.xml
trunk/datecalc-jdk/maven.xml
trunk/datecalc-jdk/project.properties
trunk/datecalc-jdk/project.xml
trunk/datecalc-joda/maven.xml
trunk/datecalc-joda/project.properties
trunk/datecalc-joda/project.xml
trunk/maven.xml
trunk/project.properties
trunk/project.xml
Deleted: trunk/common-build/checkstyle_checks.xml
===================================================================
--- trunk/common-build/checkstyle_checks.xml 2010-03-28 12:20:22 UTC (rev 321)
+++ trunk/common-build/checkstyle_checks.xml 2010-03-28 20:08:11 UTC (rev 322)
@@ -1,227 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.1//EN"
- "http://www.puppycrawl.com/dtds/configuration_1_1.dtd">
-<!--
-
- ObjectLab Checkstyle.
- $Id$
-
--->
-<module name="Checker">
- <!-- Checks that a package.html file exists for each package. -->
- <!-- See http://checkstyle.sf.net/config_javadoc.html#PackageHtml -->
- <module name="PackageHtml" />
- <!-- Checks whether files end with a new line. -->
- <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
- <module name="NewlineAtEndOfFile" />
- <!-- Checks that property files contain the same keys. -->
- <!-- See http://checkstyle.sf.net/config_misc.html#Translation -->
- <module name="Translation" />
- <module name="TreeWalker">
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for Javadoc comments. -->
- <!-- See http://checkstyle.sf.net/config_javadoc.html - ->
- <module name="JavadocMethod">
- <property name="scope" value="public"/>
- </module>
- <module name="JavadocType"/>
- <module name="JavadocVariable"/>
- -->
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for Naming Conventions. -->
- <!-- See http://checkstyle.sf.net/config_naming.html -->
- <module name="ConstantName" />
- <module name="LocalFinalVariableName" />
- <module name="LocalVariableName" />
- <module name="MemberName" />
- <module name="MethodName" />
- <module name="PackageName" />
- <module name="ParameterName" />
- <module name="StaticVariableName" />
- <module name="TypeName" />
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for Headers -->
- <!-- See http://checkstyle.sf.net/config_header.html -->
- <!-- <module name="Header"> -->
- <!-- The follow property value demonstrates the ability -->
- <!-- to have access to ANT properties. In this case it uses -->
- <!-- the ${basedir} property to allow Checkstyle to be run -->
- <!-- from any directory within a project. -->
- <!-- <property name="headerFile" value="${basedir}/java.header"/>
- </module>
- -->
- <!-- Following interprets the header file as regular expressions. -->
- <!-- <module name="RegexpHeader"/> -->
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for imports -->
- <!-- See http://checkstyle.sf.net/config_import.html -->
- <module name="AvoidStarImport" />
- <module name="IllegalImport" />
- <!-- defaults to sun.* packages -->
- <module name="RedundantImport" />
- <module name="UnusedImports" />
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for Size Violations. -->
- <!-- See http://checkstyle.sf.net/config_sizes.html -->
- <module name="FileLength" />
- <module name="LineLength">
- <property name="max" value="150" />
- </module>
- <module name="MethodLength">
- <property name="max" value="200" />
- </module>
- <module name="ParameterNumber">
- <property name="max" value="8" />
- </module>
- <module name="AnonInnerLength">
- <property name="max" value="25" />
- </module>
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for whitespace -->
- <!-- See http://checkstyle.sf.net/config_whitespace.html -->
- <module name="EmptyForIteratorPad" />
- <!-- <module name="NoWhitespaceAfter"/>
- <module name="NoWhitespaceBefore"/>
- <module name="WhitespaceAfter"/>
- <module name="WhitespaceAround"/>
- -->
- <module name="OperatorWrap" />
- <module name="ParenPad" />
- <module name="TypecastParenPad" />
- <module name="TabCharacter" />
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Modifier Checks -->
- <!-- See http://checkstyle.sf.net/config_modifiers.html -->
- <module name="ModifierOrder" />
- <module name="RedundantModifier" />
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for blocks. You know, those {}'s -->
- <!-- See http://checkstyle.sf.net/config_blocks.html -->
- <module name="AvoidNestedBlocks" />
- <module name="EmptyBlock" />
- <module name="LeftCurly" />
- <module name="NeedBraces" />
- <module name="RightCurly" />
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for common coding problems -->
- <!-- See http://checkstyle.sf.net/config_coding.html -->
- <!-- <module name="AvoidInlineConditionals"/> -->
- <module name="DoubleCheckedLocking" />
- <module name="EmptyStatement" />
- <module name="EqualsHashCode" />
- <module name="HiddenField">
- <property name="ignoreSetter" value="true" />
- <property name="ignoreConstructorParameter" value="true" />
- </module>
- <module name="IllegalInstantiation" />
- <module name="InnerAssignment" />
- <module name="MagicNumber" />
- <module name="MissingSwitchDefault" />
- <module name="RedundantThrows" />
- <module name="SimplifyBooleanExpression" />
- <module name="SimplifyBooleanReturn" />
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for class design -->
- <!-- See http://checkstyle.sf.net/config_design.html -->
- <!-- <module name="DesignForExtension"/> -->
- <module name="MutableException" />
- <module name="FinalClass" />
- <module name="HideUtilityClassConstructor" />
- <module name="InterfaceIsType" />
- <module name="VisibilityModifier" />
- <module name="ThrowsCount">
- <property name="max" value="5" />
- </module>
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Miscellaneous other checks. -->
- <!-- See http://checkstyle.sf.net/config_misc.html -->
- <module name="ArrayTypeStyle" />
- <module name="FinalParameters">
- <property name="tokens" value="CTOR_DEF" />
- </module>
- <module name="GenericIllegalRegexp">
- <!-- . matches any character, so we need to escape it and use \. to match dots. -->
- <property name="format" value="System\.out\.println" />
- </module>
- <module name="GenericIllegalRegexp">
- <!-- . matches any character, so we need to escape it and use \. to match dots. -->
- <property name="format" value="System\.err\.println" />
- </module>
- <module name="TodoComment" />
- <module name="UpperEll" />
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- New Tests with 3.2 -->
- <module name="CyclomaticComplexity">
- <property name="max" value="15" />
- <!-- <property name="severity" value="ignore"/> -->
- </module>
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- See http://checkstyle.sf.net/config_usage.html -->
- <!-- <module name="usage.OneMethodPrivateField"/>
- <module name="usage.UnusedLocalVariable" />
- <module name="usage.UnusedParameter">
- <property name="ignoreFormat" value="^ignore" />
- </module>
- <module name="usage.UnusedPrivateField">
- <property name="ignoreFormat" value="serialVersionUID" />
- </module>
- <module name="usage.UnusedPrivateMethod">
- <property name="ignoreFormat"
- value="readObject$|writeObject$|readResolve$" />
- </module>-->
- <module name="StringLiteralEquality" />
- <module name="SuperClone" />
- <module name="SuperFinalize" />
- <module name="NestedIfDepth">
- <property name="max" value="3" />
- </module>
- <module name="NestedTryDepth" />
- <module name="ReturnCount">
- <property name="max" value="3" />
- </module>
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- j2ee stuff -->
- <module name="j2ee.FinalStatic" />
- <module name="j2ee.LocalHomeInterface" />
- <module name="j2ee.LocalInterface" />
- <module name="j2ee.MessageBean" />
- <module name="j2ee.RemoteHomeInterface" />
- <module name="j2ee.RemoteInterface" />
- <module name="j2ee.SessionBean" />
- <module name="j2ee.ThisParameter" />
- <module name="j2ee.ThisReturn" />
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- New 3.4 tests -->
- <module name="BooleanExpressionComplexity">
- <property name="max" value="7" />
- </module>
- <module name="ClassDataAbstractionCoupling">
- <property name="max" value="13" />
- </module>
- <module name="NPathComplexity" />
- <module name="FallThrough" />
- <module name="MultipleVariableDeclarations" />
- <!-- <module name="UnnecessaryParentheses"/> -->
- <!-- New 3.4 tests -->
- </module>
- <!-- <module name="SuppressionFilter">
- <property name="file" value="lib/build/checkstyle-suppressions.xml"/>
- </module>
- -->
-</module>
-
Deleted: trunk/common-build/findbugs-exclude-filter.xml
===================================================================
--- trunk/common-build/findbugs-exclude-filter.xml 2010-03-28 12:20:22 UTC (rev 321)
+++ trunk/common-build/findbugs-exclude-filter.xml 2010-03-28 20:08:11 UTC (rev 322)
@@ -1,12 +0,0 @@
-<!--
- /*
- * ========================================================================
- * ObjectLab Financial Ltd, proud sponsor of The Kit.
- * ========================================================================
- */
--->
-<FindBugsFilter>
- <Match classregex="net.*">
- <BugCode name="EI,EI2" />
- </Match>
-</FindBugsFilter>
Deleted: trunk/common-build/objectlab_checks.xml
===================================================================
--- trunk/common-build/objectlab_checks.xml 2010-03-28 12:20:22 UTC (rev 321)
+++ trunk/common-build/objectlab_checks.xml 2010-03-28 20:08:11 UTC (rev 322)
@@ -1,226 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.1//EN"
- "http://www.puppycrawl.com/dtds/configuration_1_1.dtd">
-<!--
-
- ObjectLab Checkstyle.
--->
-
-<module name="Checker">
- <!-- Checks that a package.html file exists for each package. -->
- <!-- See http://checkstyle.sf.net/config_javadoc.html#PackageHtml -->
- <module name="PackageHtml" />
- <!-- Checks whether files end with a new line. -->
- <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile
- <module name="NewlineAtEndOfFile"/>-->
- <!-- Checks that property files contain the same keys. -->
- <!-- See http://checkstyle.sf.net/config_misc.html#Translation -->
- <module name="Translation" />
- <module name="TreeWalker">
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for Javadoc comments. -->
- <!-- See http://checkstyle.sf.net/config_javadoc.html - ->
- <module name="JavadocMethod">
- <property name="scope" value="public"/>
- </module>
- <module name="JavadocType"/>
- <module name="JavadocVariable"/>
- -->
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for Naming Conventions. -->
- <!-- See http://checkstyle.sf.net/config_naming.html -->
- <module name="ConstantName" />
- <module name="LocalFinalVariableName" />
- <module name="LocalVariableName" />
- <module name="MemberName" />
- <module name="MethodName" />
- <module name="PackageName" />
- <module name="ParameterName" />
- <module name="StaticVariableName" />
- <module name="TypeName" />
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for Headers -->
- <!-- See http://checkstyle.sf.net/config_header.html -->
- <!-- <module name="Header"> -->
- <!-- The follow property value demonstrates the ability -->
- <!-- to have access to ANT properties. In this case it uses -->
- <!-- the ${basedir} property to allow Checkstyle to be run -->
- <!-- from any directory within a project. -->
- <!-- <property name="headerFile" value="${basedir}/java.header"/>
- </module>
- -->
- <!-- Following interprets the header file as regular expressions. -->
- <!-- <module name="RegexpHeader"/> -->
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for imports -->
- <!-- See http://checkstyle.sf.net/config_import.html -->
- <module name="AvoidStarImport" />
- <module name="IllegalImport" />
- <!-- defaults to sun.* packages -->
- <module name="RedundantImport" />
- <module name="UnusedImports" />
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for Size Violations. -->
- <!-- See http://checkstyle.sf.net/config_sizes.html -->
- <module name="FileLength" />
- <module name="LineLength">
- <property name="max" value="150" />
- </module>
- <module name="MethodLength">
- <property name="max" value="200" />
- </module>
- <module name="ParameterNumber">
- <property name="max" value="8" />
- </module>
- <module name="AnonInnerLength">
- <property name="max" value="25" />
- </module>
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for whitespace -->
- <!-- See http://checkstyle.sf.net/config_whitespace.html -->
- <module name="EmptyForIteratorPad" />
- <!-- <module name="NoWhitespaceAfter"/>
- <module name="NoWhitespaceBefore"/>
- <module name="WhitespaceAfter"/>
- <module name="WhitespaceAround"/>
- -->
- <module name="OperatorWrap" />
- <module name="ParenPad" />
- <module name="TypecastParenPad" />
- <module name="TabCharacter" />
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Modifier Checks -->
- <!-- See http://checkstyle.sf.net/config_modifiers.html -->
- <module name="ModifierOrder" />
- <module name="RedundantModifier" />
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for blocks. You know, those {}'s -->
- <!-- See http://checkstyle.sf.net/config_blocks.html -->
- <module name="AvoidNestedBlocks" />
- <module name="EmptyBlock" />
- <module name="LeftCurly" />
- <module name="NeedBraces" />
- <module name="RightCurly" />
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for common coding problems -->
- <!-- See http://checkstyle.sf.net/config_coding.html -->
- <!-- <module name="AvoidInlineConditionals"/> -->
- <module name="DoubleCheckedLocking" />
- <module name="EmptyStatement" />
- <module name="EqualsHashCode" />
- <module name="HiddenField">
- <property name="ignoreSetter" value="true" />
- <property name="ignoreConstructorParameter" value="true" />
- </module>
- <module name="IllegalInstantiation" />
- <module name="InnerAssignment" />
- <module name="MagicNumber" />
- <module name="MissingSwitchDefault" />
- <module name="RedundantThrows" />
- <module name="SimplifyBooleanExpression" />
- <module name="SimplifyBooleanReturn" />
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Checks for class design -->
- <!-- See http://checkstyle.sf.net/config_design.html -->
- <!-- <module name="DesignForExtension"/> -->
- <module name="MutableException" />
- <module name="FinalClass" />
- <module name="HideUtilityClassConstructor" />
- <module name="InterfaceIsType" />
- <module name="VisibilityModifier" />
- <module name="ThrowsCount">
- <property name="max" value="5" />
- </module>
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- Miscellaneous other checks. -->
- <!-- See http://checkstyle.sf.net/config_misc.html -->
- <module name="ArrayTypeStyle" />
- <module name="FinalParameters">
- <property name="tokens" value="CTOR_DEF" />
- </module>
- <module name="GenericIllegalRegexp">
- <!-- . matches any character, so we need to escape it and use \. to match dots. -->
- <property name="format" value="System\.out\.println" />
- </module>
- <module name="GenericIllegalRegexp">
- <!-- . matches any character, so we need to escape it and use \. to match dots. -->
- <property name="format" value="System\.err\.println" />
- </module>
- <module name="TodoComment" />
- <module name="UpperEll" />
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- New Tests with 3.2 -->
- <module name="CyclomaticComplexity">
- <property name="max" value="15" />
- <!-- <property name="severity" value="ignore"/> -->
- </module>
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- See http://checkstyle.sf.net/config_usage.html -->
- <!-- <module name="usage.OneMethodPrivateField"/>
- <module name="usage.UnusedLocalVariable"/>
- <module name="usage.UnusedParameter">
- <property name="ignoreFormat" value="^ignore"/>
- </module>
- <module name="usage.UnusedPrivateField">
- <property name="ignoreFormat" value="serialVersionUID"/>
- </module>
- <module name="usage.UnusedPrivateMethod">
- <property name="ignoreFormat" value="readObject$|writeObject$|readResolve$"/>
- </module>-->
- <module name="StringLiteralEquality" />
- <module name="SuperClone" />
- <module name="SuperFinalize" />
- <module name="NestedIfDepth">
- <property name="max" value="3" />
- </module>
- <module name="NestedTryDepth" />
- <module name="ReturnCount">
- <property name="max" value="3" />
- </module>
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- j2ee stuff -->
- <module name="j2ee.FinalStatic" />
- <module name="j2ee.LocalHomeInterface" />
- <module name="j2ee.LocalInterface" />
- <module name="j2ee.MessageBean" />
- <module name="j2ee.RemoteHomeInterface" />
- <module name="j2ee.RemoteInterface" />
- <module name="j2ee.SessionBean" />
- <module name="j2ee.ThisParameter" />
- <module name="j2ee.ThisReturn" />
- <!-- ============================== -->
- <!-- ============================== -->
- <!-- New 3.4 tests -->
- <module name="BooleanExpressionComplexity">
- <property name="max" value="7" />
- </module>
- <module name="ClassDataAbstractionCoupling">
- <property name="max" value="13" />
- </module>
- <module name="NPathComplexity" />
- <module name="FallThrough" />
- <module name="MultipleVariableDeclarations" />
- <!-- <module name="UnnecessaryParentheses"/> -->
- <!-- New 3.4 tests -->
- </module>
- <!--
- <module name="SuppressionFilter">
- <property name="file" value="lib/build/checkstyle-suppressions.xml"/>
- </module>
- -->
-</module>
-
Deleted: trunk/common-build/project.properties
===================================================================
--- trunk/common-build/project.properties 2010-03-28 12:20:22 UTC (rev 321)
+++ trunk/common-build/project.properties 2010-03-28 20:08:11 UTC (rev 322)
@@ -1,109 +0,0 @@
-#/*
-# * ========================================================================
-# *
-# *
-# * ========================================================================
-# */
-maven.checkstyle.header.file = ${basedir}/../checkstyle-license.txt
-
-# Make sure we fork JUnit so that we can use a different version of Ant than
-# the one provided by Maven.
-maven.junit.fork = true
-
-# Display junit execution details on screen
-maven.junit.usefile = false
-
-# Do not display junit test suite summary information
-maven.junit.printSummary = false
-
-# Print names of test cases as they execute
-maven.junit.format = plain
-
-# Target 1.5 JVMs
-maven.compile.target=5
-# Source code is 1.5
-maven.compile.source=1.5
-#maven.compile.verbose=true
-
-maven.multiproject.ignoreFailures=true
-
-# Deprecation compilation
-maven.compile.deprecation=on
-maven.javadoc.debug=true
-#pom.package=net.objectlab.kit.*
-#maven.javadoc.extrasourcepath=../datecalc-jdk/src/main/java/**.java
-#internal_javadoc_needed=true
-
-# -------------------------------------------------------------------
-# T E S T P R O P E R T I E S
-# -------------------------------------------------------------------
-# Source Code for Test
-maven.test.source = 1.5
-# enabling RUNNING with assertions!
-maven.junit.jvmargs=-ea
-maven.test.failure.ignore=true
-maven.test.error.ignore=true
-maven.test.skip=false
-
-# As we're using SVN we need to have this property set to tell the changelog plugin to use SVN
-# and not CVS (which is its default)
-#maven.changelog.factory = org.apache.maven.svnlib.SvnChangeLogFactory
-
-# -------------------------------------------------------------------
-# S I M I A N P R O P E R T I E S
-# -------------------------------------------------------------------
-maven.simian.includetests=false
-
-# -------------------------------------------------------------------
-# Q A L A B P R O P E R T I E S
-# -------------------------------------------------------------------
-#maven.qalab.merge.outputfile = ${basedir}/../qalab.xml
-#maven.qalab.chart.destinationdir=${basedir}/../target/docs/qalab
-#maven.qalab.movers.outputfile=${basedir}/../target/docs/qalab/qalab-movers.xml
-maven.qalab.merge.propertiesFile=${basedir}/../project.properties
-qalab.merge.timestampdateonly=true
-qalab.merge.action=replace
-maven.qalab.merge.quiet=true
-
-##
-## Y D O C
-##
-maven.ydoc.packages=net.objectlab.kit.*
-
-#maven.build.dest = ${basedir}/classes
-# ------------------------------------------------------------------------
-# M A V E N J A R O V E R R I D E
-# ------------------------------------------------------------------------
-maven.jar.override = on
-
-# ------------------------------------------------------------------------
-# Jars set explicity by path.
-# ------------------------------------------------------------------------
-maven.jar.class2svg = ${basedir}/../common-build/class2svg.jar
-maven.jar.tools = ${java.home}/../lib/tools.jar
-
-maven.javadoc.additionalparam = "-breakiterator"
-
-#maven.ydoc.resources = ${basedir}/../common-build/resources
-
-#maven.xdoc.theme.url=http://maven.apache.org/maven-1.x/style/maven-stylus.css
-#maven.xdoc.theme.url=http://maven.apache.org/style/maven-stylus.css
-maven.xdoc.theme=objectlabkit
-maven.docs.src=${basedir}/src/site
-
-#
-# CHECKSTYLE
-#
-maven.checkstyle.dir=${maven.build.dir}
-maven.checkstyle.properties=${basedir}/../common-build/objectlab_checks.xml
-maven.checkstyle.check.tests=false
-
-#
-# PMD
-#
-maven.pmd.targetjdk=1.5
-
-maven.multiproject.navigation=independent
-
-maven.repo.remote=http://repo1.maven.org/maven,http://people.apache.org/repo/m1-snapshot-repository/
-maven.changes.issue.template=http://sourceforge.net/support/tracker.php?aid=%ISSUE%
Deleted: trunk/common-build/project.xml
===================================================================
--- trunk/common-build/project.xml 2010-03-28 12:20:22 UTC (rev 321)
+++ trunk/common-build/project.xml 2010-03-28 20:08:11 UTC (rev 322)
@@ -1,141 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- /*
- * ========================================================================
- * $Id$
- *
- * Copyright 2006 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- * ========================================================================
- */
--->
-
-<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
- <pomVersion>3</pomVersion>
- <groupId>net.objectlab.kit.datecalc</groupId>
- <currentVersion>1.2.0</currentVersion>
- <organization>
- <name>Appendium - Portfolio Financing Platform</name>
- <url>http://www.appendium.com/</url>
- <logo>http://www.appendium.com/openimages/appendium_logo.jpg</logo>
- </organization>
- <inceptionYear>2006</inceptionYear>
- <url>http://objectlabkit.sourceforge.net</url>
- <issueTrackingUrl>http://www.sourceforge.net/tracker/?group_id=175139</issueTrackingUrl>
- <siteAddress>objectlabkit.sourceforge.net</siteAddress>
- <siteDirectory>/var/www/solutions/website/objectlab.co.uk/</siteDirectory>
- <repository>
- <url>http://objectlabkit.svn.sourceforge.net/svnroot/objectlabkit</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>
- </repository>
- <developers>
- <developer>
- <name>Benoit Xhenseval</name>
- <id>benoitx</id>
- <email>kit AT appendium DOT com</email>
- <organization>Appendium Ltd</organization>
- <roles>
- <role>Team Leader</role>
- <role>Developer</role>
- </roles>
- <url>http://www.xhenseval.com</url>
- <timezone>+0</timezone>
- </developer>
- <developer>
- <name>Marcin Jekot</name>
- <id>marchy</id>
- <email>marchy at users dot sourceforge dot net</email>
- <organization>ObjectLab Financial Ltd</organization>
- <roles>
- <role>Developer</role>
- </roles>
- <timezone>+0</timezone>
- </developer>
- </developers>
- <!-- any mailing lists for the project -->
- <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>
- <ma...
[truncated message content] |
|
From: <ma...@us...> - 2010-03-28 20:23:25
|
Revision: 324
http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=324&view=rev
Author: marchy
Date: 2010-03-28 20:23:17 +0000 (Sun, 28 Mar 2010)
Log Message:
-----------
New site
Modified Paths:
--------------
trunk/datecalc-common/pom.xml
trunk/datecalc-common/src/site/resources/css/site.css
trunk/datecalc-common/src/site/site.xml
trunk/datecalc-common/src/site/xdoc/index.xml
trunk/datecalc-jdk/pom.xml
trunk/datecalc-jdk/src/site/resources/css/site.css
trunk/datecalc-jdk/src/site/site.xml
trunk/datecalc-jdk/src/site/xdoc/index.xml
trunk/datecalc-joda/pom.xml
trunk/datecalc-joda/src/site/resources/css/site.css
trunk/datecalc-joda/src/site/site.xml
trunk/datecalc-joda/src/site/xdoc/index.xml
trunk/pom.xml
trunk/src/site/resources/css/site.css
trunk/src/site/site.xml
trunk/src/site/xdoc/index.xml
Added Paths:
-----------
trunk/src/site/resources/css/shCore.css
trunk/src/site/resources/css/shThemeMidnight.css
trunk/src/site/resources/images/appendium_logo.png
trunk/src/site/resources/images/banner_background.png
trunk/src/site/resources/images/h3_white.png
trunk/src/site/resources/images/sonar_logo.png
trunk/src/site/resources/js/
trunk/src/site/resources/js/shBrushJava.js
trunk/src/site/resources/js/shCore.js
Removed Paths:
-------------
trunk/datecalc-common/src/site/resources/images/aquadot.jpg
trunk/datecalc-common/src/site/resources/images/bg.gif
trunk/datecalc-common/src/site/resources/images/grayBar.jpg
trunk/datecalc-jdk/src/site/resources/images/aquadot.jpg
trunk/datecalc-jdk/src/site/resources/images/bg.gif
trunk/datecalc-jdk/src/site/resources/images/grayBar.jpg
trunk/datecalc-joda/src/site/resources/images/aquadot.jpg
trunk/datecalc-joda/src/site/resources/images/bg.gif
trunk/datecalc-joda/src/site/resources/images/grayBar.jpg
trunk/src/site/resources/images/appendium_logo.jpg
trunk/src/site/resources/images/aquadot.jpg
trunk/src/site/resources/images/bg.gif
trunk/src/site/resources/images/grayBar.jpg
Modified: trunk/datecalc-common/pom.xml
===================================================================
--- trunk/datecalc-common/pom.xml 2010-03-28 20:19:16 UTC (rev 323)
+++ trunk/datecalc-common/pom.xml 2010-03-28 20:23:17 UTC (rev 324)
@@ -11,7 +11,7 @@
<artifactId>datecalc-common</artifactId>
<packaging>bundle</packaging>
- <name>DateCalc Commons</name>
+ <name>Date Calculator Common</name>
<description>Common Date Calculator Code</description>
<build>
@@ -44,55 +44,4 @@
</plugins>
</build>
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-checkstyle-plugin</artifactId>
- <configuration>
- <configLocation>config/maven_checks.xml</configLocation>
- </configuration>
- </plugin>
-
- <!--
- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> </plugin>
- <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <aggregate>true</aggregate> <source>1.5</source>
- </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jxr-maven-plugin</artifactId>
- </plugin>
- -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jxr-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-clover-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>cobertura-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-pmd-plugin</artifactId>
- <configuration>
- <targetJdk>1.5</targetJdk>
- <rulesets>
- <ruleset>/rulesets/basic.xml</ruleset>
- <ruleset>/rulesets/controversial.xml</ruleset>
- </rulesets>
- <linkXref>true</linkXref>
- <minimumTokens>100</minimumTokens>
- </configuration>
- </plugin>
- <!--
- <plugin> <artifactId>maven-changes-plugin</artifactId> <configuration>
- <issueLinkTemplate>%URL%/?func=detail&group_id=175139&%ISSUE%</issueLinkTemplate> </configuration> </plugin>
- <plugin> <artifactId>maven-changelog-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId>
- <artifactId>dashboard-maven-plugin</artifactId> </plugin> <plugin> <groupId>net.sf</groupId>
- <artifactId>stat-scm</artifactId> </plugin>
- -->
- </plugins>
- </reporting>
</project>
\ No newline at end of file
Modified: trunk/datecalc-common/src/site/resources/css/site.css
===================================================================
--- trunk/datecalc-common/src/site/resources/css/site.css 2010-03-28 20:19:16 UTC (rev 323)
+++ trunk/datecalc-common/src/site/resources/css/site.css 2010-03-28 20:23:17 UTC (rev 324)
@@ -1,146 +1,30 @@
-body, select, input, li {
- background: #ffffff;
- color: #002070;
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 12px;
-}
-
-a img {
- border: 0;
-}
-
-a:link, a:visited {
- color: #0020d0;
- text-decoration: underline;
-}
-
-a:hover {
- color: #0000ff !important;
-}
-
-a.externalLink, a.externalLink:link, a.externalLink:visited, a.externalLink:active, a.externalLink:hover {
- background: url(../images/external.png) right center no-repeat;
- padding-right: 15px;
-}
-
-a.newWindow, a.newWindow:link, a.newWindow:visited, a.newWindow:active, a.newWindow:hover {
- background: url(../images/newwindow.png) right center no-repeat;
- padding-right: 18px;
-}
-
-h2 {
- padding: 2px 5px;
- border: 1px solid #c0c0c0;
- color: #002070;
- background-color: #eeeeee;
- font-weight: bold;
- font-size: 16px;
-}
-
-h3 {
- padding: 2px 5px;
- border: 1px solid #aaaaaa;
- color: #002070;
- background-color: #eeeeee;
- font-size: 14px;
-}
-
-p {
- line-height: 1.3em;
- font-size: small;
-}
-
-#breadcrumbs {
- background: url(../images/grayBar.jpg);
- border: 1px solid #c0c0c0;
- height: 17px;
-}
-
-#breadcrumbs a {
- font-size: 11px;
- font-weight: bold;
- margin: 0px 2px;
- text-decoration: none;
-}
-
-#leftColumn {
- border: 1px solid #999999;
- border-top: 0;
- border-left: 0;
- background: #eeeeee;
-}
-
-div#navcolumn {
- font-size: 12px;
-}
-
-div#navcolumn h5 {
- font-size: 12px;
- padding-top: 2px;
-}
-/*
-div#navcolumn li {
- background: #eeeeee !important;
-}
-*/
-div#navcolumn div a {
- color: #002070;
- font-size: 11px;
- text-decoration: none;
-}
-
-table.bodyTable th {
- color: #ffffff;
- background-color: #bbb;
- text-align: left;
- font-weight: bold;
-}
-
-table.bodyTable th {
- color: #ffffff;
- background-color: #bbb;
- text-align: left;
- font-weight: bold;
-}
-
-table.bodyTable a {
- text-decoration : none;
-}
-
-table.bodyTable tr.a {
- background-color: #ddd;
- text-decoration : none;
-}
-
-table.bodyTable tr.b {
- background-color: #eee;
-}
-
-.source {
- background: #ffffdd;
- border: 1px solid #999999;
- color: #000000;
- font-size: 12px !important;
- margin-left: 10px;
- margin-right: 10px;
- padding: 5px 5px 5px 7px;
-}
-
-
-.xright, #projectLogo img, #projectLogo span{
- float:right;
- color: #0020a0;
-}
-
-#footer {
- padding: 10px;
- margin: 20px 0px 20px 0px;
- border-top: solid #ccc 1px;
- color: #333333;
-}
-
-.subsectionTitle {
- font-size: 13px;
- font-weight: bold;
- color: #666;
-}
+#banner {
+ background: transparent url(../images/banner_background.png) repeat scroll 0 0;
+ height: 69px;
+}
+
+h2 {
+ color: #2872B4;
+}
+
+h3 {
+ color: #2872B4;
+ background-color: #FFFFFF;
+ background-image: url(../images/h3_white.png);
+ border-bottom: 1px solid #CCCCCC;
+}
+
+h4 {
+ color: #2872B4;
+ font-size:12px;
+ font-weight:bold;
+}
+
+#navcolumn h5 {
+ color: #2872B4;
+ border-bottom: 1px solid #CCCCCC;
+}
+
+#footer {
+ border-top: 1px solid #2872B4;
+}
\ No newline at end of file
Deleted: trunk/datecalc-common/src/site/resources/images/aquadot.jpg
===================================================================
(Binary files differ)
Deleted: trunk/datecalc-common/src/site/resources/images/bg.gif
===================================================================
(Binary files differ)
Deleted: trunk/datecalc-common/src/site/resources/images/grayBar.jpg
===================================================================
(Binary files differ)
Modified: trunk/datecalc-common/src/site/site.xml
===================================================================
--- trunk/datecalc-common/src/site/site.xml 2010-03-28 20:19:16 UTC (rev 323)
+++ trunk/datecalc-common/src/site/site.xml 2010-03-28 20:23:17 UTC (rev 324)
@@ -1,19 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="ObjectLab-Kit" xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd">
- <title>DateCalc Common</title>
<body>
- <menu name="DateCalc Common">
- <item name="Sitemap" href="sitemap.html" />
- </menu>
- <menu ref="modules" />
+
+ <breadcrumbs>
+ <item name="Common" href="http://objectlabkit.sourceforge.net/datecalc-common/"/>
+ </breadcrumbs>
+
<menu ref="reports" />
+
<menu name="Interesting Projects">
<item name="QALab" href="http://qalab.sourceforge.net/" />
<item name="JTreeMap" href="http://jtreemap.sourceforge.net/" />
<item name="PZFileReader" href="http://pzfilereader.sourceforge.net/" />
- <item name="StatSVN" href="http://www.StatSVN.org/" />
+ <item name="StatSVN" href="http://www.statsvn.org/" />
<item name="ObjectLab" href="http://www.objectlab.co.uk" />
- <item name="Joda-time" href="http://joda-time.sourceforge.net" />
+ <item name="Joda Time" href="http://joda-time.sourceforge.net" />
</menu>
+
</body>
</project>
\ No newline at end of file
Modified: trunk/datecalc-common/src/site/xdoc/index.xml
===================================================================
--- trunk/datecalc-common/src/site/xdoc/index.xml 2010-03-28 20:19:16 UTC (rev 323)
+++ trunk/datecalc-common/src/site/xdoc/index.xml 2010-03-28 20:23:17 UTC (rev 324)
@@ -1,11 +1,11 @@
<document>
<properties>
- <author email="Ki...@ob...">Benoit Xhenseval</author>
- <title>DateCalc Common Intro</title>
+ <author email="ki...@ob...">Benoit Xhenseval</author>
+ <title>DateCalc Common Introduction</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."
+ content="ObjectLab Kit offers free and open source Date calculators, released under the business-friendly Apache 2.0 license."
/>
<meta name="keywords"
@@ -23,8 +23,8 @@
<section name="DateCalc Common Introduction">
<p>DateCalc Common defines the common functionalities (implementation using some generics).</p>
- <p>Check out the <a href="apidocs/index.html">UML diagrams here</a></p>
- <p>Also look at the <a href="maven-reports.html">Project Reports</a> menu on the left for project specific items, unit tests, QA etc.</p>
+ <p>Check out the <a href="../apidocs/index.html?net/objectlab/kit/datecalc/common/package-summary.html">UML diagrams and JavaDocs here</a>.</p>
+ <p>Also look at the <a href="project-reports.html">Project Reports</a> menu on the left for project specific items, unit tests, QA etc.</p>
</section>
</body>
Modified: trunk/datecalc-jdk/pom.xml
===================================================================
--- trunk/datecalc-jdk/pom.xml 2010-03-28 20:19:16 UTC (rev 323)
+++ trunk/datecalc-jdk/pom.xml 2010-03-28 20:23:17 UTC (rev 324)
@@ -53,7 +53,6 @@
</execution>
</executions>
</plugin>
-
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
@@ -86,7 +85,7 @@
<executions>
<execution>
<id>surefire-perf</id>
- <!-- use it mvn integration-test -P integration-test -->
+ <!-- use it mvn test -P perf-testing -->
<phase>test</phase>
<goals>
<goal>test</goal>
@@ -106,54 +105,4 @@
</profile>
</profiles>
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-checkstyle-plugin</artifactId>
- <configuration>
- <configLocation>config/maven_checks.xml</configLocation>
- </configuration>
- </plugin>
-
- <!--
- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> </plugin>
- <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <aggregate>true</aggregate> </configuration>
- </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jxr-maven-plugin</artifactId> </plugin>
- -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jxr-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-clover-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>cobertura-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-pmd-plugin</artifactId>
- <configuration>
- <targetJdk>1.5</targetJdk>
- <rulesets>
- <ruleset>/rulesets/basic.xml</ruleset>
- <ruleset>/rulesets/controversial.xml</ruleset>
- </rulesets>
- <linkXref>true</linkXref>
- <minimumTokens>100</minimumTokens>
- </configuration>
- </plugin>
- <!--
- <plugin> <artifactId>maven-changes-plugin</artifactId> <configuration>
- <issueLinkTemplate>%URL%/?func=detail&group_id=175139&%ISSUE%</issueLinkTemplate> </configuration> </plugin>
- <plugin> <artifactId>maven-changelog-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId>
- <artifactId>dashboard-maven-plugin</artifactId> </plugin> <plugin> <groupId>net.sf</groupId>
- <artifactId>stat-scm</artifactId> </plugin>
- -->
- </plugins>
- </reporting>
</project>
\ No newline at end of file
Modified: trunk/datecalc-jdk/src/site/resources/css/site.css
===================================================================
--- trunk/datecalc-jdk/src/site/resources/css/site.css 2010-03-28 20:19:16 UTC (rev 323)
+++ trunk/datecalc-jdk/src/site/resources/css/site.css 2010-03-28 20:23:17 UTC (rev 324)
@@ -1,146 +1,30 @@
-body, select, input, li {
- background: #ffffff;
- color: #002070;
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 12px;
-}
-
-a img {
- border: 0;
-}
-
-a:link, a:visited {
- color: #0020d0;
- text-decoration: underline;
-}
-
-a:hover {
- color: #0000ff !important;
-}
-
-a.externalLink, a.externalLink:link, a.externalLink:visited, a.externalLink:active, a.externalLink:hover {
- background: url(../images/external.png) right center no-repeat;
- padding-right: 15px;
-}
-
-a.newWindow, a.newWindow:link, a.newWindow:visited, a.newWindow:active, a.newWindow:hover {
- background: url(../images/newwindow.png) right center no-repeat;
- padding-right: 18px;
-}
-
-h2 {
- padding: 2px 5px;
- border: 1px solid #c0c0c0;
- color: #002070;
- background-color: #eeeeee;
- font-weight: bold;
- font-size: 16px;
-}
-
-h3 {
- padding: 2px 5px;
- border: 1px solid #aaaaaa;
- color: #002070;
- background-color: #eeeeee;
- font-size: 14px;
-}
-
-p {
- line-height: 1.3em;
- font-size: small;
-}
-
-#breadcrumbs {
- background: url(../images/grayBar.jpg);
- border: 1px solid #c0c0c0;
- height: 17px;
-}
-
-#breadcrumbs a {
- font-size: 11px;
- font-weight: bold;
- margin: 0px 2px;
- text-decoration: none;
-}
-
-#leftColumn {
- border: 1px solid #999999;
- border-top: 0;
- border-left: 0;
- background: #eeeeee;
-}
-
-div#navcolumn {
- font-size: 12px;
-}
-
-div#navcolumn h5 {
- font-size: 12px;
- padding-top: 2px;
-}
-/*
-div#navcolumn li {
- background: #eeeeee !important;
-}
-*/
-div#navcolumn div a {
- color: #002070;
- font-size: 11px;
- text-decoration: none;
-}
-
-table.bodyTable th {
- color: #ffffff;
- background-color: #bbb;
- text-align: left;
- font-weight: bold;
-}
-
-table.bodyTable th {
- color: #ffffff;
- background-color: #bbb;
- text-align: left;
- font-weight: bold;
-}
-
-table.bodyTable a {
- text-decoration : none;
-}
-
-table.bodyTable tr.a {
- background-color: #ddd;
- text-decoration : none;
-}
-
-table.bodyTable tr.b {
- background-color: #eee;
-}
-
-.source {
- background: #ffffdd;
- border: 1px solid #999999;
- color: #000000;
- font-size: 12px !important;
- margin-left: 10px;
- margin-right: 10px;
- padding: 5px 5px 5px 7px;
-}
-
-
-.xright, #projectLogo img, #projectLogo span{
- float:right;
- color: #0020a0;
-}
-
-#footer {
- padding: 10px;
- margin: 20px 0px 20px 0px;
- border-top: solid #ccc 1px;
- color: #333333;
-}
-
-.subsectionTitle {
- font-size: 13px;
- font-weight: bold;
- color: #666;
-}
+#banner {
+ background: transparent url(../images/banner_background.png) repeat scroll 0 0;
+ height: 69px;
+}
+
+h2 {
+ color: #2872B4;
+}
+
+h3 {
+ color: #2872B4;
+ background-color: #FFFFFF;
+ background-image: url(../images/h3_white.png);
+ border-bottom: 1px solid #CCCCCC;
+}
+
+h4 {
+ color: #2872B4;
+ font-size:12px;
+ font-weight:bold;
+}
+
+#navcolumn h5 {
+ color: #2872B4;
+ border-bottom: 1px solid #CCCCCC;
+}
+
+#footer {
+ border-top: 1px solid #2872B4;
+}
\ No newline at end of file
Deleted: trunk/datecalc-jdk/src/site/resources/images/aquadot.jpg
===================================================================
(Binary files differ)
Deleted: trunk/datecalc-jdk/src/site/resources/images/bg.gif
===================================================================
(Binary files differ)
Deleted: trunk/datecalc-jdk/src/site/resources/images/grayBar.jpg
===================================================================
(Binary files differ)
Modified: trunk/datecalc-jdk/src/site/site.xml
===================================================================
--- trunk/datecalc-jdk/src/site/site.xml 2010-03-28 20:19:16 UTC (rev 323)
+++ trunk/datecalc-jdk/src/site/site.xml 2010-03-28 20:23:17 UTC (rev 324)
@@ -1,17 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="ObjectLab-Kit" xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd">
- <title>DateCalc JDK</title>
<body>
- <menu name="DateCalc JDK">
- <item name="Sitemap" href="sitemap.html" />
- </menu>
+
+ <breadcrumbs>
+ <item name="JDK" href="http://objectlabkit.sourceforge.net/datecalc-jdk/"/>
+ </breadcrumbs>
+
+ <menu ref="reports" />
+
<menu name="Interesting Projects">
<item name="QALab" href="http://qalab.sourceforge.net/" />
<item name="JTreeMap" href="http://jtreemap.sourceforge.net/" />
<item name="PZFileReader" href="http://pzfilereader.sourceforge.net/" />
- <item name="StatSVN" href="http://www.StatSVN.org/" />
+ <item name="StatSVN" href="http://www.statsvn.org/" />
<item name="ObjectLab" href="http://www.objectlab.co.uk" />
- <item name="Joda-time" href="http://joda-time.sourceforge.net" />
+ <item name="Joda Time" href="http://joda-time.sourceforge.net" />
</menu>
+
</body>
</project>
\ No newline at end of file
Modified: trunk/datecalc-jdk/src/site/xdoc/index.xml
===================================================================
--- trunk/datecalc-jdk/src/site/xdoc/index.xml 2010-03-28 20:19:16 UTC (rev 323)
+++ trunk/datecalc-jdk/src/site/xdoc/index.xml 2010-03-28 20:23:17 UTC (rev 324)
@@ -22,9 +22,10 @@
<!-- The body of the document contains a number of sections -->
<section name="DateCalc JDK Introduction">
- <p>DateCalc JDK provides an implementation for pure JDK.</p>
- <p>Check out the <a href="apidocs/index.html">UML diagrams here</a></p>
- <p>Also look at the <a href="maven-reports.html">Project Reports</a> menu on the left for project specific items, unit tests, QA etc.</p>
+ <p>DateCalc JDK provides a pure Java implementation, without any dependencies.</p>
+ <p>So if your requirements are to not have further dependencies, namely on Joda-Time, use this module. Otherwise, we encourage you to use the Joda implementation - it's faster and more robust.</p>
+ <p>Check out the <a href="../apidocs/index.html?net/objectlab/kit/datecalc/jdk/package-summary.html">UML diagrams and JavaDocs here</a>.</p>
+ <p>Also look at the <a href="../project-reports.html">Project Reports</a> menu on the left for project specific items, unit tests, QA etc.</p>
</section>
</body>
Modified: trunk/datecalc-joda/pom.xml
===================================================================
--- trunk/datecalc-joda/pom.xml 2010-03-28 20:19:16 UTC (rev 323)
+++ trunk/datecalc-joda/pom.xml 2010-03-28 20:23:17 UTC (rev 324)
@@ -58,7 +58,6 @@
</execution>
</executions>
</plugin>
-
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
@@ -91,7 +90,7 @@
<executions>
<execution>
<id>surefire-perf</id>
- <!-- use it mvn integration-test -P integration-test -->
+ <!-- use it mvn test -P perf-testing -->
<phase>test</phase>
<goals>
<goal>test</goal>
@@ -111,55 +110,4 @@
</profile>
</profiles>
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-checkstyle-plugin</artifactId>
- <configuration>
- <configLocation>config/maven_checks.xml</configLocation>
- </configuration>
- </plugin>
-
- <!--
- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> </plugin>
- <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <aggregate>true</aggregate> </configuration>
- </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jxr-maven-plugin</artifactId> </plugin>
- -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jxr-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-clover-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>cobertura-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-pmd-plugin</artifactId>
- <configuration>
- <targetJdk>1.5</targetJdk>
- <rulesets>
- <ruleset>/rulesets/basic.xml</ruleset>
- <ruleset>/rulesets/controversial.xml</ruleset>
- </rulesets>
- <linkXref>true</linkXref>
- <minimumTokens>100</minimumTokens>
- </configuration>
- </plugin>
- <!--
- <plugin> <artifactId>maven-changes-plugin</artifactId> <configuration>
- <issueLinkTemplate>%URL%/?func=detail&group_id=175139&%ISSUE%</issueLinkTemplate> </configuration> </plugin>
- <plugin> <artifactId>maven-changelog-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId>
- <artifactId>dashboard-maven-plugin</artifactId> </plugin> <plugin> <groupId>net.sf</groupId>
- <artifactId>stat-scm</artifactId> </plugin>
- -->
- </plugins>
- </reporting>
-
</project>
\ No newline at end of file
Modified: trunk/datecalc-joda/src/site/resources/css/site.css
===================================================================
--- trunk/datecalc-joda/src/site/resources/css/site.css 2010-03-28 20:19:16 UTC (rev 323)
+++ trunk/datecalc-joda/src/site/resources/css/site.css 2010-03-28 20:23:17 UTC (rev 324)
@@ -1,146 +1,30 @@
-body, select, input, li {
- background: #ffffff;
- color: #002070;
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 12px;
-}
-
-a img {
- border: 0;
-}
-
-a:link, a:visited {
- color: #0020d0;
- text-decoration: underline;
-}
-
-a:hover {
- color: #0000ff !important;
-}
-
-a.externalLink, a.externalLink:link, a.externalLink:visited, a.externalLink:active, a.externalLink:hover {
- background: url(../images/external.png) right center no-repeat;
- padding-right: 15px;
-}
-
-a.newWindow, a.newWindow:link, a.newWindow:visited, a.newWindow:active, a.newWindow:hover {
- background: url(../images/newwindow.png) right center no-repeat;
- padding-right: 18px;
-}
-
-h2 {
- padding: 2px 5px;
- border: 1px solid #c0c0c0;
- color: #002070;
- background-color: #eeeeee;
- font-weight: bold;
- font-size: 16px;
-}
-
-h3 {
- padding: 2px 5px;
- border: 1px solid #aaaaaa;
- color: #002070;
- background-color: #eeeeee;
- font-size: 14px;
-}
-
-p {
- line-height: 1.3em;
- font-size: small;
-}
-
-#breadcrumbs {
- background: url(../images/grayBar.jpg);
- border: 1px solid #c0c0c0;
- height: 17px;
-}
-
-#breadcrumbs a {
- font-size: 11px;
- font-weight: bold;
- margin: 0px 2px;
- text-decoration: none;
-}
-
-#leftColumn {
- border: 1px solid #999999;
- border-top: 0;
- border-left: 0;
- background: #eeeeee;
-}
-
-div#navcolumn {
- font-size: 12px;
-}
-
-div#navcolumn h5 {
- font-size: 12px;
- padding-top: 2px;
-}
-/*
-div#navcolumn li {
- background: #eeeeee !important;
-}
-*/
-div#navcolumn div a {
- color: #002070;
- font-size: 11px;
- text-decoration: none;
-}
-
-table.bodyTable th {
- color: #ffffff;
- background-color: #bbb;
- text-align: left;
- font-weight: bold;
-}
-
-table.bodyTable th {
- color: #ffffff;
- background-color: #bbb;
- text-align: left;
- font-weight: bold;
-}
-
-table.bodyTable a {
- text-decoration : none;
-}
-
-table.bodyTable tr.a {
- background-color: #ddd;
- text-decoration : none;
-}
-
-table.bodyTable tr.b {
- background-color: #eee;
-}
-
-.source {
- background: #ffffdd;
- border: 1px solid #999999;
- color: #000000;
- font-size: 12px !important;
- margin-left: 10px;
- margin-right: 10px;
- padding: 5px 5px 5px 7px;
-}
-
-
-.xright, #projectLogo img, #projectLogo span{
- float:right;
- color: #0020a0;
-}
-
-#footer {
- padding: 10px;
- margin: 20px 0px 20px 0px;
- border-top: solid #ccc 1px;
- color: #333333;
-}
-
-.subsectionTitle {
- font-size: 13px;
- font-weight: bold;
- color: #666;
-}
+#banner {
+ background: transparent url(../images/banner_background.png) repeat scroll 0 0;
+ height: 69px;
+}
+
+h2 {
+ color: #2872B4;
+}
+
+h3 {
+ color: #2872B4;
+ background-color: #FFFFFF;
+ background-image: url(../images/h3_white.png);
+ border-bottom: 1px solid #CCCCCC;
+}
+
+h4 {
+ color: #2872B4;
+ font-size:12px;
+ font-weight:bold;
+}
+
+#navcolumn h5 {
+ color: #2872B4;
+ border-bottom: 1px solid #CCCCCC;
+}
+
+#footer {
+ border-top: 1px solid #2872B4;
+}
\ No newline at end of file
Deleted: trunk/datecalc-joda/src/site/resources/images/aquadot.jpg
===================================================================
(Binary files differ)
Deleted: trunk/datecalc-joda/src/site/resources/images/bg.gif
===================================================================
(Binary files differ)
Deleted: trunk/datecalc-joda/src/site/resources/images/grayBar.jpg
===================================================================
(Binary files differ)
Modified: trunk/datecalc-joda/src/site/site.xml
===================================================================
--- trunk/datecalc-joda/src/site/site.xml 2010-03-28 20:19:16 UTC (rev 323)
+++ trunk/datecalc-joda/src/site/site.xml 2010-03-28 20:23:17 UTC (rev 324)
@@ -1,17 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="ObjectLab-Kit" xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd">
- <title>DateCalc JODA</title>
<body>
- <menu name="DateCalc JODA">
- <item name="Sitemap" href="sitemap.html" />
- </menu>
+
+ <breadcrumbs>
+ <item name="Joda" href="http://objectlabkit.sourceforge.net/datecalc-joda/"/>
+ </breadcrumbs>
+
+ <menu ref="reports" />
+
<menu name="Interesting Projects">
<item name="QALab" href="http://qalab.sourceforge.net/" />
<item name="JTreeMap" href="http://jtreemap.sourceforge.net/" />
<item name="PZFileReader" href="http://pzfilereader.sourceforge.net/" />
- <item name="StatSVN" href="http://www.StatSVN.org/" />
+ <item name="StatSVN" href="http://www.statsvn.org/" />
<item name="ObjectLab" href="http://www.objectlab.co.uk" />
- <item name="Joda-time" href="http://joda-time.sourceforge.net" />
+ <item name="Joda Time" href="http://joda-time.sourceforge.net" />
</menu>
- </body>
-</project>
\ No newline at end of file
+
+ </body></project>
\ No new...
[truncated message content] |
|
From: <ma...@us...> - 2010-03-29 11:13:16
|
Revision: 327
http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=327&view=rev
Author: marchy
Date: 2010-03-29 11:13:10 +0000 (Mon, 29 Mar 2010)
Log Message:
-----------
fixed background image link in css.
Modified Paths:
--------------
trunk/datecalc-common/src/site/resources/css/site.css
trunk/datecalc-jdk/src/site/resources/css/site.css
trunk/datecalc-joda/src/site/resources/css/site.css
Modified: trunk/datecalc-common/src/site/resources/css/site.css
===================================================================
--- trunk/datecalc-common/src/site/resources/css/site.css 2010-03-29 11:10:59 UTC (rev 326)
+++ trunk/datecalc-common/src/site/resources/css/site.css 2010-03-29 11:13:10 UTC (rev 327)
@@ -1,5 +1,5 @@
#banner {
- background: transparent url(../images/banner_background.png) repeat scroll 0 0;
+ background: transparent url(../../images/banner_background.png) repeat scroll 0 0;
height: 69px;
}
@@ -10,7 +10,7 @@
h3 {
color: #2872B4;
background-color: #FFFFFF;
- background-image: url(../images/h3_white.png);
+ background-image: url(../../images/h3_white.png);
border-bottom: 1px solid #CCCCCC;
}
Modified: trunk/datecalc-jdk/src/site/resources/css/site.css
===================================================================
--- trunk/datecalc-jdk/src/site/resources/css/site.css 2010-03-29 11:10:59 UTC (rev 326)
+++ trunk/datecalc-jdk/src/site/resources/css/site.css 2010-03-29 11:13:10 UTC (rev 327)
@@ -1,5 +1,5 @@
#banner {
- background: transparent url(../images/banner_background.png) repeat scroll 0 0;
+ background: transparent url(../../images/banner_background.png) repeat scroll 0 0;
height: 69px;
}
@@ -10,7 +10,7 @@
h3 {
color: #2872B4;
background-color: #FFFFFF;
- background-image: url(../images/h3_white.png);
+ background-image: url(../../images/h3_white.png);
border-bottom: 1px solid #CCCCCC;
}
Modified: trunk/datecalc-joda/src/site/resources/css/site.css
===================================================================
--- trunk/datecalc-joda/src/site/resources/css/site.css 2010-03-29 11:10:59 UTC (rev 326)
+++ trunk/datecalc-joda/src/site/resources/css/site.css 2010-03-29 11:13:10 UTC (rev 327)
@@ -1,5 +1,5 @@
#banner {
- background: transparent url(../images/banner_background.png) repeat scroll 0 0;
+ background: transparent url(../../images/banner_background.png) repeat scroll 0 0;
height: 69px;
}
@@ -10,7 +10,7 @@
h3 {
color: #2872B4;
background-color: #FFFFFF;
- background-image: url(../images/h3_white.png);
+ background-image: url(../../images/h3_white.png);
border-bottom: 1px solid #CCCCCC;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ma...@us...> - 2010-03-29 16:03:00
|
Revision: 331
http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=331&view=rev
Author: marchy
Date: 2010-03-29 16:02:53 +0000 (Mon, 29 Mar 2010)
Log Message:
-----------
Feature request 2853974.
Change the visibility on JodaWorkingWeek(final byte workingDays)
constructor from private to protected.
Modified Paths:
--------------
trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/JodaWorkingWeek.java
trunk/src/changes/changes.xml
Modified: trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/JodaWorkingWeek.java
===================================================================
--- trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/JodaWorkingWeek.java 2010-03-29 16:00:20 UTC (rev 330)
+++ trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/JodaWorkingWeek.java 2010-03-29 16:02:53 UTC (rev 331)
@@ -53,7 +53,7 @@
super();
}
- private JodaWorkingWeek(final byte workingDays) {
+ protected JodaWorkingWeek(final byte workingDays) {
super(workingDays);
}
Modified: trunk/src/changes/changes.xml
===================================================================
--- trunk/src/changes/changes.xml 2010-03-29 16:00:20 UTC (rev 330)
+++ trunk/src/changes/changes.xml 2010-03-29 16:02:53 UTC (rev 331)
@@ -7,6 +7,7 @@
</properties>
<body>
<release version="1.2.0" date="in SVN" 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>
<action dev="benoitx" type="fix">Removed the deprecated method DateCalculator.setNonWorkingDays and getNonWorkingDays.</action>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ma...@us...> - 2010-03-30 11:07:14
|
Revision: 334
http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=334&view=rev
Author: marchy
Date: 2010-03-30 11:06:50 +0000 (Tue, 30 Mar 2010)
Log Message:
-----------
updating javadoc comments - there were warnings.
Modified Paths:
--------------
trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java
trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/DateCalculator.java
trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/ImmutableHolidayCalendar.java
trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/JodaWorkingWeek.java
Modified: trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java
===================================================================
--- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java 2010-03-30 10:53:30 UTC (rev 333)
+++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/AbstractKitCalculatorsFactory.java 2010-03-30 11:06:50 UTC (rev 334)
@@ -63,8 +63,8 @@
*
* @param name
* the calendar name to register these holidays under.
- * @param holidaysSet
- * the set of holidays (non-working days).
+ * @param holidaysCalendar
+ * a calendar containing a set of holidays (non-working days).
*/
public void registerHolidays(final String name, final HolidayCalendar<E> holidaysCalendar) {
if (name != null) {
Modified: trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/DateCalculator.java
===================================================================
--- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/DateCalculator.java 2010-03-30 10:53:30 UTC (rev 333)
+++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/DateCalculator.java 2010-03-30 11:06:50 UTC (rev 334)
@@ -120,7 +120,7 @@
* reference to a Holiday Calendar, if not the case, the calculator will
* make an immutable copy of the HolidayCalendar.
*
- * @param holidays
+ * @param calendar
* the holiday calendar (if null, no holidays taken into account)
* @since 1.1.0
*/
Modified: trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/ImmutableHolidayCalendar.java
===================================================================
--- trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/ImmutableHolidayCalendar.java 2010-03-30 10:53:30 UTC (rev 333)
+++ trunk/datecalc-common/src/main/java/net/objectlab/kit/datecalc/common/ImmutableHolidayCalendar.java 2010-03-30 11:06:50 UTC (rev 334)
@@ -39,7 +39,7 @@
}
/**
- * @return
+ * @return the early (start) boundary of the holiday range
* @see net.objectlab.kit.datecalc.common.HolidayCalendar#getEarlyBoundary()
*/
public E getEarlyBoundary() {
@@ -47,7 +47,7 @@
}
/**
- * @return
+ * @return the set of holidays
* @see net.objectlab.kit.datecalc.common.HolidayCalendar#getHolidays()
*/
public Set<E> getHolidays() {
@@ -55,7 +55,7 @@
}
/**
- * @return
+ * @return the late (end) boundary of the holiday range
* @see net.objectlab.kit.datecalc.common.HolidayCalendar#getLateBoundary()
*/
public E getLateBoundary() {
Modified: trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/JodaWorkingWeek.java
===================================================================
--- trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/JodaWorkingWeek.java 2010-03-30 10:53:30 UTC (rev 333)
+++ trunk/datecalc-joda/src/main/java/net/objectlab/kit/datecalc/joda/JodaWorkingWeek.java 2010-03-30 11:06:50 UTC (rev 334)
@@ -79,7 +79,7 @@
*
* @param working
* true if working day
- * @param dayOfWeek
+ * @param givenDayOfWeek
* e.g. DateTimeConstants.MONDAY, DateTimeConstants.TUESDAY, etc
*/
public JodaWorkingWeek withWorkingDayFromDateTimeConstant(final boolean working, int givenDayOfWeek) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ma...@us...> - 2010-04-12 16:04:47
|
Revision: 341
http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=341&view=rev
Author: marchy
Date: 2010-04-12 16:04:40 +0000 (Mon, 12 Apr 2010)
Log Message:
-----------
fix banner background.
Modified Paths:
--------------
trunk/datecalc-common/src/site/resources/css/site.css
trunk/datecalc-jdk/src/site/resources/css/site.css
trunk/datecalc-joda/src/site/resources/css/site.css
Modified: trunk/datecalc-common/src/site/resources/css/site.css
===================================================================
--- trunk/datecalc-common/src/site/resources/css/site.css 2010-04-11 22:44:12 UTC (rev 340)
+++ trunk/datecalc-common/src/site/resources/css/site.css 2010-04-12 16:04:40 UTC (rev 341)
@@ -1,6 +1,6 @@
#banner {
- background: transparent url(../../images/banner_background.png) repeat scroll 0 0;
- height: 69px;
+ background: transparent url(../../images/banner_background.jpg) repeat scroll 0 0;
+ height: 80px;
}
h2 {
Modified: trunk/datecalc-jdk/src/site/resources/css/site.css
===================================================================
--- trunk/datecalc-jdk/src/site/resources/css/site.css 2010-04-11 22:44:12 UTC (rev 340)
+++ trunk/datecalc-jdk/src/site/resources/css/site.css 2010-04-12 16:04:40 UTC (rev 341)
@@ -1,6 +1,6 @@
#banner {
- background: transparent url(../../images/banner_background.png) repeat scroll 0 0;
- height: 69px;
+ background: transparent url(../../images/banner_background.jpg) repeat scroll 0 0;
+ height: 80px;
}
h2 {
Modified: trunk/datecalc-joda/src/site/resources/css/site.css
===================================================================
--- trunk/datecalc-joda/src/site/resources/css/site.css 2010-04-11 22:44:12 UTC (rev 340)
+++ trunk/datecalc-joda/src/site/resources/css/site.css 2010-04-12 16:04:40 UTC (rev 341)
@@ -1,6 +1,6 @@
#banner {
- background: transparent url(../../images/banner_background.png) repeat scroll 0 0;
- height: 69px;
+ background: transparent url(../../images/banner_background.jpg) repeat scroll 0 0;
+ height: 80px;
}
h2 {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ma...@us...> - 2010-04-12 16:09:41
|
Revision: 342
http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=342&view=rev
Author: marchy
Date: 2010-04-12 16:09:34 +0000 (Mon, 12 Apr 2010)
Log Message:
-----------
Inherit menu, and add parent module link.
Modified Paths:
--------------
trunk/datecalc-common/src/site/site.xml
trunk/datecalc-jdk/src/site/site.xml
trunk/datecalc-joda/src/site/site.xml
trunk/src/site/site.xml
Modified: trunk/datecalc-common/src/site/site.xml
===================================================================
--- trunk/datecalc-common/src/site/site.xml 2010-04-12 16:04:40 UTC (rev 341)
+++ trunk/datecalc-common/src/site/site.xml 2010-04-12 16:09:34 UTC (rev 342)
@@ -6,16 +6,9 @@
<item name="Common" href="http://objectlabkit.sourceforge.net/datecalc-common/"/>
</breadcrumbs>
- <menu ref="reports" />
+ <menu ref="parent" />
- <menu name="Interesting Projects">
- <item name="QALab" href="http://qalab.sourceforge.net/" />
- <item name="JTreeMap" href="http://jtreemap.sourceforge.net/" />
- <item name="PZFileReader" href="http://pzfilereader.sourceforge.net/" />
- <item name="StatSVN" href="http://www.statsvn.org/" />
- <item name="ObjectLab" href="http://www.objectlab.co.uk" />
- <item name="Joda Time" href="http://joda-time.sourceforge.net" />
- </menu>
-
+ <menu ref="reports" />
+
</body>
</project>
\ No newline at end of file
Modified: trunk/datecalc-jdk/src/site/site.xml
===================================================================
--- trunk/datecalc-jdk/src/site/site.xml 2010-04-12 16:04:40 UTC (rev 341)
+++ trunk/datecalc-jdk/src/site/site.xml 2010-04-12 16:09:34 UTC (rev 342)
@@ -6,16 +6,9 @@
<item name="JDK" href="http://objectlabkit.sourceforge.net/datecalc-jdk/"/>
</breadcrumbs>
+ <menu ref="parent" />
+
<menu ref="reports" />
- <menu name="Interesting Projects">
- <item name="QALab" href="http://qalab.sourceforge.net/" />
- <item name="JTreeMap" href="http://jtreemap.sourceforge.net/" />
- <item name="PZFileReader" href="http://pzfilereader.sourceforge.net/" />
- <item name="StatSVN" href="http://www.statsvn.org/" />
- <item name="ObjectLab" href="http://www.objectlab.co.uk" />
- <item name="Joda Time" href="http://joda-time.sourceforge.net" />
- </menu>
-
</body>
</project>
\ No newline at end of file
Modified: trunk/datecalc-joda/src/site/site.xml
===================================================================
--- trunk/datecalc-joda/src/site/site.xml 2010-04-12 16:04:40 UTC (rev 341)
+++ trunk/datecalc-joda/src/site/site.xml 2010-04-12 16:09:34 UTC (rev 342)
@@ -6,15 +6,9 @@
<item name="Joda" href="http://objectlabkit.sourceforge.net/datecalc-joda/"/>
</breadcrumbs>
+ <menu ref="parent" />
+
<menu ref="reports" />
- <menu name="Interesting Projects">
- <item name="QALab" href="http://qalab.sourceforge.net/" />
- <item name="JTreeMap" href="http://jtreemap.sourceforge.net/" />
- <item name="PZFileReader" href="http://pzfilereader.sourceforge.net/" />
- <item name="StatSVN" href="http://www.statsvn.org/" />
- <item name="ObjectLab" href="http://www.objectlab.co.uk" />
- <item name="Joda Time" href="http://joda-time.sourceforge.net" />
- </menu>
-
- </body></project>
\ No newline at end of file
+ </body>
+</project>
\ No newline at end of file
Modified: trunk/src/site/site.xml
===================================================================
--- trunk/src/site/site.xml 2010-04-12 16:04:40 UTC (rev 341)
+++ trunk/src/site/site.xml 2010-04-12 16:09:34 UTC (rev 342)
@@ -57,9 +57,9 @@
</head>
<links>
- <item name="common" href="datecalc-common/index.html" />
- <item name="jdk" href="datecalc-jdk/index.html" />
- <item name="joda" href="datecalc-joda/index.html" />
+ <item name="datecalc-common" href="datecalc-common/index.html" />
+ <item name="datecalc-jdk" href="datecalc-jdk/index.html" />
+ <item name="datecalc-joda" href="datecalc-joda/index.html" />
<item name="sf.net/projects/objectlabkit" href="https://sourceforge.net/projects/objectlabkit/" />
</links>
@@ -82,7 +82,7 @@
<menu ref="reports" />
- <menu name="Interesting Projects">
+ <menu name="Interesting Projects" inherit="bottom">
<item name="QALab" href="http://qalab.sourceforge.net/" />
<item name="JTreeMap" href="http://jtreemap.sourceforge.net/" />
<item name="PZFileReader" href="http://pzfilereader.sourceforge.net/" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ma...@us...> - 2010-04-12 16:13:59
|
Revision: 343
http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=343&view=rev
Author: marchy
Date: 2010-04-12 16:13:53 +0000 (Mon, 12 Apr 2010)
Log Message:
-----------
formatting, and Project Report links.
Modified Paths:
--------------
trunk/datecalc-common/src/site/xdoc/index.xml
trunk/datecalc-jdk/src/site/xdoc/index.xml
trunk/datecalc-joda/src/site/xdoc/index.xml
Modified: trunk/datecalc-common/src/site/xdoc/index.xml
===================================================================
--- trunk/datecalc-common/src/site/xdoc/index.xml 2010-04-12 16:09:34 UTC (rev 342)
+++ trunk/datecalc-common/src/site/xdoc/index.xml 2010-04-12 16:13:53 UTC (rev 343)
@@ -1,15 +1,13 @@
<document>
+
<properties>
<author email="ki...@ob...">Benoit Xhenseval</author>
- <title>DateCalc Common Introduction</title>
+ <title>DateCalc Common</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="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" />
@@ -18,14 +16,15 @@
<meta name="robots" content="ALL"/>
<meta name="Revisit-After" content="20 Days" />
</head>
+
<body>
- <!-- The body of the document contains a number of sections -->
+
<section name="DateCalc Common Introduction">
-
- <p>DateCalc Common defines the common functionalities (implementation using some generics).</p>
- <p>Check out the <a href="../apidocs/index.html?net/objectlab/kit/datecalc/common/package-summary.html">UML diagrams and JavaDocs here</a>.</p>
- <p>Also look at the <a href="project-reports.html">Project Reports</a> menu on the left for project specific items, unit tests, QA etc.</p>
+ <p>DateCalc Common defines the common functionalities (implementation using some generics).</p>
+ <p>Check out the <a href="../apidocs/index.html?net/objectlab/kit/datecalc/common/package-summary.html">UML diagrams and JavaDocs here</a>.</p>
+ <p>Also, take a look at this module's <a href="project-reports.html">Project Reports</a> menu on the left, and the aggregated <a href="../project-reports.html">Project Reports</a>.</p>
</section>
-
+
</body>
+
</document>
\ No newline at end of file
Modified: trunk/datecalc-jdk/src/site/xdoc/index.xml
===================================================================
--- trunk/datecalc-jdk/src/site/xdoc/index.xml 2010-04-12 16:09:34 UTC (rev 342)
+++ trunk/datecalc-jdk/src/site/xdoc/index.xml 2010-04-12 16:13:53 UTC (rev 343)
@@ -1,15 +1,13 @@
<document>
+
<properties>
<author email="Ki...@ob...">Benoit Xhenseval</author>
- <title>DateCalc JDK Intro</title>
+ <title>DateCalc JDK</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="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" />
@@ -18,15 +16,16 @@
<meta name="robots" content="ALL"/>
<meta name="Revisit-After" content="20 Days" />
</head>
+
<body>
- <!-- The body of the document contains a number of sections -->
+
<section name="DateCalc JDK Introduction">
-
- <p>DateCalc JDK provides a pure Java implementation, without any dependencies.</p>
- <p>So if your requirements are to not have further dependencies, namely on Joda-Time, use this module. Otherwise, we encourage you to use the Joda implementation - it's faster and more robust.</p>
- <p>Check out the <a href="../apidocs/index.html?net/objectlab/kit/datecalc/jdk/package-summary.html">UML diagrams and JavaDocs here</a>.</p>
- <p>Also look at the <a href="../project-reports.html">Project Reports</a> menu on the left for project specific items, unit tests, QA etc.</p>
+ <p>DateCalc JDK provides a pure Java implementation, without any dependencies.</p>
+ <p>So if your requirements are to not have further dependencies, namely on Joda Time, use this module. Otherwise, we encourage you to use the Joda implementation - it's faster and more robust.</p>
+ <p>Check out the <a href="../apidocs/index.html?net/objectlab/kit/datecalc/jdk/package-summary.html">UML diagrams and JavaDocs here</a>.</p>
+ <p>Also, take a look at this module's <a href="project-reports.html">Project Reports</a> menu on the left, and the aggregated <a href="../project-reports.html">Project Reports</a>.</p>
</section>
-
+
</body>
+
</document>
\ No newline at end of file
Modified: trunk/datecalc-joda/src/site/xdoc/index.xml
===================================================================
--- trunk/datecalc-joda/src/site/xdoc/index.xml 2010-04-12 16:09:34 UTC (rev 342)
+++ trunk/datecalc-joda/src/site/xdoc/index.xml 2010-04-12 16:13:53 UTC (rev 343)
@@ -1,15 +1,13 @@
<document>
+
<properties>
<author email="Ki...@ob...">Benoit Xhenseval</author>
- <title>DateCalc JODA Intro</title>
+ <title>DateCalc JODA</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="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" />
@@ -18,15 +16,18 @@
<meta name="robots" content="ALL"/>
<meta name="Revisit-After" content="20 Days" />
</head>
+
<body>
- <!-- The body of the document contains a number of sections -->
+
<section name="DateCalc JODA Introduction">
-
- <p>DateCalc Joda provides an implementation based on <a href="http://joda-time.sourceforge.net">Joda Time</a>.</p>
- <p>Check out the <a href="../apidocs/index.html?net/objectlab/kit/datecalc/joda/package-summary.html">UML diagrams and JavaDocs here</a>.</p>
- <p>Also look at the <a href="project-reports.html">Project Reports</a> menu on the left for project specific items, unit tests, QA etc.</p>
- <p>Finally, this jar requires Joda time 1.3+, the website is <a href="http://joda-time.sourceforge.net">here</a>.</p>
+ <p>
+ DateCalc Joda provides an implementation based on <a href="http://joda-time.sourceforge.net">Joda Time.</a>
+ It requires Joda Time 1.3+, the website is: <a href="http://joda-time.sourceforge.net">http://joda-time.sourceforge.net</a>.
+ </p>
+ <p>Check out the <a href="../apidocs/index.html?net/objectlab/kit/datecalc/joda/package-summary.html">UML diagrams and JavaDocs here</a>.</p>
+ <p>Also, take a look at this module's <a href="project-reports.html">Project Reports</a> menu on the left, and the aggregated <a href="../project-reports.html">Project Reports</a>.</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-13 14:06:30
|
Revision: 344
http://objectlabkit.svn.sourceforge.net/objectlabkit/?rev=344&view=rev
Author: marchy
Date: 2010-04-13 14:06:24 +0000 (Tue, 13 Apr 2010)
Log Message:
-----------
changed email addie to lower case.
Modified Paths:
--------------
trunk/datecalc-jdk/src/site/xdoc/index.xml
trunk/datecalc-joda/src/site/xdoc/index.xml
Modified: trunk/datecalc-jdk/src/site/xdoc/index.xml
===================================================================
--- trunk/datecalc-jdk/src/site/xdoc/index.xml 2010-04-12 16:13:53 UTC (rev 343)
+++ trunk/datecalc-jdk/src/site/xdoc/index.xml 2010-04-13 14:06:24 UTC (rev 344)
@@ -1,7 +1,7 @@
<document>
<properties>
- <author email="Ki...@ob...">Benoit Xhenseval</author>
+ <author email="ki...@ob...">Benoit Xhenseval</author>
<title>DateCalc JDK</title>
</properties>
Modified: trunk/datecalc-joda/src/site/xdoc/index.xml
===================================================================
--- trunk/datecalc-joda/src/site/xdoc/index.xml 2010-04-12 16:13:53 UTC (rev 343)
+++ trunk/datecalc-joda/src/site/xdoc/index.xml 2010-04-13 14:06:24 UTC (rev 344)
@@ -1,7 +1,7 @@
<document>
<properties>
- <author email="Ki...@ob...">Benoit Xhenseval</author>
+ <author email="ki...@ob...">Benoit Xhenseval</author>
<title>DateCalc JODA</title>
</properties>
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-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.ja...
[truncated message content] |
|
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...
[truncated message content] |
|
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 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 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: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.
|