Added gradle build file

This commit is contained in:
Georgy Litvinov 2020-07-01 17:06:58 +02:00
parent 98fc5dab6f
commit 8acf77c143

14
build.gradle Normal file
View file

@ -0,0 +1,14 @@
task oxt(type: Zip) {
from './'
include '*'
include '*/*'
include '*/*/*'
include '*/*/*/*'
exclude 'cleanAndValidate.oxt'
exclude '.*'
exclude 'build.gradle'
exclude 'translations.ods'
exclude 'cleanandvalidate.update.xml'
exclude 'cleanAndValidate.ox2'
archiveName 'cleanAndValidate.oxt'
}