-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (29 loc) · 955 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
plugins {
id 'java'
}
jar {
manifest {
attributes 'Main-Class': 'com.kenzieacademy.eightballgirl.program2.main.Main'
}
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.jetbrains:annotations:23.1.0'
implementation 'org.jetbrains:annotations:23.1.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.0'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.14.0'
// Use JUnit test framework.
testImplementation(platform('org.junit:junit-bom:5.8.0'))
testImplementation('org.junit.jupiter:junit-jupiter')
testImplementation 'com.squareup.okhttp3:mockwebserver:4.9.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.0'
}
test {
useJUnitPlatform()
}