-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject-specification.txt
More file actions
56 lines (56 loc) · 1009 Bytes
/
project-specification.txt
File metadata and controls
56 lines (56 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
prefix [ com cj sshubin ]
name
[
webdb
]
description 'Schemaless in memory database with http api'
version 0.1.0
language kotlin
dependencies
{
stdlib
{
group org.jetbrains.kotlin
artifact kotlin-stdlib-jdk8
}
coroutines
{
group org.jetbrains.kotlinx
artifact kotlinx-coroutines-core
}
test
{
group org.jetbrains.kotlin
artifact kotlin-test-junit
scope test
}
jetty-server
{
group org.eclipse.jetty
artifact jetty-server
}
jackson-module-kotlin {
group com.fasterxml.jackson.module
artifact jackson-module-kotlin
}
}
global
[
stdlib
test
]
modules
{
console [ domain ]
domain [ coroutines jetty-server database logging ]
database [ json ]
logging [ contract ]
contract []
json [ jackson-module-kotlin ]
}
detangler [ console ]
consoleEntryPoint {
console com.cj.sshubin.webdb.console.EntryPoint
}
}