aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
blob: cc984035a05a8598c44e28894ee66659361126ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
allprojects {
    repositories {
        maven {
            url "https://oss.sonatype.org/content/repositories/snapshots"
            mavenContent {
                snapshotsOnly()
            }
        }

        mavenCentral()
        jcenter()
    }
}

project.ext {
    vertxVersion = "4.0.1-SNAPSHOT"
    grpcVersion = '1.34.1'
    protobufVersion = '3.14.0'
}