xref: /aosp_15_r20/external/jarjar/build.gradle (revision 2ad288d840b55199d0b3f2e4799894000ba5aca9)
1*2ad288d8SAndroid Build Coastguard Worker/*
2*2ad288d8SAndroid Build Coastguard Worker * Copyright (C) 2014 The Android Open Source Project
3*2ad288d8SAndroid Build Coastguard Worker *
4*2ad288d8SAndroid Build Coastguard Worker * Licensed under the Apache License, Version 2.0 (the "License");
5*2ad288d8SAndroid Build Coastguard Worker * you may not use this file except in compliance with the License.
6*2ad288d8SAndroid Build Coastguard Worker * You may obtain a copy of the License at
7*2ad288d8SAndroid Build Coastguard Worker *
8*2ad288d8SAndroid Build Coastguard Worker *      http://www.apache.org/licenses/LICENSE-2.0
9*2ad288d8SAndroid Build Coastguard Worker *
10*2ad288d8SAndroid Build Coastguard Worker * Unless required by applicable law or agreed to in writing, software
11*2ad288d8SAndroid Build Coastguard Worker * distributed under the License is distributed on an "AS IS" BASIS,
12*2ad288d8SAndroid Build Coastguard Worker * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*2ad288d8SAndroid Build Coastguard Worker * See the License for the specific language governing permissions and
14*2ad288d8SAndroid Build Coastguard Worker * limitations under the License.
15*2ad288d8SAndroid Build Coastguard Worker */
16*2ad288d8SAndroid Build Coastguard Worker
17*2ad288d8SAndroid Build Coastguard Workerapply plugin: 'java'
18*2ad288d8SAndroid Build Coastguard Worker
19*2ad288d8SAndroid Build Coastguard WorkersourceSets {
20*2ad288d8SAndroid Build Coastguard Worker	main {
21*2ad288d8SAndroid Build Coastguard Worker		java.srcDirs = ['src/main']
22*2ad288d8SAndroid Build Coastguard Worker		resources.srcDirs = ['res']
23*2ad288d8SAndroid Build Coastguard Worker	}
24*2ad288d8SAndroid Build Coastguard Worker}
25*2ad288d8SAndroid Build Coastguard Workerjar.manifest.from file('manifest.txt')
26*2ad288d8SAndroid Build Coastguard Worker
27*2ad288d8SAndroid Build Coastguard Workerdependencies {
28*2ad288d8SAndroid Build Coastguard Worker	compile files('lib/apache-ant-1.9.4.jar')
29*2ad288d8SAndroid Build Coastguard Worker	compile files('lib/asm-4.0.jar')
30*2ad288d8SAndroid Build Coastguard Worker	compile files('lib/asm-commons-4.0.jar')
31*2ad288d8SAndroid Build Coastguard Worker	compile files('lib/maven-plugin-api.jar')
32*2ad288d8SAndroid Build Coastguard Worker}
33