|
1 | 1 | plugins { |
2 | | - id 'java' |
| 2 | + id 'java-library' |
3 | 3 | id 'idea' |
4 | 4 | id 'jacoco' |
5 | | - id "io.spring.dependency-management" version "1.0.2.RELEASE" |
| 5 | + id "io.spring.dependency-management" version "1.0.3.RELEASE" |
6 | 6 | id 'maven-publish' |
7 | 7 | id 'signing' |
8 | | - id 'nebula.optional-base' version '3.0.3' |
9 | | - id 'nebula.provided-base' version '3.0.3' |
10 | | - id "io.codearte.nexus-staging" version "0.8.0" |
| 8 | + id 'nebula.optional-base' version '3.2.0' |
| 9 | + id "io.codearte.nexus-staging" version "0.9.0" |
11 | 10 | } |
12 | 11 |
|
13 | 12 | ext { |
@@ -44,29 +43,30 @@ repositories { |
44 | 43 |
|
45 | 44 | dependencyManagement { |
46 | 45 | imports { |
47 | | - mavenBom 'io.spring.platform:platform-bom:Brussels-SR2' |
| 46 | + mavenBom 'io.spring.platform:platform-bom:Brussels-SR3' |
48 | 47 | } |
49 | 48 | } |
50 | 49 |
|
51 | 50 | dependencies { |
52 | | - compile("org.springframework.boot:spring-boot-autoconfigure") |
53 | | - compile("org.springframework.boot:spring-boot-starter-logging") |
| 51 | + implementation("org.springframework.boot:spring-boot-autoconfigure") |
| 52 | + implementation("org.springframework.boot:spring-boot-starter-logging") |
54 | 53 | compileOnly('org.springframework.boot:spring-boot-configuration-processor') |
55 | | - compile("org.springframework:spring-webmvc") |
56 | | - compile('org.springframework:spring-aop') |
57 | | - compile('org.aspectj:aspectjweaver') |
| 54 | + implementation("org.springframework:spring-webmvc") |
| 55 | + implementation('org.springframework:spring-aop') |
| 56 | + implementation('org.aspectj:aspectjweaver') |
58 | 57 |
|
59 | 58 | compile 'org.springframework.retry:spring-retry', optional |
60 | 59 |
|
61 | | - provided 'org.projectlombok:lombok' |
62 | | - compile 'org.apache.commons:commons-lang3:3.5' |
63 | | - compile 'net.javacrumbs.future-converter:future-converter-spring-java8:1.1.0' |
| 60 | + compileOnly 'org.projectlombok:lombok' |
| 61 | + implementation 'org.apache.commons:commons-lang3:3.5' |
| 62 | + implementation 'net.javacrumbs.future-converter:future-converter-spring-java8:1.1.0' |
64 | 63 |
|
65 | | - testCompile("org.springframework.boot:spring-boot-starter-test") |
66 | | - testCompile('org.springframework.boot:spring-boot-starter-hateoas') |
67 | | - testCompile("com.fasterxml.jackson.datatype:jackson-datatype-jdk8") |
68 | | - testCompile("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml") |
69 | | - testCompile('org.assertj:assertj-core:3.6.2') |
| 64 | + testImplementation("org.springframework.boot:spring-boot-starter-test") |
| 65 | + testImplementation('org.springframework.boot:spring-boot-starter-hateoas') |
| 66 | + testImplementation("com.fasterxml.jackson.datatype:jackson-datatype-jdk8") |
| 67 | + testImplementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml") |
| 68 | + testImplementation('org.assertj:assertj-core:3.8.0') |
| 69 | + testCompileOnly('org.projectlombok:lombok') |
70 | 70 | } |
71 | 71 |
|
72 | 72 | tasks.withType(Jar) { |
|
0 commit comments