-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (34 loc) · 1.18 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
plugins {
id 'org.springframework.boot' version '2.3.1.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
id 'war'
}
jar {
manifest {
attributes 'Main-Class': 'console.ConsoleExercices'
}
}
group = 'be.challenge'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
jcenter()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.apache.camel.springboot:camel-spring-boot-starter:3.4.0'
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
compile group: 'org.apache.camel', name: 'camel-core', version: '3.4.0'
compile group: 'org.apache.camel', name: 'camel-servlet', version: '3.4.0'
compile group: 'org.apache.camel', name: 'camel-jackson', version: '3.4.0'
compile group: 'org.apache.camel', name: 'camel-swagger-java', version: '3.4.0'
testCompile group: 'org.apache.camel', name: 'camel-test', version: '3.4.0'
compile group: 'javax.ws.rs', name: 'javax.ws.rs-api', version: '2.0'
}
test {
useJUnit()
}