-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (38 loc) · 961 Bytes
/
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
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.erizo.gradle:jcstress-gradle-plugin:0.8.1-SNAPSHOT"
}
}
plugins {
id "com.github.johnrengelman.shadow" version "4.0.3"
}
group 'org.example'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: "com.github.erizo.gradle.jcstress"
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile "org.slf4j:slf4j-api:${slf4jVersion}"
compile "org.openjdk.jcstress:jcstress-core:${jcstressVersion}"
testCompile 'junit:junit:4.12'
testCompile "org.slf4j:slf4j-simple:${slf4jVersion}"
}
sourceSets {
jcstress {
java {
srcDirs = ['src/jcstress/java']
}
}
}
jcstress {
jcstressDependency "org.openjdk.jcstress:jcstress-core:${jcstressVersion}"
}