Skip to content

Commit ac150fb

Browse files
committed
add metrics
1 parent 3302bf2 commit ac150fb

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

pom.xml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@
3636
<groupId>org.springframework.boot</groupId>
3737
<artifactId>spring-boot-actuator</artifactId>
3838
</dependency>
39+
<dependency>
40+
<groupId>io.dropwizard.metrics</groupId>
41+
<artifactId>metrics-core</artifactId>
42+
</dependency>
3943
<dependency>
4044
<groupId>org.springframework.boot</groupId>
4145
<artifactId>spring-boot-devtools</artifactId>
@@ -66,7 +70,7 @@
6670
<dependency>
6771
<groupId>io.spring.platform</groupId>
6872
<artifactId>platform-bom</artifactId>
69-
<version>1.1.4.RELEASE</version>
73+
<version>2.0.0.RELEASE</version>
7074
<type>pom</type>
7175
<scope>import</scope>
7276
</dependency>
@@ -75,6 +79,14 @@
7579

7680
<build>
7781
<plugins>
82+
<plugin>
83+
<artifactId>maven-compiler-plugin</artifactId>
84+
<version>3.3</version>
85+
<configuration>
86+
<source>1.8</source>
87+
<target>1.8</target>
88+
</configuration>
89+
</plugin>
7890
<plugin>
7991
<groupId>org.springframework.boot</groupId>
8092
<artifactId>spring-boot-maven-plugin</artifactId>

0 commit comments

Comments
 (0)