-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
39 lines (31 loc) · 898 Bytes
/
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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.9'
}
}
plugins {
id 'java'
}
apply plugin: 'com.novoda.bintray-release'
group 'shchoi'
version '1.0.1'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
publish {
userOrg = 'seokhyoenchoi'
groupId = 'shchoi'
artifactId = 'annotation-based-mqtt-client'
publishVersion = '1.0.2'
desc = 'Java Annotation-based Mqtt Client with Spring boot and Spring Integration Mqtt'
website = 'https://github.com/SEOKHYOENCHOI/annotation-based-mqtt-client'
}
dependencies {
implementation 'org.springframework.integration:spring-integration-mqtt:5.2.3.RELEASE'
implementation 'org.springframework.boot:spring-boot-starter-web:2.2.3.RELEASE'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.2.3.RELEASE'
}