-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (37 loc) · 2.34 KB
/
build.gradle
File metadata and controls
44 lines (37 loc) · 2.34 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
38
39
40
41
42
43
44
/*
*
* ████████╗██████╗ █████╗ ██╗██╗ ██████╗ ██████╗ ███╗ ███╗██████╗ █████╗ ███████╗███████╗
* ╚══██╔══╝██╔══██╗██╔══██╗██║██║ ██╔════╝██╔═══██╗████╗ ████║██╔══██╗██╔══██╗██╔════╝██╔════╝
* ██║ ██████╔╝███████║██║██║ ██║ ██║ ██║██╔████╔██║██████╔╝███████║███████╗███████╗
* ██║ ██╔══██╗██╔══██║██║██║ ██║ ██║ ██║██║╚██╔╝██║██╔═══╝ ██╔══██║╚════██║╚════██║
* ██║ ██║ ██║██║ ██║██║███████╗╚██████╗╚██████╔╝██║ ╚═╝ ██║██║ ██║ ██║███████║███████║
* ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝╚══════╝╚══════╝
*
* Copyright (c) 2025.
*/
plugins {
id 'java'
id("com.github.gmazzo.buildconfig") version "5.6.5"
}
group = 'space.itoncek.trailcompass'
// todo)) Update version when changing the protocol!
version = "v0.0.9.8"
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.11.4')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation("org.apache.commons:commons-lang3:3.17.0")
implementation 'commons-io:commons-io:2.19.0'
implementation 'org.apache.httpcomponents.client5:httpclient5:5.4.4'
}
buildConfig {
className("BuildMeta")
useJavaOutput()
buildConfigField(String, "APP_VERSION", project.version)
buildConfigField(long, 'BUILD_TIME', System.currentTimeMillis())
}
test {
useJUnitPlatform()
}