forked from openMF/ph-ee-importer-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (40 loc) · 1.1 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
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
id 'org.springframework.boot' version '2.1.9.RELEASE'
id 'eclipse'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2')
}
maven {
url = uri('https://fynarfin.jfrog.io/artifactory/fyn-libs-snapshot-local/')
}
}
dependencies {
implementation 'io.zeebe:zeebe-elasticsearch-exporter:0.24.6'
implementation 'org.elasticsearch.client:elasticsearch-rest-high-level-client:7.6.0'
implementation 'org.apache.camel.springboot:camel-spring-boot-starter:3.4.0'
implementation 'org.apache.kafka:kafka-streams:2.3.1'
implementation 'org.springframework.kafka:spring-kafka:2.3.5.RELEASE'
implementation 'org.json:json:20190722'
testImplementation 'junit:junit:4.13'
}
group = 'org.mifos'
version = '1.0.0-SNAPSHOT'
sourceCompatibility = '1.8'
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}