forked from osmlab/atlas-checks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gradle
24 lines (23 loc) · 924 Bytes
/
dependencies.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
project.ext.versions = [
checkstyle: '8.18',
jacoco: '0.8.3',
atlas: '6.2.4',
commons:'2.6',
atlas_generator: '5.0.3',
atlas_checkstyle: '5.6.9',
postgis: '2.1.7.2',
postgres: '42.2.6',
spring: '4.2.2.RELEASE',
mockito: '2.23.0'
]
project.ext.packages = [
atlas: "org.openstreetmap.atlas:atlas:${versions.atlas}",
commons: "commons-lang:commons-lang:${versions.commons}",
atlas_generator: "org.openstreetmap.atlas:atlas-generator:${versions.atlas_generator}",
checkstyle: "com.puppycrawl.tools:checkstyle:${versions.checkstyle}",
atlas_checkstyle: "org.openstreetmap.atlas:atlas:${versions.atlas_checkstyle}",
postgis: "net.postgis:postgis-jdbc:${versions.postgis}",
postgres: "org.postgresql:postgresql:${versions.postgres}",
spring: "org.springframework:spring-jdbc:${versions.spring}",
mockito: "org.mockito:mockito-core:${versions.mockito}"
]