-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (30 loc) · 917 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
plugins {
id 'java'
id 'application'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'it.unimi.dsi:webgraph:3.6.10'
implementation 'it.unimi.dsi:dsiutils:2.7.0'
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
implementation 'org.openjdk.jmh:jmh-core:1.35'
annotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess:1.35'
testImplementation "org.openjdk.jmh:jmh-core:1.35"
testAnnotationProcessor "org.openjdk.jmh:jmh-generator-annprocess:1.35"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}
mainClassName = 'it.tomfran.thesis.graph.AnsGraphMain'
jar {
manifest {
attributes 'Main-Class': 'it.tomfran.thesis.graph.AnsGraphMain'
}
}
test {
useJUnitPlatform()
maxHeapSize '10g'
}