File tree 6 files changed +28
-12
lines changed
annotationprocessingtesting
annotationprocessingtesting-kt
6 files changed +28
-12
lines changed Original file line number Diff line number Diff line change 79
79
# Gradle files
80
80
.gradle /
81
81
build /
82
+ out /
82
83
83
84
# Local configuration file (sdk path, etc)
84
85
local.properties
Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ apply plugin: 'kotlin'
3
3
apply plugin : ' kotlin-kapt'
4
4
5
5
dependencies {
6
- implementation project(' :auto-value-tikxml' )
6
+ implementation project(' :autovalue' )
7
+ kapt project(' :autovalue' )
7
8
implementation rootProject. autoValue
9
+ kapt rootProject. autoValue
8
10
testImplementation rootProject. junit
9
11
}
Original file line number Diff line number Diff line change 1
1
apply plugin : ' java'
2
+ apply plugin : ' net.ltgt.apt'
2
3
3
4
dependencies {
4
- implementation project(' :processor' )
5
- implementation project(' :auto-value-tikxml' )
6
- implementation rootProject. autoValue
7
- testImplementation rootProject. junit
5
+ compile project(" :annotation" )
6
+ implementation project(' :processor' )
7
+ implementation project(' :autovalue' )
8
+ implementation rootProject. autoValue
9
+ annotationProcessor project(' :processor' )
10
+ annotationProcessor project(' :autovalue' )
11
+
12
+ testAnnotationProcessor project(' :processor' )
13
+ testAnnotationProcessor project(' :autovalue' )
14
+ testImplementation rootProject. junit
8
15
}
Original file line number Diff line number Diff line change @@ -2,17 +2,17 @@ apply plugin: 'java'
2
2
apply plugin : ' kotlin'
3
3
4
4
dependencies {
5
- implementation project(' :annotation' )
5
+ api project(' :annotation' )
6
6
implementation project(' :processor-common' )
7
- implementation project(' :core' )
7
+ api project(' :core' )
8
8
implementation rootProject. autoValue
9
9
implementation rootProject. autoService
10
10
implementation rootProject. kotlinStdLib
11
11
implementation rootProject. kotlinReflect
12
12
implementation rootProject. javaPoet
13
13
14
14
testImplementation rootProject. junit
15
- testImplementation rootProject. testCompile
15
+ testImplementation rootProject. compileTesting
16
16
testImplementation rootProject. truth
17
17
testImplementation rootProject. kotlinTestJunit
18
18
}
Original file line number Diff line number Diff line change @@ -30,11 +30,15 @@ buildscript {
30
30
repositories {
31
31
google()
32
32
jcenter()
33
+ maven {
34
+ url " https://plugins.gradle.org/m2/"
35
+ }
33
36
}
34
37
35
38
dependencies {
36
39
classpath " com.android.tools.build:gradle:$androidGradleVersion "
37
40
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion "
41
+ classpath " net.ltgt.gradle:gradle-apt-plugin:0.19"
38
42
}
39
43
}
40
44
@@ -43,6 +47,8 @@ allprojects {
43
47
google()
44
48
jcenter()
45
49
mavenCentral()
46
- maven { url " http://oss.sonatype.org/content/repositories/snapshots" }
50
+ maven {
51
+ url " http://oss.sonatype.org/content/repositories/snapshots"
52
+ }
47
53
}
48
54
}
Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ rootProject.name = 'tikxml'
2
2
include ' :core'
3
3
include ' :annotation'
4
4
include ' :processor'
5
- include ' :annotationprocessortesting '
6
- include ' :annotationprocessortesting -kt'
5
+ include ' :annotationprocessingtesting '
6
+ include ' :annotationprocessingtesting -kt'
7
7
include ' :retrofit-converter'
8
8
include ' :benchmark'
9
9
include ' :converters:converter-htmlescape'
10
10
include ' :converters:converter-date-rfc3339'
11
11
include ' :converters'
12
- include ' :auto-value-tikxml '
12
+ include ' :autovalue '
13
13
include ' :processor-common'
You can’t perform that action at this time.
0 commit comments