-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
48 lines (40 loc) · 968 Bytes
/
build.gradle
File metadata and controls
48 lines (40 loc) · 968 Bytes
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
plugins {
id 'java'
id 'maven-publish'
}
group = 'dev.team.hytalib'
version = '0.0.4'
sourceCompatibility = 21
targetCompatibility = 21
repositories {
mavenCentral()
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}
dependencies {
// Connection Pool
implementation 'com.zaxxer:HikariCP:5.1.0'
// JDBC Drivers
implementation 'com.mysql:mysql-connector-j:8.3.0'
implementation 'com.h2database:h2:2.2.224'
implementation 'org.xerial:sqlite-jdbc:3.45.1.0'
implementation 'org.apache.commons:commons-lang3:3.18.0'
// Redis
implementation 'redis.clients:jedis:5.1.2'
// json & yml
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'org.yaml:snakeyaml:2.2'
}
jar {
manifest {
attributes(
'Implementation-Title': 'Hytalib',
'Implementation-Version': version
)
}
}