Skip to content

Commit b91cd49

Browse files
committed
Project created
0 parents  commit b91cd49

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

build.gradle

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
plugins {
2+
id 'groovy'
3+
id 'java'
4+
}
5+
6+
group 'lv.id.jc'
7+
version '1.0'
8+
9+
repositories {
10+
mavenCentral()
11+
}
12+
13+
dependencies {
14+
testImplementation 'org.spockframework:spock-core:2.0-groovy-3.0'
15+
testImplementation 'org.codehaus.groovy:groovy-all:3.0.8'
16+
}
17+
18+
test {
19+
useJUnitPlatform()
20+
}

settings.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rootProject.name = 'search-algorithm'
2+

0 commit comments

Comments
 (0)