-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
54 lines (42 loc) · 1.3 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
45
46
47
48
49
50
51
52
53
buildscript {
ext.dependencyPluginVersion = '1.0.3.RELEASE'
ext.springBootVersion = '1.5.11.RELEASE'
repositories {
mavenLocal()
jcenter()
}
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:${dependencyPluginVersion}"
classpath "org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}"
}
}
group 'my.bunin'
version '1.0-SNAPSHOT'
allprojects {
ext.axonVersion = '3.1.2'
ext.bouncycastleVersion = '1.59'
ext.codecVersion = '1.11'
ext.commonsCompilerVersion = '2.7.8'
ext.httpClientVersion = '4.5.5'
ext.scalaBinaryVersion = '2.11'
ext.sparkVersion = '2.2.1'
ext.springBootVersion = '1.5.11.RELEASE'
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'org.springframework.boot'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
dependencyManagement {
imports {
mavenBom "io.spring.platform:platform-bom:Brussels-SR8"
mavenBom "org.springframework.boot:spring-boot-starter-parent:${springBootVersion}"
}
}
repositories {
mavenLocal()
jcenter()
}
}