-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuild.gradle
More file actions
50 lines (44 loc) · 1.24 KB
/
build.gradle
File metadata and controls
50 lines (44 loc) · 1.24 KB
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
/*
* This file was generated by the Gradle 'init' task.
*/
buildscript {
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.34.0'
}
}
plugins {
id 'java'
id 'maven-publish'
id 'signing'
id 'com.vanniktech.maven.publish' version '0.34.0'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
mavenCentral ()
}
group = 'com.testsigma'
version = '1.2.26_cloud'
description = 'Testsigma Java SDK'
java.sourceCompatibility = JavaVersion.VERSION_11
dependencies {
implementation 'org.projectlombok:lombok:1.18.20'
implementation 'org.seleniumhq.selenium:selenium-api:4.33.0'
implementation 'org.seleniumhq.selenium:selenium-java:4.33.0'
implementation 'io.appium:java-client:9.4.0'
implementation 'org.apache.commons:commons-lang3:3.18.0'
implementation 'org.testng:testng:7.10.2'
implementation 'org.json:json:20231013'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.0'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
implementation 'org.apache.httpcomponents:httpclient:4.5.14'
}
tasks.named('test') {
useTestNG()
}