-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (38 loc) · 1.08 KB
/
build.gradle
File metadata and controls
44 lines (38 loc) · 1.08 KB
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
plugins {
id 'java'
id "org.sonarqube" version "3.3"
}
group 'nl.ou.testar'
version '1.1.0'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.junit.jupiter:junit-jupiter:5.7.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
implementation 'com.orientechnologies:orientdb-client:3.0.34'
implementation 'com.google.code.gson:gson:2.8.8'
implementation 'org.mockito:mockito-all:1.10.19'
implementation 'com.google.code.gson:gson:2.8.8'
implementation 'com.google.guava:guava:26.0-jre'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.8'
}
test {
useJUnitPlatform()
}
jar {
manifest {
attributes 'Main-Class': 'Program'
}
from {
configurations.runtimeClasspath.collect {it.isDirectory() ? it: zipTree(it)}
}
}
sonarqube {
properties {
property "sonar.projectKey", "model-difference"
property "sonar.organization", "rn-study"
property "sonar.host.url", "https://sonarcloud.io"
}
}