-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Annotation processors in Kotlin (#775)
* Common annotation processor in Kotlin * Common annotation processor tests in Kotlin * SQLite annotation processor in Kotlin * java.lang -> javaTypeObject fixes * Reformat * Fix content resolver processor tests * Content resolver processor in Kotlin * Fix test case * Add dummy java processors * Improve some formatting * Eliminate it overuse * Fix PR comments * More PR fixes * Use trimIndent for code blocks formatting
- Loading branch information
1 parent
8575ad9
commit da7a1f5
Showing
215 changed files
with
2,569 additions
and
3,298 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
apply plugin: 'java' | ||
|
||
targetCompatibility = '1.6' | ||
sourceCompatibility = '1.6' | ||
apply plugin: 'kotlin' | ||
|
||
dependencies { | ||
compile libraries.intellijAnnotations | ||
compile libraries.autoService | ||
compile libraries.javaPoet | ||
compile libraries.kotlinStdLib | ||
|
||
testCompile libraries.junit | ||
testCompile libraries.assertJ | ||
testCompile libraries.mockitoCore | ||
testCompile libraries.mockitoKotlin | ||
testCompile libraries.equalsVerifier | ||
} | ||
|
||
|
||
sourceSets { | ||
main.java.srcDirs += 'src/main/kotlin' | ||
test.java.srcDir 'src/test/kotlin' | ||
} | ||
|
||
apply from: '../gradle/publish-java-lib.gradle' | ||
apply from: '../gradle/jacoco-non-android.gradle' | ||
apply from: '../gradle/jacoco-non-android.gradle' |
31 changes: 0 additions & 31 deletions
31
.../main/java/com/pushtorefresh/storio/common/annotations/processor/ProcessingException.java
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
...torio/common/annotations/processor/SkipNotAnnotatedClassWithAnnotatedParentException.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.