-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
48 lines (42 loc) · 1.15 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
/*
* This file was generated by the Gradle 'init' task.
*/
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.20.0'
}
}
plugins {
id 'java'
id 'maven-publish'
id 'signing'
id 'com.vanniktech.maven.publish' version '0.20.0'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
mavenCentral ()
}
group = 'com.testsigma'
version = '1.2.1'
description = 'Testsigma Java SDK'
java.sourceCompatibility = JavaVersion.VERSION_11
dependencies {
implementation 'org.projectlombok:lombok:1.18.24'
implementation 'org.seleniumhq.selenium:selenium-api:4.8.2'
implementation 'io.appium:java-client:8.3.0'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.testng:testng:7.7.1'
implementation 'org.seleniumhq.selenium:selenium-java:4.8.2'
implementation 'org.json:json:20160810'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.0'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
}
tasks.named('test') {
useTestNG()
}