2013-01-16 23:06:32 +01:00
|
|
|
/**
|
2014-10-24 01:14:48 +02:00
|
|
|
* Copyright 2014 Ryszard Wiśniewski <brut.alll@gmail.com>
|
2013-01-16 23:06:32 +01:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
2021-08-24 15:31:41 +02:00
|
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
2013-01-16 23:06:32 +01:00
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
import org.apache.tools.ant.filters.*
|
|
|
|
|
2020-08-10 14:45:00 +02:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
|
2013-01-16 23:06:32 +01:00
|
|
|
processResources {
|
|
|
|
from('src/main/resources/properties') {
|
|
|
|
include '**/*.properties'
|
|
|
|
into 'properties'
|
2014-02-04 16:54:00 +01:00
|
|
|
filter(ReplaceTokens, tokens: [version: project.apktool_version, gitrev: project.hash] )
|
2021-04-16 10:22:17 +02:00
|
|
|
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
2013-01-16 23:06:32 +01:00
|
|
|
}
|
|
|
|
from('src/main/resources/') {
|
|
|
|
include '**/*.jar'
|
2021-04-16 10:22:17 +02:00
|
|
|
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
2013-01-16 23:06:32 +01:00
|
|
|
}
|
2021-04-15 19:34:36 +02:00
|
|
|
|
2013-01-16 23:06:32 +01:00
|
|
|
includeEmptyDirs = false
|
|
|
|
}
|
2014-02-04 16:54:00 +01:00
|
|
|
|
2013-01-16 23:06:32 +01:00
|
|
|
dependencies {
|
2022-11-24 12:15:41 +01:00
|
|
|
api project(':brut.j.dir')
|
|
|
|
api project(':brut.j.util')
|
|
|
|
api project(':brut.j.common')
|
2020-08-10 14:45:00 +02:00
|
|
|
|
2022-11-24 12:15:41 +01:00
|
|
|
implementation depends.baksmali
|
|
|
|
implementation depends.smali
|
|
|
|
implementation depends.snakeyaml
|
|
|
|
implementation depends.xmlpull
|
|
|
|
implementation depends.guava
|
|
|
|
implementation depends.commons_lang
|
|
|
|
implementation depends.commons_io
|
|
|
|
implementation depends.commons_text
|
2014-10-23 15:05:14 +02:00
|
|
|
|
2022-11-24 12:15:41 +01:00
|
|
|
testImplementation depends.junit
|
2020-08-10 14:45:00 +02:00
|
|
|
testImplementation depends.xmlunit
|
2021-04-15 19:34:36 +02:00
|
|
|
}
|