-
Notifications
You must be signed in to change notification settings - Fork 75
/
build.gradle
91 lines (79 loc) · 2.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
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
84
85
86
87
88
89
90
91
buildscript {
ext {
springBootVersion = '2.5.6'
}
repositories {
mavenCentral()
}
}
plugins {
id 'org.springframework.boot' version '2.5.6'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'idea'
id 'eclipse'
// Gradle license plugin switched to an obscure plugin
// because the popular plugin stopped working with all recent gradle versions
// https://github.com/hierynomus/license-gradle-plugin/issues/179
// id 'org.cadixdev.licenser' version '0.6.1'
}
sourceCompatibility = '11'
if (project.hasProperty('profile')
&& project.getProperty('profile') == 'deployable') {
apply from: 'profile-deployable.gradle'
} else {
apply from: 'profile-standalone.gradle'
}
repositories {
mavenCentral()
maven { url "https://repo.spring.io/libs-release" }
maven { url "https://repository.jboss.org/nexus/content/repositories/releases" }
maven { url "https://jfrog.sandbox.fynarfin.io/artifactory/fyn-libs-snapshot'"}
}
//license {
// header = project.file('./LICENSE.md')
// skipExistingHeaders = true
// exclude '**/*.html'
// exclude '**/*.mustache'
// exclude '**/package-info.java'
// exclude '**/keystore.jks'
//}
ext {
springBootVersion = '2.6.2'
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-web:2.5.5")
implementation("org.springframework.boot:spring-boot-starter-actuator:$springBootVersion")
implementation("org.springframework.boot:spring-boot-starter-data-jpa:2.5.2")
implementation("org.flywaydb:flyway-core:6.4.0")
implementation('org.apache.velocity:velocity:1.7')
implementation('com.squareup.retrofit:retrofit:1.6.1')
implementation('com.twilio.sdk:twilio:7.1.0')
implementation 'mysql:mysql-connector-java:8.0.20'
implementation('com.infobip:infobip-api-java-client:2.0.0')
implementation('com.telerivet:TelerivetAPIClient:1.7.0')
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.6.0'
implementation 'org.json:json:20210307'
implementation 'org.springframework.kafka:spring-kafka:2.7.2'
testImplementation("org.springframework.boot:spring-boot-starter-test")
implementation 'org.apache.camel.springboot:camel-jackson-starter:3.12.0'
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 'io.camunda:zeebe-client-java:8.1.4'
implementation 'org.apache.camel.springboot:camel-spring-boot-starter:3.12.0'
implementation("com.google.code.gson:gson:") {
version {
strictly("2.8.9")
}
}
configurations.all {
resolutionStrategy {
force("com.google.code.gson:gson:2.8.9")
}
}
}
wrapper {
gradleVersion = '7.3'
}