forked from WeDo-Technologies/js-android-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
74 lines (62 loc) · 2.38 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
* Copyright © 2016 TIBCO Software,Inc.All rights reserved.
* http://community.jaspersoft.com/project/jaspermobile-android
*
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,
* the following license terms apply:
*
* This program is part of TIBCO Jaspersoft Mobile for Android.
*
* TIBCO Jaspersoft Mobile is free software:you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation,either version 3of the License,or
* (at your option)any later version.
*
* TIBCO Jaspersoft Mobile is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY;without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with TIBCO Jaspersoft Mobile for Android.If not,see
* <http://www.gnu.org/licenses/lgpl>.
*/
// Top-level build file where you can add configuration options common to all sub-projects/modules.
configure(allprojects) { project ->
buildscript {
repositories {
jcenter()
mavenLocal()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
}
}
subprojects {
group = 'com.jaspersoft.android'
description = 'js-android-jaspermobile'
ext.androidToolsBuildGradle = '2.1.0'
ext.androidApt = '1.8'
ext.androidBuildToolsVersion = '23.0.3';
ext.androidMinSdkVersion = 15;
ext.androidCompileSdkVersion = 23;
ext.androidTargetSdkVersion = 23;
ext.jasperSdkVersion = '1.11';
ext.daggerVersion = '2.1';
ext.autoValue = '1.2';
ext.fabricToolsVersion = '1.21.2';
ext.dexCountToolsVersion = '0.3.0';
ext.jasperSdkVersion = '2.5';
repositories {
// Local .m2 repo, usually living at home dir
mavenLocal()
// Remote official superset of mavenCentral()
jcenter()
// Our remote maven repo
maven { url 'http://jaspersoft.artifactoryonline.com/jaspersoft/jaspersoft-mobile-sdk' }
maven { url "file://${System.getenv("ANDROID_HOME")}/extras/android/m2repository" }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}