-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
45 lines (37 loc) · 1.09 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
plugins {
id 'application'
id "org.sonarqube" version "3.3"
}
group 'org.example'
version '1.0.0'
repositories {
mavenCentral()
}
dependencies {
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.13'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.12.2'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.12.2'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.12.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
jar {
manifest {
attributes(
"Main-Class": "Main"
)
}
}
application {
mainClass = 'Main'
}
test {
useJUnitPlatform()
}
sonarqube {
properties {
property "sonar.projectKey", "ce-itcr_CE5508-laboratorio-star-wars-app"
property "sonar.organization", "ce-itcr"
property "sonar.host.url", "https://sonarcloud.io"
}
}