forked from square/retrofit
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate Kotlin tests to separate project
This is easier than messing with classpaths.
- Loading branch information
1 parent
1a4198c
commit fb62d2c
Showing
8 changed files
with
14 additions
and
7 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,3 +1,5 @@ | ||
POM_ARTIFACT_ID=retrofit | ||
POM_NAME=Retrofit | ||
POM_DESCRIPTION=A type-safe HTTP client for Android and Java. | ||
|
||
kotlin.stdlib.default.dependency=false |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
apply plugin: 'org.jetbrains.kotlin.jvm' | ||
|
||
dependencies { | ||
testImplementation projects.retrofit | ||
testImplementation projects.retrofit.testHelpers | ||
testImplementation libs.junit | ||
testImplementation libs.assertj | ||
testImplementation libs.mockwebserver | ||
testImplementation libs.kotlinStdLib | ||
testImplementation libs.kotlinCoroutines | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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