Issue#67 Test published dependencies
This commit is contained in:
parent
6156e9457f
commit
fad19ffee7
2 changed files with 18 additions and 5 deletions
|
|
@ -107,11 +107,16 @@ dependencies {
|
||||||
androidTestImplementation project(':mockserver')
|
androidTestImplementation project(':mockserver')
|
||||||
|
|
||||||
testImplementation testFixtures(project(':core'))
|
testImplementation testFixtures(project(':core'))
|
||||||
testImplementation project(':test-util-junit5-android')
|
// testImplementation project(':test-util-junit5-android')
|
||||||
|
testImplementation "org.fnives.android.testutil:android-unit-junit5:1.0.0"
|
||||||
androidTestImplementation testFixtures(project(':core'))
|
androidTestImplementation testFixtures(project(':core'))
|
||||||
testImplementation project(':test-util-shared-robolectric')
|
// testImplementation project(':test-util-shared-robolectric')
|
||||||
androidTestImplementation project(':test-util-shared-android')
|
testImplementation "org.fnives.android.testutil:shared-robolectric:1.0.0"
|
||||||
testImplementation project(':test-util-android')
|
// androidTestImplementation project(':test-util-shared-android')
|
||||||
androidTestImplementation project(':test-util-android')
|
androidTestImplementation "org.fnives.android.testutil:shared-android:1.0.0"
|
||||||
|
// testImplementation project(':test-util-android')
|
||||||
|
testImplementation "org.fnives.android.testutil:android:1.0.0"
|
||||||
|
// androidTestImplementation project(':test-util-android')
|
||||||
|
androidTestImplementation "org.fnives.android.testutil:android:1.0.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,14 @@ allprojects {
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
google()
|
google()
|
||||||
|
maven {
|
||||||
|
url "https://maven.pkg.github.com/fknives/AndroidTest-ShowCase"
|
||||||
|
credentials {
|
||||||
|
username = project.findProperty("GITHUB_USERNAME") ?: System.getenv("GITHUB_USERNAME")
|
||||||
|
password = project.findProperty("GITHUB_TOKEN") ?: System.getenv("GITHUB_TOKEN")
|
||||||
|
}
|
||||||
|
// https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue