-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
settings.gradle
41 lines (31 loc) · 1.32 KB
/
settings.gradle
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
include 'core/core', 'core/testing'
include 'xml/core', 'xml/testing'
include 'pbf/core', 'pbf/full', 'pbf/testing'
include 'tbo/core', 'tbo/testing'
include 'geometry/core', 'geometry/testing'
include 'utils/core', 'utils/cli'
include 'extra/core', 'extra/cli'
include 'edit/core'
include 'replication/core', 'replication/testing'
include 'testing'
include 'incubating'
project(':core/core').name = 'osm4j-core'
project(':core/testing').name = 'osm4j-core-testing'
project(':xml/core').name = 'osm4j-xml'
project(':xml/testing').name = 'osm4j-xml-testing'
project(':pbf/core').name = 'osm4j-pbf'
project(':pbf/full').name = 'osm4j-pbf-full-runtime'
project(':pbf/testing').name = 'osm4j-pbf-testing'
project(':tbo/core').name = 'osm4j-tbo'
project(':tbo/testing').name = 'osm4j-tbo-testing'
project(':geometry/core').name = 'osm4j-geometry'
project(':geometry/testing').name = 'osm4j-geometry-testing'
project(':utils/core').name = 'osm4j-utils'
project(':utils/cli').name = 'osm4j-utils-cli'
project(':extra/core').name = 'osm4j-extra'
project(':extra/cli').name = 'osm4j-extra-cli'
project(':edit/core').name = 'osm4j-edit'
project(':replication/core').name = 'osm4j-replication'
project(':replication/testing').name = 'osm4j-replication-testing'
project(':testing').name = 'osm4j-testing'
project(':incubating').name = 'osm4j-incubating'