-
Notifications
You must be signed in to change notification settings - Fork 12
/
build.gradle
41 lines (33 loc) · 979 Bytes
/
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
plugins {
id 'com.github.hierynomus.license' version '0.15.0'
id 'com.jfrog.bintray' version '1.8.5'
id 'com.gradle.plugin-publish' version '0.11.0'
id 'groovy'
}
repositories {
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
group = 'com.monits'
version = '3.1.1'
apply from: 'gradle/license.gradle'
apply from: 'gradle/publish.gradle'
apply from: 'gradle/perfTest.gradle'
apply from: 'gradle/integTest.gradle'
apply from: 'gradle/idea.gradle'
apply from: 'gradle/staticCodeAnalysis.gradle'
apply plugin: 'build.no-resolution-at-configuration'
dependencies {
compileOnly gradleApi()
compileOnly localGroovy()
implementation 'gradle.plugin.com.github.spotbugs.snom:spotbugs-gradle-plugin:4.5.0'
}
// Java versions
project.sourceCompatibility = JavaVersion.VERSION_1_8
project.targetCompatibility = JavaVersion.VERSION_1_8
wrapper {
gradleVersion = '6.5'
distributionType = Wrapper.DistributionType.ALL
}