47 lines
1.9 KiB
Groovy
47 lines
1.9 KiB
Groovy
import org.jetbrains.kotlin.*
|
|
|
|
task codegen_blackbox_reflection_annotations_annotationRetentionAnnotation (type: RunExternalTest) {
|
|
source = "codegen/blackbox/reflection/annotations/annotationRetentionAnnotation.kt"
|
|
}
|
|
|
|
task codegen_blackbox_reflection_annotations_annotationsOnJavaMembers (type: RunExternalTest) {
|
|
source = "codegen/blackbox/reflection/annotations/annotationsOnJavaMembers.kt"
|
|
}
|
|
|
|
task codegen_blackbox_reflection_annotations_findAnnotation (type: RunExternalTest) {
|
|
source = "codegen/blackbox/reflection/annotations/findAnnotation.kt"
|
|
}
|
|
|
|
task codegen_blackbox_reflection_annotations_propertyAccessors (type: RunExternalTest) {
|
|
source = "codegen/blackbox/reflection/annotations/propertyAccessors.kt"
|
|
}
|
|
|
|
task codegen_blackbox_reflection_annotations_propertyWithoutBackingField (type: RunExternalTest) {
|
|
source = "codegen/blackbox/reflection/annotations/propertyWithoutBackingField.kt"
|
|
}
|
|
|
|
task codegen_blackbox_reflection_annotations_retentions (type: RunExternalTest) {
|
|
source = "codegen/blackbox/reflection/annotations/retentions.kt"
|
|
}
|
|
|
|
task codegen_blackbox_reflection_annotations_simpleClassAnnotation (type: RunExternalTest) {
|
|
source = "codegen/blackbox/reflection/annotations/simpleClassAnnotation.kt"
|
|
}
|
|
|
|
task codegen_blackbox_reflection_annotations_simpleConstructorAnnotation (type: RunExternalTest) {
|
|
source = "codegen/blackbox/reflection/annotations/simpleConstructorAnnotation.kt"
|
|
}
|
|
|
|
task codegen_blackbox_reflection_annotations_simpleFunAnnotation (type: RunExternalTest) {
|
|
source = "codegen/blackbox/reflection/annotations/simpleFunAnnotation.kt"
|
|
}
|
|
|
|
task codegen_blackbox_reflection_annotations_simpleParamAnnotation (type: RunExternalTest) {
|
|
source = "codegen/blackbox/reflection/annotations/simpleParamAnnotation.kt"
|
|
}
|
|
|
|
task codegen_blackbox_reflection_annotations_simpleValAnnotation (type: RunExternalTest) {
|
|
source = "codegen/blackbox/reflection/annotations/simpleValAnnotation.kt"
|
|
}
|
|
|