Skip to content

Commit 2c30d5c

Browse files
committed
initial
0 parents  commit 2c30d5c

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

build.gradle

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
plugins {
2+
id 'java'
3+
}
4+
5+
group 'org.example'
6+
version '1.0-SNAPSHOT'
7+
8+
repositories {
9+
mavenCentral()
10+
}
11+
12+
dependencies {
13+
implementation 'org.junit.jupiter:junit-jupiter:5.8.1'
14+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
15+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
16+
17+
18+
// https://mvnrepository.com/artifact/org.json/json
19+
implementation group: 'org.json', name: 'json', version: '20220924'
20+
21+
}
22+
23+
test {
24+
useJUnitPlatform()
25+
}

0 commit comments

Comments
 (0)