10d0cf6d07
* Add store-kotlin module * Remove useless file * Fix package in AndroidManifest * Refactor module tests to assertJ * Remove wrong annotation * Add store-kotlin artifact to README * Add module README * Add KDoc to Javadoc jar * Add Experimental annotation * Mark all public store-kotlin classes as @Experimental * Replace use of rx's @Experimental with local one instead
26 lines
579 B
Groovy
26 lines
579 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'kotlin'
|
|
apply plugin: 'org.jetbrains.dokka'
|
|
|
|
group = GROUP
|
|
version = VERSION_NAME
|
|
|
|
compileKotlin {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
|
|
javadoc.dependsOn dokka
|
|
|
|
dependencies {
|
|
compile project(':store')
|
|
compile libraries.kotlinStdLib
|
|
|
|
testCompile libraries.mockito
|
|
testCompile libraries.junit
|
|
testCompile libraries.commonsLang3
|
|
testCompile libraries.assertJ
|
|
}
|
|
|
|
apply from: rootProject.file("gradle/maven-push.gradle")
|