forked from openMF/ph-ee-operations-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
83 lines (72 loc) · 2.72 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
74
75
76
77
78
79
80
81
82
83
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
id 'eclipse'
id 'org.springframework.boot' version '2.1.9.RELEASE'
}
apply plugin: "io.spring.dependency-management"
repositories {
maven {
url = uri('https://repo.maven.apache.org/maven2')
}
maven {
url = uri('https://jfrog.sandbox.fynarfin.io/artifactory/fyn-libs-snapshot')
}
}
ext {
springBootVersion = '2.1.9.RELEASE'
}
dependencies {
implementation 'org.springframework.security:spring-security-jwt:1.1.0.RELEASE'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-cache'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.security:spring-security-crypto'
implementation 'org.springframework.security.oauth:spring-security-oauth2:2.4.1.RELEASE'
implementation 'org.json:json:20190722'
implementation 'org.eclipse.persistence:org.eclipse.persistence.jpa:2.7.6'
implementation 'org.hibernate:hibernate-jpamodelgen:5.4.17.Final'
annotationProcessor 'org.hibernate:hibernate-jpamodelgen:5.4.17.Final'
implementation 'joda-time:joda-time:2.10.6'
implementation 'org.apache.commons:commons-lang3:3.3.2'
implementation 'com.zaxxer:HikariCP:3.4.5'
implementation 'mysql:mysql-connector-java:8.0.20'
implementation 'com.googlecode.flyway:flyway-core:2.1.1'
implementation 'net.sf.ehcache:ehcache:2.10.6'
testImplementation 'junit:junit:4.11'
implementation 'net.sf.supercsv:super-csv:2.4.0'
implementation 'com.amazonaws:aws-java-sdk:1.11.486'
implementation 'com.azure:azure-storage-blob:12.12.0'
implementation 'commons-io:commons-io:2.4'
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
implementation "org.springdoc:springdoc-openapi-ui:1.6.11"
implementation 'org.mifos:ph-ee-connector-common:1.4.1-SNAPSHOT'
implementation "org.springframework.boot:spring-boot-starter:$springBootVersion"
implementation "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
implementation "org.springframework.boot:spring-boot-starter-actuator:$springBootVersion"
}
group = 'org.apache.fineract'
version = '1.0.0-SNAPSHOT'
sourceCompatibility = '11'
sourceSets {
generated {
java {
srcDirs = ['src/generated/java']
}
}
}
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
options.annotationProcessorGeneratedSourcesDirectory = file("src/generated/java")
}