summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKLint/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/MapboxGLAndroidSDKLint/build.gradle')
-rw-r--r--platform/android/MapboxGLAndroidSDKLint/build.gradle37
1 files changed, 37 insertions, 0 deletions
diff --git a/platform/android/MapboxGLAndroidSDKLint/build.gradle b/platform/android/MapboxGLAndroidSDKLint/build.gradle
new file mode 100644
index 0000000000..855e1bc7ca
--- /dev/null
+++ b/platform/android/MapboxGLAndroidSDKLint/build.gradle
@@ -0,0 +1,37 @@
+apply plugin: 'java-library'
+apply plugin: 'kotlin'
+
+dependencies {
+ implementation fileTree(dir: 'libs', include: ['*.jar'])
+ compileOnly dependenciesList.kotlinLib
+
+ compileOnly dependenciesList.lint
+ compileOnly dependenciesList.lintApi
+ compileOnly dependenciesList.lintChecks
+ compileOnly dependenciesList.supportAnnotations
+
+ testImplementation dependenciesList.junit
+ testImplementation dependenciesList.robolectric
+ testImplementation dependenciesList.lintTests
+}
+
+sourceCompatibility = "1.8"
+targetCompatibility = "1.8"
+
+compileKotlin {
+ kotlinOptions {
+ jvmTarget = "1.8"
+ }
+}
+
+compileTestKotlin {
+ kotlinOptions {
+ jvmTarget = "1.8"
+ }
+}
+
+jar {
+ manifest {
+ attributes("Lint-Registry-v2": "com.mapbox.mapboxsdk.lint.MapboxIssueRegistry")
+ }
+}