-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (28 loc) · 850 Bytes
/
build.gradle
File metadata and controls
38 lines (28 loc) · 850 Bytes
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'
id 'application'
}
group 'org.ningning.codefu'
version '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
// mavenCentral()
jcenter()
}
dependencies {
compile 'com.google.guava:guava:27.0-jre'
compile 'org.apache.commons:commons-math3:3.6.1'
//testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.3.1'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.3.1'
}
test {
useJUnitPlatform()
}
def dictPath = 'src/main/resources/german/german.dic'
task runApp(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
main = 'org.ningning.codefu.crossword_gen.Runner'
// arguments to pass to the application
args dictPath, 20, 20, 0.875, 5
}