File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change 18
18
19
19
This is a starter for spring boot application witch catch alerts from [ Prometheus Alertmanager] ( https://prometheus.io/docs/alerting/alertmanager/ ) .
20
20
21
- The starter is available at: ` ... `
21
+ The starter is available at ` https://repo1.maven.org/maven2/ ` repository.
22
22
23
- Using gradle: ` ... `
23
+ Using gradle:
24
+
25
+ repositories {
26
+ maven {url "https://repo1.maven.org/maven2/"}
27
+ }
28
+ dependencies {
29
+ implementation 'com.github.mikesafonov:spring-boot-starter-prometheus-alerts:1.0.0'
30
+ }
24
31
25
32
The only thing you need to do after adding the dependency is to create a bean with implementation of ` NotificationService ` interface:
26
33
@@ -43,7 +50,7 @@ The following properties can be configured:
43
50
44
51
You can build application using following command:
45
52
46
- ./gradlew clean build
53
+ ./gradlew clean build -x signArchives
47
54
48
55
#### Requirements:
49
56
You can’t perform that action at this time.
0 commit comments