Skip to content

Commit 07f8e77

Browse files
committed
wip
1 parent 6bd2b80 commit 07f8e77

File tree

6 files changed

+28
-12
lines changed

6 files changed

+28
-12
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ gen/
7979
# Gradle files
8080
.gradle/
8181
build/
82+
out/
8283

8384
# Local configuration file (sdk path, etc)
8485
local.properties

annotationprocessingtesting-kt/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ apply plugin: 'kotlin'
33
apply plugin: 'kotlin-kapt'
44

55
dependencies {
6-
implementation project(':auto-value-tikxml')
6+
implementation project(':autovalue')
7+
kapt project(':autovalue')
78
implementation rootProject.autoValue
9+
kapt rootProject.autoValue
810
testImplementation rootProject.junit
911
}
+11-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
apply plugin: 'java'
2+
apply plugin: 'net.ltgt.apt'
23

34
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
815
}

autovalue/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ apply plugin: 'java'
22
apply plugin: 'kotlin'
33

44
dependencies {
5-
implementation project(':annotation')
5+
api project(':annotation')
66
implementation project(':processor-common')
7-
implementation project(':core')
7+
api project(':core')
88
implementation rootProject.autoValue
99
implementation rootProject.autoService
1010
implementation rootProject.kotlinStdLib
1111
implementation rootProject.kotlinReflect
1212
implementation rootProject.javaPoet
1313

1414
testImplementation rootProject.junit
15-
testImplementation rootProject.testCompile
15+
testImplementation rootProject.compileTesting
1616
testImplementation rootProject.truth
1717
testImplementation rootProject.kotlinTestJunit
1818
}

build.gradle

+7-1
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,15 @@ buildscript {
3030
repositories {
3131
google()
3232
jcenter()
33+
maven {
34+
url "https://plugins.gradle.org/m2/"
35+
}
3336
}
3437

3538
dependencies {
3639
classpath "com.android.tools.build:gradle:$androidGradleVersion"
3740
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
41+
classpath "net.ltgt.gradle:gradle-apt-plugin:0.19"
3842
}
3943
}
4044

@@ -43,6 +47,8 @@ allprojects {
4347
google()
4448
jcenter()
4549
mavenCentral()
46-
maven { url "http://oss.sonatype.org/content/repositories/snapshots"}
50+
maven {
51+
url "http://oss.sonatype.org/content/repositories/snapshots"
52+
}
4753
}
4854
}

settings.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ rootProject.name = 'tikxml'
22
include ':core'
33
include ':annotation'
44
include ':processor'
5-
include ':annotationprocessortesting'
6-
include ':annotationprocessortesting-kt'
5+
include ':annotationprocessingtesting'
6+
include ':annotationprocessingtesting-kt'
77
include ':retrofit-converter'
88
include ':benchmark'
99
include ':converters:converter-htmlescape'
1010
include ':converters:converter-date-rfc3339'
1111
include ':converters'
12-
include ':auto-value-tikxml'
12+
include ':autovalue'
1313
include ':processor-common'

0 commit comments

Comments
 (0)