generated from wuespace/telestion-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
60 lines (49 loc) · 1.46 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
plugins {
id 'java'
id 'maven-publish'
}
group 'de.wuespace.telestion.extension'
repositories {
mavenCentral()
}
java {
withJavadocJar()
withSourcesJar()
}
javadoc {
options.addBooleanOption('html5', true)
}
publishing {
repositories {
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/wuespace/telestion-extension-mongodb"
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
publications {
gpr(MavenPublication) {
groupId = 'de.wuespace.telestion.extension'
artifactId = 'mongodb'
version = System.getenv("VERSION")
from components.java
}
}
}
dependencies {
implementation 'de.wuespace.telestion:telestion-api:0.9.0'
implementation 'de.wuespace.telestion:telestion-services:0.9.0'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.6'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.4.5'
implementation group: 'net.logstash.logback', name: 'logstash-logback-encoder', version: '7.2'
implementation "io.vertx:vertx-core:4.3.7"
implementation "io.vertx:vertx-mongo-client:4.3.7"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.2'
}
test {
useJUnitPlatform()
}