-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (38 loc) · 1.43 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
plugins {
id 'org.springframework.boot' version '2.7.4'
id 'io.spring.dependency-management' version '1.0.14.RELEASE'
id 'java'
}
group = 'de.otto'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
maven {url "https://jitpack.io"}
flatDir {
dirs 'libs'
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
//razorshark lib
//implementation files('libs/springwolf-sqs-plugin-0.4.0-all.jar')
// Provides the UI - optional (recommended)
// https://mvnrepository.com/artifact/io.github.springwolf/springwolf-core
// https://mvnrepository.com/artifact/io.github.springwolf/springwolf-core
implementation 'io.github.springwolf:springwolf-core:0.7.0'
implementation 'io.github.springwolf:springwolf-ui:0.5.0'
//TODO: These dependencies need to be shipped by the plugin
// https://mvnrepository.com/artifact/org.springframework.amqp/spring-amqp
//implementation 'org.springframework.amqp:spring-amqp:2.4.7'
// https://mvnrepository.com/artifact/org.springframework.amqp/spring-rabbit
//implementation 'org.springframework.amqp:spring-rabbit'
//swagger
implementation 'io.swagger.core.v3:swagger-core:2.2.0'
//aws messageing
//implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter-aws-messaging', version: '2.2.6.RELEASE'
}
tasks.named('test') {
useJUnitPlatform()
}