forked from codice/ddf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCODEOWNERS
Validating CODEOWNERS rules...
98 lines (66 loc) · 3.38 KB
/
CODEOWNERS
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# This is a comment.
# Each line is a file pattern followed by one or more owners.
# For more information on CODEOWNERS, see https://help.github.com/articles/about-codeowners/
# Order is important; the last matching pattern takes the most precedence.
# Within each subsection, keep all pattern matches in strict alphabetical order
# to ensure they go from least to most granular. Additionally when adding a more granular pattern,
# you must explicitly add any users/groups marked on broader patterns. Example:
# Given a file starting as
# ===
# catalog/core/ @user1
# distribution/docs/ @user2
# ===
# When updating to add a pattern match for catalog/core/catalog-core-api for user3, it SHOULD be
# updated to read
# ===
# catalog/core/ @user1
# catalog/core/catalog-core-api/ @user3 @user1
# distribution/docs/ @user2
# ===
# If user1 were not added to the newly added, more granular match, they would be tagged on all changes
# within the catalog/core/** hierarchy EXCEPT FOR those within catalog/core/catalog-core-api/**.
# Exceptions may be made to this rule on a case-by-case basis with the input of the more general
# codeowners.
#
# Order is important; the last matching pattern takes the most precedence.
###############################
# DISTRIBUTION
###############################
distribution/ddf-common/ @stustison
distribution/docs/ @ricklarsen
distribution/test/ @codice/test
###############################
# CATALOG
###############################
catalog/core/ @codice/core-apis
catalog/core/catalog-core-commands/src/main/java/org/codice/ddf/commands/catalog/ExportCommand.java @rzwiefel
catalog/core/catalog-core-commands/src/main/java/org/codice/ddf/commands/catalog/ImportCommand.java @rzwiefel
catalog/core/catalog-core-contentresourcereader/ @codice/core-apis @stustison
catalog/core/catalog-core-localstorageprovider/ @codice/core-apis @stustison
catalog/core/catalog-core-standardframework/src/main/**/impl/ @codice/core-apis @stustison
catalog/core/catalog-core-standardframework/src/main/**/resource/ @codice/core-apis @stustison
catalog/core/catalog-core-standardframework/src/main/java/ddf/catalog/history/ @rzwiefel
catalog/core/catalog-core-validationparser/ @rzwiefel
catalog/core/catalog-core-versioning/* @rzwiefel
catalog/opensearch/ @stustison
catalog/rest/ @stustison
catalog/security/ @codice/security @stustison
catalog/spatial/csw/ @bdeining
catalog/spatial/registry/ @clockard
catalog/ui/catalog-ui-search/ @andrewkfiedler
catalog/ui/catalog-ui-search/pom.xml @andrewkfiedler @rzwiefel
catalog/ui/catalog-ui-search/src/**/java/ @rzwiefel
catalog/ui/catalog-ui-search/src/**/resources/ @rzwiefel
catalog/ui/search-ui/standard/ @stustison
###############################
# PLATFORM
###############################
platform/admin/ @stustison
platform/admin/configurator/ @coyotesqrl
platform/error/ @stustison
platform/parser/ @coyotesqrl
platform/platform-filter-delegate/ @codice/security @stustison
platform/platform-http-proxy/ @stustison
platform/platform-paxweb-jettyconfig/ @stustison
platform/security/ @codice/security @stustison
platform/util/ @stustison