forked from openMF/ph-ee-connector-mojaloop-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
79 lines (70 loc) · 2.41 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
/*
* This file was generated by the Gradle 'init' task.
*
* This project uses @Incubating APIs which are subject to change.
*/
plugins {
id 'java'
id 'maven-publish'
id 'org.springframework.boot' version '2.7.3'
}
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
maven {
url = uri('https://jfrog.sandbox.fynarfin.io/artifactory/fyn-libs-snapshot')
}
mavenCentral()
}
ext {
camelVersion = '3.18.1'
zeebClientVersion = '8.1.23'
springBootVersion = '2.7.3'
}
configurations.all {
resolutionStrategy {
force 'com.fasterxml.jackson.core:jackson-databind:2.4.6'
}
}
dependencies {
implementation 'org.mifos:ph-ee-connector-common:1.2.2-SNAPSHOT'
implementation 'org.mifos:interop-ilp-conditions:1.7.1-SNAPSHOT'
implementation "org.apache.camel.springboot:camel-spring-boot-starter:$camelVersion"
implementation "org.apache.camel:camel-undertow:$camelVersion"
implementation 'org.apache.camel.springboot:camel-jackson-starter:3.16.0'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.7.9'
implementation "org.apache.camel:camel-http:$camelVersion"
implementation "org.apache.camel:camel-endpointdsl:$camelVersion"
implementation "org.apache.camel:camel-jetty:$camelVersion"
implementation("io.camunda:zeebe-client-java:$zeebClientVersion")
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
implementation 'org.json:json:20210307'
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
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.mifos'
version = '1.0.0-SNAPSHOT'
description = 'ph-ee-connector-mojaloop-java'
java.sourceCompatibility = "17"
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
test {
useJUnitPlatform()
}