forked from linkedin/avro-util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
85 lines (74 loc) · 2.4 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
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
/*
* Copyright 2018 LinkedIn Corp.
* Licensed under the BSD 2-Clause License (the "License").
* See License in the project root for license information.
*/
buildscript {
repositories {
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath 'gradle.plugin.net.vivin:gradle-semantic-build-versioning:4.0.0'
}
}
apply plugin: 'net.vivin.gradle-semantic-build-versioning'
//otherwise it defaults to the folder name
rootProject.name = 'avro-util'
include 'common'
include 'test-common'
//compatibility helper
include 'helper:helper-common'
include 'helper:impls:helper-impl-14'
include 'helper:impls:helper-impl-15'
include 'helper:impls:helper-impl-16'
include 'helper:impls:helper-impl-17'
include 'helper:impls:helper-impl-18'
include 'helper:impls:helper-impl-19'
include 'helper:impls:helper-impl-110'
include 'helper:impls:helper-impl-111'
include 'helper:helper'
include 'helper:tests:codegen-14'
include 'helper:tests:codegen-15'
include 'helper:tests:codegen-16'
include 'helper:tests:codegen-17'
include 'helper:tests:codegen-18'
include 'helper:tests:codegen-19'
include 'helper:tests:codegen-110'
include 'helper:tests:codegen-111'
include 'helper:tests:helper-tests-common'
include 'helper:tests:helper-tests-noavro'
include 'helper:tests:helper-tests-allavro'
include 'helper:tests:helper-tests-14'
include 'helper:tests:helper-tests-15'
include 'helper:tests:helper-tests-16'
include 'helper:tests:helper-tests-17'
include 'helper:tests:helper-tests-18'
include 'helper:tests:helper-tests-19'
include 'helper:tests:helper-tests-110'
include 'helper:tests:helper-tests-111'
include 'helper:tests:helper-tests-111_0'
//fast avro
include 'avro-fastserde'
//spotbugs plugin
include 'spotbugs-plugin'
//avro (schema) parser
include 'parser'
//code (specific record) generator
include 'avro-codegen'
//code-generation utility
include 'avro-builder:builder-spi'
include 'avro-builder:builder'
include 'avro-builder:tests:codegen-14'
include 'avro-builder:tests:codegen-15'
include 'avro-builder:tests:codegen-16'
include 'avro-builder:tests:codegen-17'
include 'avro-builder:tests:codegen-18'
include 'avro-builder:tests:codegen-19'
include 'avro-builder:tests:codegen-110'
include 'avro-builder:tests:codegen-111'
include 'avro-builder:tests:codegen-charseq-method'
include 'avro-builder:tests:codegen-no-utf8-in-putbyindex'
include 'avro-builder:tests:tests-allavro'
include 'demos:spotbugs-demo'