-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.gradle
37 lines (33 loc) · 1.29 KB
/
config.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
/**
* 全局版本配置
*/
ext {
project = [
groupName : "com.stevejrong",
projectName : "music-factory",
projectVersion : "2.0.11",
mainClassFullName: "com.stevejrong.music.factory.boot.MusicFactoryApplication"
]
dependencies = [
springContextVersion : '5.2.2.RELEASE',
springTestVersion : '5.2.2.RELEASE',
jAudioTaggerVersion : '3.0.1',
ffmpegVersion : '0.6.2',
imageioJpegVersion : '3.7.0',
thumbnailatorVersion : '0.4.16',
jnaVersion : '5.10.0',
okHttpVersion : '3.10.0',
gsonVersion : '1.7',
guavaVersion : '28.2-jre',
commonsLang3Version : '3.9',
commonsCollections4Version: '4.4',
commonsCodecVersion : '1.15',
dozerVersion : '5.5.1',
snakeyamlVersion : '1.28',
slf4jApiVersion : '2.0.0-alpha5',
logbackCoreVersion : '1.2.7',
logbackClassicVersion : '1.3.0-alpha10',
junitVersion : '4.12',
hamcrestCoreVersion : '1.3'
]
}