forked from osmlab/atlas-checks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.gradle
37 lines (36 loc) · 1.45 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
project.ext.versions = [
checkstyle: '8.18',
jacoco: '0.8.3',
atlas: '6.5.7',
commons:'2.6',
atlas_generator: '5.3.6',
atlas_checkstyle: '5.6.9',
postgis: '2.1.7.2',
postgres: '42.2.6',
spring: '4.2.2.RELEASE',
mockito: '2.23.0',
junit4: '4.13.1',
junit: '5.7.0',
sqlite: '3.32.3.2',
log4j: '1.2.17'
]
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}",
junit: [
junit4: "junit:junit:${versions.junit4}",
vintage: "org.junit.vintage:junit-vintage-engine:${versions.junit}",
api: "org.junit.jupiter:junit-jupiter-api:${versions.junit}",
engine: "org.junit.jupiter:junit-jupiter-engine:${versions.junit}",
params: "org.junit.jupiter:junit-jupiter-params:${versions.junit}",
],
sqlite: "org.xerial:sqlite-jdbc:${versions.sqlite}",
log4j: "log4j:log4j:${versions.log4j}"
]