mirror of
https://github.com/android10/Android-CleanArchitecture.git
synced 2026-03-13 10:13:41 +08:00
32 lines
740 B
Groovy
32 lines
740 B
Groovy
apply plugin: 'java'
|
|
|
|
//noinspection GroovyUnusedAssignment
|
|
sourceCompatibility = 1.7
|
|
//noinspection GroovyUnusedAssignment
|
|
targetCompatibility = 1.7
|
|
|
|
configurations {
|
|
provided
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
compileClasspath += configurations.provided
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
def domainDependencies = rootProject.ext.domainDependencies
|
|
def domainTestDependencies = rootProject.ext.domainTestDependencies
|
|
|
|
compileOnly domainDependencies.javaxAnnotation
|
|
|
|
implementation domainDependencies.javaxInject
|
|
implementation domainDependencies.rxJava
|
|
compile domainDependencies.arrow
|
|
|
|
testImplementation domainTestDependencies.junit
|
|
testImplementation domainTestDependencies.mockito
|
|
testImplementation domainTestDependencies.assertj
|
|
}
|