-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (41 loc) · 1.37 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
plugins {
id 'org.springframework.boot' version '2.4.1'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
id 'war'
}
group = 'com.fs.crm'
version = '0.0.1-SNAPSHOT'
description = """crm"""
sourceCompatibility = 1.8
targetCompatibility = 1.8
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-validation'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version:'2.3.3.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-activemq', version:'2.3.3.RELEASE'
compile group: 'javax.jms', name: 'javax.jms-api', version:'2.0.1'
compile group: 'com.ibm.mq', name: 'mq-jms-spring-boot-starter', version:'2.4.2'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.12.0'
implementation 'org.flywaydb:flyway-core'
implementation 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
bootJar {
mainClass = 'com.fs.crm.CrmApplication'
}
test {
useJUnitPlatform()
}