-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
48 lines (42 loc) · 1.2 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.25.3'
}
}
plugins {
id 'java'
id 'maven-publish'
id 'signing'
id 'com.vanniktech.maven.publish' version '0.25.3'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
mavenCentral ()
}
dependencies {
implementation 'org.projectlombok:lombok:1.18.20'
implementation 'org.seleniumhq.selenium:selenium-api:4.14.1'
implementation 'io.appium:java-client:9.0.0'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.apache.maven.plugins:maven-toolchains-plugin:3.0.0'
implementation 'org.testng:testng:7.4.0'
implementation 'org.seleniumhq.selenium:selenium-java:4.14.1'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.0'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
}
group = 'com.testsigma'
version = '1.2.14_cloud'
description = 'testsigma-addon-archetype'
java.sourceCompatibility = JavaVersion.VERSION_11
tasks.named('test') {
useTestNG()
}