-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathdependencies.gradle
More file actions
25 lines (22 loc) · 943 Bytes
/
dependencies.gradle
File metadata and controls
25 lines (22 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
ext {
// -- PLUGINS
springBootVersion = "2.5.5"
springDependencyManagementVersion = "1.0.11.RELEASE"
....
//-- DEPENDENCIES
....
springFoxBootVersion = "3.0.0"
hibernateVersion = "5.4.31.Final"
c3p0Version = "0.9.5.5"
postgresVersion = "42.2.10"
....
supportDependencies = [
springfox_boot_starter : "io.springfox:springfox-boot-starter:$springFoxBootVersion",
hibernate_entitymanager : "org.hibernate:hibernate-entitymanager:$hibernateVersion",
hibernate_core : "org.hibernate:hibernate-core:$hibernateVersion",
c3p0 : "com.mchange:c3p0:$c3p0Version"
hibernate_java8 : "org.hibernate:hibernate-java8:$hibernateVersion",
postgresql : "org.postgresql:postgresql:$postgresVersion",
....
]
}