-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
73 lines (66 loc) · 2.56 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
implementation 'org.aspectj:aspectjweaver:1.8.10'
implementation 'org.seleniumhq.selenium:selenium-java:3.141.59'
implementation 'org.testng:testng:7.1.0'
implementation 'io.github.bonigarcia:webdrivermanager:3.7.1'
implementation 'commons-io:commons-io:2.11.0'
implementation 'io.qameta.allure:allure-testng:2.13.3'
implementation 'com.fasterxml.jackson.core:jackson-core:2.11.1'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.11.1'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.11.1'
implementation 'io.qameta.allure:allure-cucumber4-jvm:2.13.3'
implementation 'com.github.stephenc.monte:monte-screen-recorder:0.7.7.0'
implementation 'io.cucumber:cucumber-java8:6.6.0'
implementation 'io.cucumber:cucumber-java:6.6.0'
implementation 'io.cucumber:cucumber-core:6.6.0'
implementation 'net.masterthought:cucumber-reporting:5.3.1'
implementation 'io.cucumber:cucumber-testng:6.6.0'
implementation 'net.lightbody.bmp:browsermob-core:2.1.5'
implementation 'org.aut.tm:ATUTestRecorder:2.1'
implementation 'org.json:json:20200518'
implementation 'com.jayway.jsonpath:json-path:2.4.0'
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
implementation 'com.codoid.products:fillo:1.21'
implementation 'org.apache.logging.log4j:log4j-core:2.17.0'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation 'org.apache.httpcomponents:httpmime:4.5.3'
implementation 'com.sun.jersey:jersey-client:1.19'
implementation 'net.continuumsecurity:zap-java-api:2.4.2'
implementation 'org.owasp:zaproxy-client-api:2.4-6'
implementation 'edu.umass.cs.benchlab:harlib:1.1.1'
implementation 'org.zaproxy:zap-clientapi:1.8.0'
implementation 'org.zaproxy:zap:2.9.0'
implementation 'org.codehaus.plexus:plexus-utils:3.0.8'
testImplementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.13.2'
testImplementation 'io.rest-assured:rest-assured:4.3.3'
}
group = 'org.example'
version = '1.0-SNAPSHOT'
description = 'Healthi-POM-Framework'
java.sourceCompatibility = JavaVersion.VERSION_1_8
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
tasks.named('test') {
useTestNG()
}