forked from openMF/ph-ee-connector-mpesa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
57 lines (50 loc) · 1.76 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
/*
* 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'
}
repositories {
maven {
url = uri('https://repo.maven.apache.org/maven2')
}
maven {
url = uri('https://fynarfin.jfrog.io/artifactory/fyn-libs-snapshot-local/')
}
jcenter()
}
dependencies {
implementation 'io.netty:netty-bom:4.1.72.Final'
implementation 'org.apache.camel.springboot:camel-spring-boot-starter:3.12.0'
implementation('org.springframework.boot:spring-boot-starter-web:2.6.2')
implementation('org.springframework.boot:spring-boot-starter-actuator:2.6.2')
implementation 'org.apache.camel:camel-endpointdsl:3.12.0'
implementation 'org.apache.camel:camel-jetty:3.12.0'
implementation 'org.apache.camel:camel-undertow:3.12.0'
implementation 'org.apache.camel:camel-http:3.12.0'
implementation 'org.apache.camel.springboot:camel-jackson-starter:3.12.0'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.1'
implementation 'org.json:json:20211205'
implementation 'io.camunda:zeebe-client-java:1.3.1'
implementation 'com.auth0:java-jwt:3.18.3'
implementation 'org.mifos:ph-ee-connector-common:1.0.0-SNAPSHOT'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.6.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}
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'
}