forked from anandaanv/zerodha-algo-trading
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
57 lines (49 loc) · 1.9 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
plugins {
id 'org.springframework.boot' version '2.3.7.RELEASE'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
id "com.github.johnrengelman.processes" version "0.5.0"
id "org.springdoc.openapi-gradle-plugin" version "1.3.1"
}
group = 'com.dtech'
version = '0.0.1-SNAPSHOT'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenLocal()
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok'
compile 'javax.cache:cache-api'
compile 'org.ehcache:ehcache'
compile 'com.zerodhatech.kiteconnect:kiteconnect:3.1.2'
compile group: 'com.google.guava', name: 'guava', version: '29.0-jre'
compile 'com.dheemantech.ta4j:ta4j-core:0.14'
compile 'com.dheemantech.ta4j:ta4j-examples:0.14'
testCompile 'com.h2database:h2'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
runtimeOnly 'mysql:mysql-connector-java'
annotationProcessor 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
compile group: 'de.codecentric', name: 'spring-boot-admin-starter-server', version: '2.3.0'
compile group: 'org.reflections', name: 'reflections', version: '0.9.10'
compile "org.springdoc:springdoc-openapi-ui:1.5.2"
//mapstruct
implementation 'org.mapstruct:mapstruct:1.4.1.Final'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.1.Final'
}
test {
useJUnitPlatform()
testLogging.events ("STANDARD_ERROR")
testLogging.events ("STANDARD_OUT")
}