-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
87 lines (72 loc) · 1.82 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import java.time.Instant
plugins {
id 'java'
id 'maven-publish'
}
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
def ENV = System.getenv()
version = "${project_version}-${ENV.GITHUB_RUN_NUMBER ? 'build.' + ENV.GITHUB_RUN_NUMBER : 'local.' + Instant.now().epochSecond}"
archivesBaseName = 'webutils'
group = 'dev.latvian.apps'
compileJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
mavenCentral()
maven {
url "https://maven.latvian.dev/releases"
content {
includeGroup "dev.latvian.apps"
}
}
}
dependencies {
implementation('net.dv8tion:JDA:5.0.0-beta.21')
compileOnly('dev.latvian.apps:ansi:1.0.0-build.4')
implementation('dev.latvian.apps:tiny-java-server:1.0.0-build.18')
implementation('org.mongodb:mongodb-driver-sync:5.0.0')
// implementation('org.slf4j:slf4j-simple:2.0.5')
// implementation('com.google.guava:guava:31.1-jre') { exclude group: "com.google.code.findbugs" }
compileOnly('org.jetbrains:annotations:24.0.1')
testImplementation('dev.latvian.apps:ansi:1.0.0-build.4')
testImplementation('org.junit.jupiter:junit-jupiter-api:5.10.0')
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.10.0')
testImplementation('junit:junit:4.13.2')
}
jar {
manifest {
attributes 'Implementation-Version': archiveVersion
}
}
test {
useJUnitPlatform()
}
compileJava {
options.encoding = "UTF-8"
options.release.set(21)
}
java {
sourceCompatibility = targetCompatibility = '21'
withSourcesJar()
}
publishing {
publications {
mavenIchor(MavenPublication) {
artifactId = 'webutils'
from components.java
}
}
repositories {
if (ENV.MAVEN_TOKEN) {
maven {
url "https://maven.latvian.dev/releases"
credentials {
username = "lat"
password = "${ENV.MAVEN_TOKEN}"
}
}
}
}
}