This repository has been archived by the owner on Aug 6, 2021. It is now read-only.
generated from wuespace/telestion-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
59 lines (50 loc) · 1.62 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
plugins {
id 'java'
id 'maven-publish'
}
group 'de.wuespace.telestion.extension.sample'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/wuespace/telestion-core/")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
publishing {
repositories {
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/wuespace/telestion-extension-sample"
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
publications {
gpr(MavenPublication) {
groupId = 'de.wuespace.telestion.extension.sample'
artifactId = 'telestion-extension-sample'
version = System.getenv("VERSION")
from components.java
}
}
}
dependencies {
implementation 'de.wuespace.telestion:telestion-api:0.1.2'
implementation 'de.wuespace.telestion:telestion-services:0.1.2'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.32'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.5'
implementation group: 'net.logstash.logback', name: 'logstash-logback-encoder', version: '6.6'
implementation "io.vertx:vertx-core:4.1.2"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.2'
}
test {
useJUnitPlatform()
}