-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (27 loc) · 879 Bytes
/
build.gradle
File metadata and controls
32 lines (27 loc) · 879 Bytes
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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.5.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
sourceCompatibility = 11
targetCompatibility = 11
bootJar {
baseName = 'apache-camel-http-sampler'
version = '1.0-SNAPSHOT'
}
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.apache.camel', name: 'camel-spring-boot-starter', version:'2.22.1'
compile group: 'org.apache.camel', name: 'camel-stream-starter', version:'2.22.1'
compile group: 'org.apache.camel', name: 'camel-http4', version:'2.22.1'
compile group: 'javax.xml.bind', name: 'jaxb-api', version:'2.2.11'
compile group: 'javax.activation', name: 'activation', version:'1.1.1'
}