-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
44 lines (35 loc) · 1.2 KB
/
build.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
plugins {
id 'com.google.osdetector' version '1.4.0'
id 'com.jfrog.artifactory' version '4.12.0' apply false
id 'com.jfrog.bintray' version '1.8.4' apply false
id 'me.champeau.gradle.jmh' version '0.5.0' apply false
id 'io.morethan.jmhreport' version '0.9.0' apply false
id 'com.google.protobuf' version '0.8.10' apply false
id 'io.spring.dependency-management' version '1.0.8.RELEASE' apply false
}
//apply from: 'artifactory.gradle'
//apply from: 'bintray.gradle'
//apply from: 'publication.gradle'
subprojects {
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: 'maven-publish'
apply plugin: 'com.jfrog.artifactory'
apply plugin: 'com.jfrog.bintray'
apply from: "${project.rootDir}/dependencies-managment.gradle"
sourceCompatibility = 1.8
targetCompatibility = 1.8
ext {
if (project.hasProperty('versionSuffix')) {
project.version += project.getProperty('versionSuffix')
}
}
repositories {
mavenLocal()
jcenter()
mavenCentral()
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
}