summaryrefslogtreecommitdiffstats
path: root/parent
diff options
context:
space:
mode:
authorHåkon Hallingstad <hakon@oath.com>2018-01-22 15:44:14 +0100
committerHåkon Hallingstad <hakon@oath.com>2018-01-22 15:44:14 +0100
commitfa9b1942bf51a3301398be5fdc8f18bf3d9485ff (patch)
tree0fed27e3b5047bc781096fd1834c9678cdad9b2a /parent
parentb54f86da25e5183fc45d1d5f1620eb6394d7aca0 (diff)
Redefine task and its context
After discussions with bratseth, we'll not organize tasks in a tree structure, and instead have tasks mostly 1:1 with components. Tasks are put in chains, and may have ordering constraints between them that the chain resolves. The FileSystem API has been removed and instead use the raw java NIO FileSystem, and use Jimfs to mock FileSystem in tests. NodeAdminStateUpdater has been made an interface, since the HTTP request handler needs to delegate to it when getting requests. Much of the public HTTP API will get internalized with standalone NodeAdmin.
Diffstat (limited to 'parent')
-rw-r--r--parent/pom.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/parent/pom.xml b/parent/pom.xml
index de02f5085ea..46b8c90baef 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -607,6 +607,12 @@
<scope>test</scope>
</dependency>
<dependency>
+ <groupId>com.google.jimfs</groupId>
+ <artifactId>jimfs</artifactId>
+ <version>1.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<version>4.3.0</version>