-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
48 lines (37 loc) · 1.25 KB
/
build.gradle
File metadata and controls
48 lines (37 loc) · 1.25 KB
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
46
47
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Groovy project to get you started.
* For more details take a look at the Groovy Quickstart chapter in the Gradle
* user guide available at https://docs.gradle.org/5.1.1/userguide/tutorial_groovy_projects.html
*/
plugins {
id 'groovy'
id 'application'
id 'war'
}
application {
mainClassName = 'linketinder.App'
}
run {
standardInput = System.in
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.codehaus.groovy:groovy-all:3.0.18'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.8.2'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '4.11.0'
implementation group: 'org.postgresql', name: 'postgresql', version: '42.6.0'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.9'
compileOnly group: 'javax.servlet', name: 'javax.servlet-api', version: '4.0.1'
implementation group: 'javax.annotation', name: 'javax.annotation-api', version: '1.3.2'
}
tasks.named('test', Test) {
useJUnitPlatform()
testLogging {
events "passed"
}
}