-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
45 lines (37 loc) · 858 Bytes
/
Copy pathbuild.gradle
File metadata and controls
45 lines (37 loc) · 858 Bytes
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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.erizo.gradle:jcstress-gradle-plugin:0.8.1'
}
}
plugins {
id 'java'
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'jcstress'
group 'highPerformance'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
jcenter()
mavenCentral()
maven {
url "https://dl.bintray.com/devexperts/Maven/"
}
}
ext {
jcstressVersion = '0.5'
lincheckVersion = '2.0'
}
dependencies {
compile group: 'org.jetbrains', name: 'annotations', version: '17.0.0'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile "org.openjdk.jcstress:jcstress-core:0.4"
compile 'com.devexperts.lincheck:lincheck:2.0'
}
jcstress {
jcstressDependency "org.openjdk.jcstress:jcstress-core:0.4"
}