-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
53 lines (43 loc) · 1.03 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
plugins {
id 'java'
id 'application'
}
group 'org.csc207project'
version '0.0.1'
repositories {
mavenCentral()
}
dependencies {
// Ably API
implementation 'io.ably:ably-java:1.2.0'
testImplementation group: 'org.slf4j', name: 'slf4j-simple', version: '2.0.9'
// Google Maps API
implementation 'com.google.maps:google-maps-services:2.2.0'
implementation 'org.slf4j:slf4j-simple:1.7.25'
// JUnit
testImplementation 'junit:junit:4.13'
// Json processing
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
// swing map viewer
implementation group: 'org.jxmapviewer', name: 'jxmapviewer2', version: '2.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1'
}
sourceSets {
main {
java {
srcDirs = ['src/main']
}
}
test {
java {
srcDirs = ["src/test"]
}
}
}
application {
mainClass = 'app.Main'
}
jar {
archiveBaseName = 'scoops_ahoy'
archiveVersion = '0.0.1'
}