mirror of
https://github.com/Guardsquare/proguard.git
synced 2026-03-13 09:50:34 +08:00
20 lines
371 B
Groovy
20 lines
371 B
Groovy
// Gradle build script for the ProGuard annotations.
|
|
|
|
apply plugin: 'java'
|
|
|
|
sourceCompatibility = "${target}"
|
|
targetCompatibility = "${target}"
|
|
|
|
sourceSets.main {
|
|
java {
|
|
srcDirs = ['src']
|
|
}
|
|
resources {
|
|
srcDirs = ['src']
|
|
include '**/*.properties'
|
|
include '**/*.gif'
|
|
include '**/*.png'
|
|
include '**/*.pro'
|
|
}
|
|
}
|