Skip to content

Commit

Permalink
Merge pull request #15 from dm-drogeriemarkt/upgrade-dependencies
Browse files Browse the repository at this point in the history
Upgrade dependencies
  • Loading branch information
dupps authored Jan 20, 2025
2 parents e22cd4b + c66ca42 commit 03c0945
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Micrometer metrics wrapper
> [Micrometer](https://micrometer.io) wrapper to allow generic class/method level metric values
[<img src="https://opensourcelogos.aws.dmtech.cloud/dmTECH_opensource_logo.svg" height="20" width="130">](https://dmtech.de/)
[<img src="https://raw.githubusercontent.com/dm-drogeriemarkt/.github/refs/heads/main/assets/dmtech-open-source-badge.svg" height="20" width="130">](https://dmtech.de/)
[![Build Status](https://github.com/dm-drogeriemarkt/micrometer-metrics-wrapper/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/dm-drogeriemarkt/micrometer-metrics-wrapper/actions)

The micrometer-metrics-wrapper project is a [Micrometer](https://micrometer.io) wrapper to allow generic class/method level metric values.
Expand All @@ -16,22 +16,22 @@ you will get the following measurements for every ```public``` method of the ```
## Runtime Dependencies

- Java >= 21
- Spring Boot >= 3.2.1
- Spring Boot >= 3.4.1

The library was compiled against:

- Spring Boot Acutator 3.2.1
- Spring Boot Acutator 3.4.1

## Installation
```
<dependency>
<groupId>de.dm.infrastructure</groupId>
<artifactId>micrometer-metrics-wrapper</artifactId>
<version>3.0.0</version>
<version>3.1.0</version>
</dependency>
```

The library contains all required dependencies, including [spring-boot-starter-actuator](https://github.com/spring-projects/spring-boot/tree/master/spring-boot-project/spring-boot-actuator) v3.2.1.
The library contains all required dependencies, including [spring-boot-starter-actuator](https://github.com/spring-projects/spring-boot/tree/master/spring-boot-project/spring-boot-actuator) v3.4.1.

## Usage

Expand Down Expand Up @@ -101,7 +101,7 @@ For every annotated class/method the library creates the following measurements:

# License

Copyright (c) 2024 dmTECH GmbH, https://www.dmtech.de
Copyright (c) 2025 dmTECH GmbH, https://www.dmtech.de

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
32 changes: 16 additions & 16 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>de.dm.infrastructure</groupId>
<artifactId>micrometer-metrics-wrapper</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.1.0-SNAPSHOT</version>

<name>micrometer-metrics-wrapper</name>
<description>Micrometer wrapper to allow generic class level metric values</description>
Expand All @@ -22,28 +22,28 @@
<developers>
<developer>
<organization>dmTECH GmbH</organization>
<organizationUrl>https://www.dmtech.de</organizationUrl>
<name>Marcus Fessele</name>
<email>marcus.fessele@dm.de</email>
</developer>
<developer>
<organization>dmTECH GmbH</organization>
<organizationUrl>https://www.dmtech.de</organizationUrl>
<organizationUrl>https://www.dmtech.tech</organizationUrl>
<name>Dominik Johs</name>
<email>dominik.johs@dm.de</email>
</developer>
<developer>
<organization>dmTECH GmbH</organization>
<organizationUrl>https://www.dmtech.de</organizationUrl>
<organizationUrl>https://www.dmtech.tech</organizationUrl>
<name>Camillo Krause genannt Barmann</name>
<email>camillo.krause-barmann@dm.de</email>
</developer>
<developer>
<organization>dmTECH GmbH</organization>
<organizationUrl>https://www.dmtech.tech</organizationUrl>
<name>Bastian Dupps</name>
<email>bastian.dupps@dm.de</email>
</developer>
</developers>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.1</version>
<version>3.4.1</version>
<relativePath/>
</parent>

Expand All @@ -53,12 +53,12 @@

<java.version>21</java.version>

<maven-release-plugin.version>3.0.1</maven-release-plugin.version>
<maven-source-plugin.version>3.3.0</maven-source-plugin.version>
<maven-javadoc-plugin.version.version>3.6.3</maven-javadoc-plugin.version.version>
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
<maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version>
<jacoco-maven-plugin.version>0.8.11</jacoco-maven-plugin.version>
<maven-release-plugin.version>3.1.1</maven-release-plugin.version>
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
<maven-javadoc-plugin.version.version>3.11.2</maven-javadoc-plugin.version.version>
<nexus-staging-maven-plugin.version>1.7.0</nexus-staging-maven-plugin.version>
<maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version>
<jacoco-maven-plugin.version>0.8.12</jacoco-maven-plugin.version>

<sonar.coverage.exclusions>**/*App.java,**/*Properties.java</sonar.coverage.exclusions>
</properties>
Expand Down

0 comments on commit 03c0945

Please sign in to comment.