-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
73 lines (57 loc) · 2.09 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java project to get you started.
* For more details take a look at the Java Quickstart chapter in the Gradle
* User Manual available at https://docs.gradle.org/5.3/userguide/tutorial_java_projects.html
*/
plugins {
// Apply the java plugin to add support for Java
id 'java'
// Apply the application plugin to add support for building an application
id 'application'
// Apply the groovy plugin to facilitate test case writing
id 'groovy'
}
apply from: "$rootDir/perfTest.gradle"
repositories {
// Use jcenter for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}
run{
standardInput = System.in
standardOutput = System.out
}
jar {
manifest {
attributes "Main-Class": "edu.search.app.search.Search"
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}
dependencies {
// This dependency is found on compile classpath of this component and consumers.
compile 'org.apache.commons:commons-collections4:4.0'
compile 'com.fasterxml.jackson.core:jackson-databind:2.0.1'
// Use JUnit test framework
testCompile 'junit:junit:4.12'
//Groovy and Spock
testCompile 'org.codehaus.groovy:groovy-all:2.4.5'
testCompile 'org.spockframework:spock-core:1.1-groovy-2.4'
testCompile group: 'org.apache.commons', name: 'commons-lang3', version: '3.0'
//spring boot
compile("org.springframework.boot:spring-boot-starter-web:2.1.4.RELEASE")
testCompile("org.springframework.boot:spring-boot-starter-test:2.1.4.RELEASE")
}
task(runStatisticsComputer, dependsOn: 'classes', type: JavaExec) {
main = 'edu.search.app.statistics.StatisticsComputer'
classpath = sourceSets.main.runtimeClasspath
}
task(runService, dependsOn: 'classes', type: JavaExec) {
main = 'edu.search.rs.SearchRestService'
classpath = sourceSets.main.runtimeClasspath
}
// Define the main class for the application
mainClassName = 'edu.search.app.search.Search'