-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
46 lines (40 loc) · 1.19 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
plugins {
id 'java-gradle-plugin'
id 'com.gradle.plugin-publish' version '1.3.0'
id 'com.diffplug.spotless' version '6.25.0'
}
version = '1.0.5'
group = 'io.github.lambdatest'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation 'com.google.code.gson:gson:2.11.0'
implementation 'org.apache.logging.log4j:log4j-api:2.24.1'
implementation 'org.apache.logging.log4j:log4j-core:2.24.1'
}
gradlePlugin {
website = 'https://www.lambdatest.com'
vcsUrl = 'https://github.com/LambdaTest/lambdatest-gradle-plugin'
plugins {
lambdatestPlugin {
id = 'io.github.lambdatest.gradle'
implementationClass = 'io.github.lambdatest.gradle.LambdaTestPlugin'
displayName = 'LambdaTest Gradle Plugin'
description = 'Runs Espresso tests on LambdaTest'
tags.set(['espresso', 'test', 'lambdatest', 'app', 'automation', 'appautomation'])
}
}
}
spotless {
java {
importOrder()
removeUnusedImports()
googleJavaFormat().aosp()
formatAnnotations()
}
}
javadoc {
options.tags = [ "implNote:a:Implementation Note:" ]
}