forked from anjlab/android-inapp-billing-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
29 lines (26 loc) · 718 Bytes
/
build.gradle
File metadata and controls
29 lines (26 loc) · 718 Bytes
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
classpath 'nl.javadude.gradle.plugins:license-gradle-plugin:0.7.0'
}
}
allprojects {
apply plugin: 'license'
sourceSets {
licenseSrc {
java {
srcDir 'src'
exclude 'com/anjlab/android/iab/v3/Security.java'
exclude 'com/android/vending/billing/IInAppBillingService.aidl'
}
}
}
license {
header rootProject.file('LICENSE')
strictCheck true
}
}