Project

General

Profile

« Previous | Next » 

Revision 56601

Adding metrics with micrometer

View differences:

pom.xml
35 35
            <url>http://maven.research-infrastructures.eu/nexus/content/repositories/typesafe</url>
36 36
        </repository>
37 37
    </repositories>
38

  
38 39
	<dependencies>
39 40
		<dependency>
40 41
			<groupId>junit</groupId>
......
175 176
			<artifactId>commons-lang3</artifactId>
176 177
			<version>3.5</version>
177 178
		</dependency>
178
	</dependencies>
179 179

  
180
		<dependency>
181
			<groupId>io.prometheus</groupId>
182
			<artifactId>simpleclient</artifactId>
183
			<version>0.6.0</version>
184
		</dependency>
185

  
186

  
187
		<dependency>
188
			<groupId>io.prometheus</groupId>
189
			<artifactId>simpleclient_servlet</artifactId>
190
			<version>0.6.0</version>
191
		</dependency>
192

  
193
		<dependency>
194
			<groupId>io.prometheus</groupId>
195
			<artifactId>simpleclient_hotspot</artifactId>
196
			<version>0.6.0</version>
197
		</dependency>
198

  
199
		<!-- https://mvnrepository.com/artifact/io.micrometer/micrometer-registry-prometheus -->
200
		<dependency>
201
			<groupId>io.micrometer</groupId>
202
			<artifactId>micrometer-registry-prometheus</artifactId>
203
			<version>1.2.0</version>
204
		</dependency>
205

  
206
		<!-- https://mvnrepository.com/artifact/io.micrometer/micrometer-spring-legacy -->
207
		<dependency>
208
			<groupId>io.micrometer</groupId>
209
			<artifactId>micrometer-spring-legacy</artifactId>
210
			<version>1.2.0</version>
211
		</dependency>
212

  
213

  
214
		<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjrt -->
215
		<!-- AspectJ -->
216
		<dependency>
217
			<groupId>org.aspectj</groupId>
218
			<artifactId>aspectjrt</artifactId>
219
			<version>1.9.4</version>
220
		</dependency>
221
		<dependency>
222
			<groupId>org.aspectj</groupId>
223
			<artifactId>aspectjweaver</artifactId>
224
			<version>1.9.4</version>
225
		</dependency>
226

  
227
        <!-- https://mvnrepository.com/artifact/org.apache.maven/maven-model -->
228
        <dependency>
229
            <groupId>org.apache.maven</groupId>
230
            <artifactId>maven-model</artifactId>
231
            <version>3.3.9</version>
232
        </dependency>
233

  
234

  
235

  
236
    </dependencies>
237

  
180 238
	<build>
239

  
240
		<resources>
241
			<resource>
242
				<directory>src/main/resources</directory>
243
				<filtering>true</filtering>
244
			</resource>
245
		</resources>
246

  
247

  
181 248
		<plugins>
182 249
			<plugin>
183 250
				<artifactId>maven-assembly-plugin</artifactId>

Also available in: Unified diff