-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (28 loc) · 1.06 KB
/
build.gradle
File metadata and controls
37 lines (28 loc) · 1.06 KB
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
plugins {
id 'application'
id 'com.gradleup.shadow' version '8.3.6'
}
application {
// Define the main class for the application.
mainClass = 'org.senegas.trafficlight.TrafficLightApp'
}
group = 'org.senegas'
version = '2.1.0'
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5
implementation group: 'org.apache.httpcomponents.client5', name: 'httpclient5', version: '5.4.1'
// https://mvnrepository.com/artifact/com.fazecast/jSerialComm
implementation group: 'com.fazecast', name: 'jSerialComm', version: '2.11.0'
// https://mvnrepository.com/artifact/com.formdev/flatlaf
implementation group: 'com.formdev', name: 'flatlaf', version: '3.5.2'
// https://mvnrepository.com/artifact/com.miglayout/miglayout-swing
implementation group: 'com.miglayout', name: 'miglayout-swing', version: '11.1'
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}