-
Notifications
You must be signed in to change notification settings - Fork 93
/
build.gradle.kts
62 lines (55 loc) · 1.89 KB
/
build.gradle.kts
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
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
java
`maven-publish`
}
repositories {
mavenLocal()
maven {
url = uri("https://repo.maven.apache.org/maven2/")
}
}
dependencies {
implementation("com.google.code.gson:gson:2.8.5")
implementation("org.testng:testng:6.14.3")
implementation("org.jsoup:jsoup:1.11.3")
implementation("us.codecraft:webmagic-core:0.7.3")
implementation("us.codecraft:webmagic-extension:0.7.3")
implementation("commons-io:commons-io:2.7")
implementation("net.sourceforge.htmlunit:htmlunit:2.37.0")
implementation("org.dom4j:dom4j:2.1.3")
implementation("mysql:mysql-connector-java:8.0.16")
implementation("org.apache.poi:poi:4.0.1")
implementation("com.google.inject:guice:4.1.0")
implementation("org.apache.commons:commons-lang3:3.7")
implementation("javax.mail:javax.mail-api:1.6.0")
implementation("org.apache.logging.log4j:log4j-core:2.14.0")
implementation("org.apache.logging.log4j:log4j-api:2.14.0")
implementation("org.seleniumhq.selenium:selenium-server:3.14.0")
implementation("io.rest-assured:xml-path:3.1.1")
implementation("com.google.guava:guava:23.0")
implementation("org.apache.velocity:velocity:1.7")
implementation("org.jacoco:jacoco-maven-plugin:0.8.6")
implementation("org.apache.pdfbox:pdfbox:2.0.15")
implementation("javax.mail:mail:1.4.7")
implementation("org.apache.commons:commons-csv:1.5")
testImplementation("io.rest-assured:rest-assured:3.1.1")
testImplementation("org.uncommons:reportng:1.1.4")
}
group = "com.dbyl"
version = "1.4.2"
description = "framework"
java.sourceCompatibility = JavaVersion.VERSION_1_8
publishing {
publications.create<MavenPublication>("maven") {
from(components["java"])
}
}
tasks.withType<JavaCompile>() {
options.encoding = "UTF-8"
}
tasks.named<Test>("test") {
useTestNG()
}