-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
65 lines (51 loc) · 1.57 KB
/
build.gradle
File metadata and controls
65 lines (51 loc) · 1.57 KB
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
buildscript {
ext {
springBootVersion = '2.1.1.RELEASE'
}
repositories {
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
group = 'com.devadmin'
version = '0.0.1.SNAPSHOT'
repositories {
mavenCentral()
mavenLocal()
maven { url "https://jitpack.io" }
}
ext {
slackIntegrationVersion = '0.0.1.SNAPSHOT'
jiraIntegrationVersion = '0.0.1.SNAPSHOT'
dozerVersion = '5.5.1'
lombokVersion = '1.18.4'
slf4jVersion = '1.7.25'
logbackVersion = '1.2.3'
junitVersion = '4.12'
}
dependencies {
compile("me.ramswaroop.jbot:jbot:4.1.2-rc.1")
implementation 'com.github.devadmin-com:jira-client:master-SNAPSHOT'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter'
compileOnly 'org.projectlombok:lombok:1.18.6'
annotationProcessor 'org.projectlombok:lombok:1.18.6'
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
compile "org.slf4j:slf4j-api:${slf4jVersion}"
compile "ch.qos.logback:logback-core:${logbackVersion}"
compile "ch.qos.logback:logback-classic:${logbackVersion}"
testCompile "junit:junit:${junitVersion}"
testCompile 'org.springframework.boot:spring-boot-starter-test'
}