-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
61 lines (50 loc) · 1.52 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
buildscript {
ext {
springBootVersion = '2.0.0.BUILD-SNAPSHOT'
}
}
apply plugin: 'maven'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'findbugs'
/*
tasks.withType(FindBugs) {
reports {
xml.enabled false
html.enabled true
html.stylesheet resources.text.fromFile('config/xsl/findbugs-custom.xsl')
}
}
*/
group = 'work.assisjrs.seleniumtestcase'
version = '0.0.1-SNAPSHOT'
description = 'test case para integrar selenium, junit e springboot.'
sourceCompatibility = 1.8
uploadArchives {
repositories {
mavenDeployer {
repository(url: mavenLocal().url)
}
}
}
jar { baseName = 'selenium-test-case' }
repositories {
jcenter()
mavenLocal()
maven { url "http://repo1.maven.org/maven2/" }
maven { url "https://plugins.gradle.org/m2/" }
mavenCentral()
maven { url "https://mvnrepository.com/" }
maven { url "http://repository.primefaces.org" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots"}
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-data-jpa:${springBootVersion}")
compile("org.springframework.boot:spring-boot-starter-test:${springBootVersion}")
compile("org.springframework:spring-context:4.3.7.RELEASE")
compile ('com.github.springtestdbunit:spring-test-dbunit:1.3.0')
compile ('org.dbunit:dbunit:2.5.2')
compile ('org.seleniumhq.selenium:selenium-java:2.53.1')
}