forked from blackducksoftware/hub-detect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (35 loc) · 1.04 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
buildscript {
ext {
springBootVersion = '2.0.3.RELEASE'
}
repositories {
jcenter()
mavenCentral()
maven { url 'https://plugins.gradle.org/m2/' }
}
dependencies {
classpath 'com.blackducksoftware.integration:common-gradle-plugin:0.0.+'
classpath "org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}"
}
}
String sharedVersion = '4.1.0-SNAPSHOT'
version = sharedVersion
configure(subprojects) { project ->
group = 'com.blackducksoftware.integration'
version = sharedVersion
apply plugin: 'com.blackducksoftware.integration.solution'
apply plugin: 'groovy'
apply plugin: 'maven-publish'
apply plugin: 'io.spring.dependency-management'
license {
header rootProject.file('LICENSE')
}
dependencyManagement {
imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")
}
}
dependencies {
compile 'com.blackducksoftware.integration:hub-common:35.0.0'
}
}