SchildiChat-android/library/external/realmfieldnameshelper/build.gradle
Erik Huizinga bbcd48b2ad
Fix reference
The value should be the same, but the reference name was incorrect.
2024-10-21 13:08:57 +02:00

23 lines
503 B
Groovy

apply plugin: 'kotlin'
apply plugin: 'java'
sourceCompatibility = versions.sourceCompat
targetCompatibility = versions.targetCompat
dependencies {
implementation 'com.squareup:javapoet:1.13.0'
}
task javadocJar(type: Jar, dependsOn: 'javadoc') {
from javadoc.destinationDir
archiveClassifier = 'javadoc'
}
task sourcesJar(type: Jar, dependsOn: 'classes') {
from sourceSets.main.allSource
archiveClassifier = 'sources'
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}