Skip to content

Commit a3fead8

Browse files
authored
Merge pull request #32 from DeyanZhelyazkov/master
Change groupid of custom metrics clients and update README
2 parents 7b64820 + 8313fd6 commit a3fead8

38 files changed

+170
-172
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ If you want to use the `custom metrics` `spring-boot client`, just define the fo
5656
``` xml
5757

5858
<dependency>
59-
<groupId>com.sap.cloud.cf.monitoring.clients</groupId>
60-
<artifactId>clients-spring-boot</artifactId>
59+
<groupId>com.sap.hcp.cf.logging</groupId>
60+
<artifactId>cf-custom-metrics-clients-spring-boot</artifactId>
6161
<version>${cf-logging-version}</version>
6262
</dependency>
6363
```
@@ -167,8 +167,8 @@ To use the clients you'd need:
167167

168168
``` xml
169169
<dependency>
170-
<groupId>com.sap.cloud.cf.monitoring.clients</groupId>
171-
<artifactId>clients-spring-boot</artifactId>
170+
<groupId>com.sap.hcp.cf.logging</groupId>
171+
<artifactId>cf-custom-metrics-clients-spring-boot</artifactId>
172172
<version>${cf-logging-version}</version>
173173
</dependency>
174174
```
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>com.sap.hcp.cf.logging</groupId>
7+
<artifactId>cf-java-monitoring-custom-metrics-clients</artifactId>
8+
<version>2.3.0</version>
9+
</parent>
10+
11+
<artifactId>cf-custom-metrics-clients-core</artifactId>
12+
<packaging>jar</packaging>
13+
<name>cf-java-monitoring-custom-metrics-clients-core</name>
14+
15+
<build>
16+
<plugins>
17+
<plugin>
18+
<groupId>org.apache.maven.plugins</groupId>
19+
<artifactId>maven-compiler-plugin</artifactId>
20+
<configuration>
21+
<source>1.7</source>
22+
<target>1.7</target>
23+
</configuration>
24+
</plugin>
25+
</plugins>
26+
</build>
27+
28+
<dependencies>
29+
<dependency>
30+
<groupId>org.apache.httpcomponents</groupId>
31+
<artifactId>httpclient</artifactId>
32+
</dependency>
33+
<dependency>
34+
<groupId>com.google.code.gson</groupId>
35+
<artifactId>gson</artifactId>
36+
</dependency>
37+
<dependency>
38+
<groupId>org.slf4j</groupId>
39+
<artifactId>slf4j-api</artifactId>
40+
<scope>provided</scope>
41+
</dependency>
42+
<!-- Test dependencies-->
43+
<dependency>
44+
<groupId>junit</groupId>
45+
<artifactId>junit</artifactId>
46+
<scope>test</scope>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.mockito</groupId>
50+
<artifactId>mockito-all</artifactId>
51+
<scope>test</scope>
52+
</dependency>
53+
</dependencies>
54+
</project>

0 commit comments

Comments
 (0)