From acf12fd49e61afced6cc71016a869a0cbaea0e93 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Ho=C3=9F?= Date: Tue, 13 Aug 2013 22:43:44 +0200 Subject: [PATCH] Update dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Sebastian Hoß --- pom.xml | 12 ++++++------ .../com/github/sebhoss/time/FiscalDatePlusMonthsTest.java | 4 ++-- .../com/github/sebhoss/time/FiscalDatePlusYearsTest.java | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pom.xml b/pom.xml index 2388620..3c10502 100644 --- a/pom.xml +++ b/pom.xml @@ -35,11 +35,6 @@ joda-time - junit - junit - test - - com.github.sebhoss common-annotations 1.0.0 @@ -49,9 +44,14 @@ guava + junit + junit + test + + com.github.sebhoss datasets - 0.0.1-SNAPSHOT + 1.0.0-SNAPSHOT test diff --git a/src/test/java/com/github/sebhoss/time/FiscalDatePlusMonthsTest.java b/src/test/java/com/github/sebhoss/time/FiscalDatePlusMonthsTest.java index 5a38ac3..8003ed4 100644 --- a/src/test/java/com/github/sebhoss/time/FiscalDatePlusMonthsTest.java +++ b/src/test/java/com/github/sebhoss/time/FiscalDatePlusMonthsTest.java @@ -18,7 +18,7 @@ import org.junit.experimental.theories.Theory; import org.junit.runner.RunWith; import com.github.sebhoss.common.annotation.CompilerWarnings; -import com.github.sebhoss.datasets.DataSets; +import com.github.sebhoss.datasets.Datasets; /** * TODO: document! @@ -49,7 +49,7 @@ public class FiscalDatePlusMonthsTest { /** The amount of random months to add a given date */ @DataPoints - public static int[] RANDOM_MONTHS = DataSets.ints().build(); + public static int[] RANDOM_MONTHS = Datasets.ints().build(); /** * Ensures that for any given date a number of years can be added. diff --git a/src/test/java/com/github/sebhoss/time/FiscalDatePlusYearsTest.java b/src/test/java/com/github/sebhoss/time/FiscalDatePlusYearsTest.java index 5c63a5d..ef15ada 100644 --- a/src/test/java/com/github/sebhoss/time/FiscalDatePlusYearsTest.java +++ b/src/test/java/com/github/sebhoss/time/FiscalDatePlusYearsTest.java @@ -18,7 +18,7 @@ import org.junit.experimental.theories.Theory; import org.junit.runner.RunWith; import com.github.sebhoss.common.annotation.CompilerWarnings; -import com.github.sebhoss.datasets.DataSets; +import com.github.sebhoss.datasets.Datasets; /** * TODO: document! @@ -49,7 +49,7 @@ public class FiscalDatePlusYearsTest { /** The amount of random years to add a given date */ @DataPoints - public static int[] RANDOM_YEARS = DataSets.ints().lowestInclusive(-292275054) + public static int[] RANDOM_YEARS = Datasets.ints().lowestInclusive(-292275054) .highestInclusive(292278993).build(); /** -- 2.11.4.GIT