-
Notifications
You must be signed in to change notification settings - Fork 60
/
settings.gradle
105 lines (92 loc) · 3.01 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
* 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'
}
}
plugins {
id "com.gradle.enterprise" version "3.11.4"
}
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'
//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'
include 'fastserde:avro-fastserde'
include 'fastserde:avro-fastserde-jmh'
include 'fastserde:avro-fastserde-tests-common'
include 'fastserde:avro-fastserde-tests14'
include 'fastserde:avro-fastserde-tests15'
include 'fastserde:avro-fastserde-tests16'
include 'fastserde:avro-fastserde-tests17'
include 'fastserde:avro-fastserde-tests18'
include 'fastserde:avro-fastserde-tests19'
include 'fastserde:avro-fastserde-tests110'
include 'fastserde:avro-fastserde-tests111'
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}