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

        mavenCentral()
        jcenter()
    }
}

project.ext {
    vertxVersion = "4.0.3"
    grpcVersion = '1.34.1'
    protobufVersion = '3.14.0'
    ver = project.hasProperty("build_ver") ? project.getProperty("build_ver") : "dev"
}