Skip to content

Commit 704e9a2

Browse files
author
brunnert
committed
Merge branch 'main' into ferdinand-gutzy-add-data-to-spans
2 parents a2cd5e0 + 0bf09b9 commit 704e9a2

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "maven" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "weekly"

extension/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
<plugin>
114114
<groupId>org.apache.maven.plugins</groupId>
115115
<artifactId>maven-compiler-plugin</artifactId>
116-
<version>3.11.0</version>
116+
<version>3.13.0</version>
117117
<configuration>
118118
<source>8</source>
119119
<target>8</target>
@@ -134,7 +134,7 @@
134134
<plugin>
135135
<groupId>org.apache.maven.plugins</groupId>
136136
<artifactId>maven-surefire-plugin</artifactId>
137-
<version>3.1.2</version>
137+
<version>3.3.1</version>
138138
<configuration>
139139
<excludes>
140140
<exclude>**/*IntegrationTest.java</exclude>

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>io.opentelemetry.instrumentation</groupId>
3939
<artifactId>opentelemetry-instrumentation-annotations</artifactId>
40-
<version>2.0.0</version>
40+
<version>2.6.0</version>
4141
</dependency>
4242

4343
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine -->
@@ -59,7 +59,7 @@
5959
<dependency>
6060
<groupId>org.slf4j</groupId>
6161
<artifactId>slf4j-simple</artifactId>
62-
<version>2.0.12</version>
62+
<version>2.0.13</version>
6363
<scope>test</scope>
6464
</dependency>
6565
<!-- https://mvnrepository.com/artifact/io.opentelemetry/opentelemetry-exporters-logging -->
@@ -85,7 +85,7 @@
8585
<plugins>
8686
<plugin>
8787
<artifactId>maven-compiler-plugin</artifactId>
88-
<version>3.11.0</version>
88+
<version>3.13.0</version>
8989
<configuration>
9090
<source>1.8</source>
9191
<target>1.8</target>
@@ -98,7 +98,7 @@
9898
<plugin>
9999
<groupId>org.apache.maven.plugins</groupId>
100100
<artifactId>maven-checkstyle-plugin</artifactId>
101-
<version>3.3.0</version>
101+
<version>3.4.0</version>
102102
</plugin>
103103

104104
<plugin>
@@ -110,7 +110,7 @@
110110
<plugin>
111111
<groupId>org.apache.maven.plugins</groupId>
112112
<artifactId>maven-checkstyle-plugin</artifactId>
113-
<version>3.3.0</version>
113+
<version>3.4.0</version>
114114
<configuration>
115115
<configLocation>etc/checkstyle-configuration.xml</configLocation>
116116
<consoleOutput>true</consoleOutput>

0 commit comments

Comments
 (0)