-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
89 lines (67 loc) · 2.14 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
apply plugin: 'java'
apply plugin: 'checkstyle'
apply plugin: 'application'
buildscript {
repositories {
maven {url "https://maven.eveoh.nl/content/repositories/releases"}
maven {url "https://plugins.gradle.org/m2/"}
}
dependencies {
classpath "gradle.plugin.aspectj:gradle-aspectj:0.1.6"
}
}
project.ext {
aspectjVersion = "1.8.2"
}
apply plugin: 'aspectj.gradle'
version = '1.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
mainClassName='org.iobserve.selenium.WorkloadGenerationMain'
// In this section you declare where to find the dependencies of your project
repositories {
// Use jcenter for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
configurations {
ajc
aspects
aspectCompile
compile{
extendsFrom aspects
}
}
dependencies {
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
// implementation 'com.google.guava:guava:20.0'
// Use JUnit test framework
compile 'junit:junit:4.12'
// JCommander, command line arguments
compile "com.beust:jcommander:1.71"
// Selenium
compile 'org.seleniumhq.selenium:selenium-java:3.12.0'
compile 'org.seleniumhq.selenium:htmlunit-driver:2.35.1'
// monitoring
ajc "org.aspectj:aspectjtools:1.8.2"
compile "org.aspectj:aspectjrt:1.8.2"
compile "org.aspectj:aspectjweaver:1.8.2" // for our custom AspectJ weaver (class: AspectJLoader)
compile 'net.kieker-monitoring:kieker:1.14-SNAPSHOT'
// logging
compile 'org.slf4j:slf4j-api:1.7.25'
compile 'org.slf4j:slf4j-log4j12:1.7.25'
// reflection
compile 'org.reflections:reflections:0.9.11'
// jackson/yaml
compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.3.0'
compile 'com.fasterxml.jackson.core:jackson-databind:2.2.3'
}
checkstyle {
toolVersion = 8.8
ignoreFailures = true
showViolations = false
int maxWarnings = 0
configFile = rootProject.file('iobserve-checkstyle-rules.xml')
configDir = file("${rootDir}")
}