-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
components.depfile.yml
62 lines (61 loc) · 1.51 KB
/
components.depfile.yml
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
57
58
59
60
61
62
# This file contains rules about which high-level components can reference each other.
#
# This is to discourage cyclic dependencies between business domains.
#
# Use `make deptrac` to verify these rules.
deptrac:
paths:
- ./src
layers:
- name: Commanding
collectors:
- type: directory
regex: src/Commanding/.*
- type: directory
regex: test/Commanding/.*
- name: EventSourcing
collectors:
- type: directory
regex: src/EventSourcing/.*
- type: directory
regex: test/EventSourcing/.*
- name: Glue
collectors:
- type: directory
regex: src/Glue/.*
- type: directory
regex: test/Glue/.*
- name: Payment
collectors:
- type: directory
regex: src/Payment/.*
- type: directory
regex: test/Payment/.*
- name: TemperatureTracking
collectors:
- type: directory
regex: src/TemperatureTracking/.*
- type: directory
regex: test/TemperatureTracking/.*
- name: TimeTracking
collectors:
- type: directory
regex: src/TimeTracking/.*
- type: directory
regex: test/TimeTracking/.*
ruleset:
Commanding: ~
EventSourcing:
- Commanding
Glue:
- Commanding
- EventSourcing
Payment:
- Commanding
- EventSourcing
- TimeTracking
TemperatureTracking:
- Commanding
- EventSourcing
TimeTracking:
- EventSourcing