mirror of
https://github.com/Guardsquare/proguard.git
synced 2026-03-13 09:50:34 +08:00
28 lines
555 B
Groovy
28 lines
555 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'maven-publish'
|
|
}
|
|
|
|
sourceSets.main {
|
|
java {
|
|
srcDirs = ['src']
|
|
}
|
|
resources {
|
|
srcDirs = ['src']
|
|
include '**/*.properties'
|
|
include '**/*.gif'
|
|
include '**/*.png'
|
|
include '**/*.pro'
|
|
}
|
|
}
|
|
|
|
afterEvaluate {
|
|
publishing {
|
|
publications.getByName(project.name) {
|
|
pom {
|
|
description = 'Java annotations to configure ProGuard, the free shrinker, optimizer, obfuscator, and preverifier for Java bytecode'
|
|
}
|
|
}
|
|
}
|
|
}
|