forked from sw360/sw360rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (38 loc) · 986 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
42
43
44
45
46
47
//
// Copyright Siemens AG, 2017. Part of the SW360 Portal Project.
//
// Copying and distribution of this file, with or without modification,
// are permitted in any medium without royalty provided the copyright
// notice and this notice are preserved. This file is offered as-is,
// without any warranty.
//
apply from: "$rootDir/gradle/versioning.gradle"
buildscript {
ext {
springRestdocsVersion = '1.1.2.RELEASE'
springBootVersion = '1.4.4.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
allprojects {
apply plugin: 'idea'
apply plugin: 'eclipse'
group = 'org.eclipse.sw360'
}
subprojects {
apply plugin: 'java'
repositories {
mavenCentral()
mavenLocal()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
task wrapper(type: Wrapper) {
gradleVersion = '3.3'
}