aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.junit/META-INF/MANIFEST.MF
diff options
context:
space:
mode:
authorShawn Pearce <spearce@spearce.org>2016-11-15 17:34:07 -0800
committerShawn Pearce <spearce@spearce.org>2016-11-21 11:34:14 -0800
commit81f9c18433f9d53a64498b07c90c4fc73654d942 (patch)
treea664218e45862de9de923e16875a6b19764b867a /org.eclipse.jgit.junit/META-INF/MANIFEST.MF
parent608e31126e3ef0ff4d02e048dc5eefdb28f0b7c4 (diff)
downloadjgit-81f9c18433f9d53a64498b07c90c4fc73654d942.tar.gz
jgit-81f9c18433f9d53a64498b07c90c4fc73654d942.zip
Define MonotonicClock interface for advanced timestamps
MonotonicClock can be implemented to provide more certainity about time than the standard System.currentTimeMillis() can provide. This can be used by classes such as PersonIdent and Ketch to rely on more certainity about time moving in a strictly ascending order. Gerrit Code Review can also leverage this interface through its embedding of JGit and use MonotonicClock and ProposedTimestamp to provide stronger assurance that NoteDb time is moving forward. Change-Id: I1a3cbd49a39b150a0d49b36d572da113ca83a786
Diffstat (limited to 'org.eclipse.jgit.junit/META-INF/MANIFEST.MF')
-rw-r--r--org.eclipse.jgit.junit/META-INF/MANIFEST.MF4
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.jgit.junit/META-INF/MANIFEST.MF b/org.eclipse.jgit.junit/META-INF/MANIFEST.MF
index d7ce17542f..3597a508be 100644
--- a/org.eclipse.jgit.junit/META-INF/MANIFEST.MF
+++ b/org.eclipse.jgit.junit/META-INF/MANIFEST.MF
@@ -21,6 +21,7 @@ Import-Package: org.eclipse.jgit.api;version="[4.6.0,4.7.0)",
org.eclipse.jgit.treewalk.filter;version="[4.6.0,4.7.0)",
org.eclipse.jgit.util;version="[4.6.0,4.7.0)",
org.eclipse.jgit.util.io;version="[4.6.0,4.7.0)",
+ org.eclipse.jgit.util.time;version="[4.6.0,4.7.0)",
org.junit;version="[4.0.0,5.0.0)",
org.junit.rules;version="[4.9.0,5.0.0)",
org.junit.runner;version="[4.0.0,5.0.0)",
@@ -33,4 +34,5 @@ Export-Package: org.eclipse.jgit.junit;version="4.6.0";
org.eclipse.jgit.treewalk,
org.eclipse.jgit.util,
org.eclipse.jgit.storage.file,
- org.eclipse.jgit.api"
+ org.eclipse.jgit.api",
+ org.eclipse.jgit.junit.time;version="4.6.0"