Skip to content

Commit 76c6020

Browse files
committed
gradle: replaced apt with annotationProcessor
1 parent c8741a9 commit 76c6020

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
plugins {
22
id 'com.github.johnrengelman.shadow' version '1.2.4'
3-
id 'net.ltgt.apt' version '0.15'
43
id "com.github.ben-manes.versions" version '0.17.0'
54
}
65

@@ -62,10 +61,10 @@ dependencies {
6261
compile group: 'net.minidev', name: 'json-smart', version: '2.3'
6362
// DSL-json
6463
compile group: 'com.dslplatform', name: 'dsl-json-java8', version: "${dslJsonVersion}"
65-
apt group: 'com.dslplatform', name: 'dsl-json-java8', version: "${dslJsonVersion}"
64+
annotationProcessor group: 'com.dslplatform', name: 'dsl-json-java8', version: "${dslJsonVersion}"
6665
// LoganSquare
6766
compile group: 'com.bluelinelabs', name: 'logansquare', version: '1.3.7'
68-
apt group: 'com.bluelinelabs', name: 'logansquare-compiler', version: '1.3.7'
67+
annotationProcessor group: 'com.bluelinelabs', name: 'logansquare-compiler', version: '1.3.7'
6968
// json-simple
7069
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
7170
// nanojson
@@ -90,7 +89,7 @@ dependencies {
9089
// IMPORTANT: Leave JMH at the end!
9190
// JMH
9291
compile group: 'org.openjdk.jmh', name: 'jmh-core', version: "${jmhVersion}"
93-
apt group: 'org.openjdk.jmh', name: 'jmh-generator-annprocess', version: "${jmhVersion}"
92+
annotationProcessor group: 'org.openjdk.jmh', name: 'jmh-generator-annprocess', version: "${jmhVersion}"
9493
}
9594

9695
shadowJar {

0 commit comments

Comments
 (0)