-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
49 lines (44 loc) · 1.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
/*
* 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 'avro-migration-helper'
include 'avro-codegen'
include 'avro-fastserde'
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: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: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'