Skip to content

Commit 4161904

Browse files
committed
updating dependabot config
1 parent 35e7df3 commit 4161904

File tree

2 files changed

+27
-14
lines changed

2 files changed

+27
-14
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ updates:
1616
patterns:
1717
- "org.apache.maven.plugins:*"
1818
- "org.owasp:dependency-check-maven"
19-
- "org.sonatype.plugins:nexus-staging-maven-plugin"
19+
- "org.sonatype.central:central-publishing-maven-plugin"
20+
- "me.fabriciorby:maven-surefire-junit5-tree-reporter"
2021
- "org.codehaus.mojo:exec-maven-plugin"
2122
- "io.github.coffeelibs:jextract-maven-plugin"
2223
java-production-dependencies:
@@ -27,7 +28,8 @@ updates:
2728
- "org.mockito:*"
2829
- "org.apache.maven.plugins:*"
2930
- "org.owasp:dependency-check-maven"
30-
- "org.sonatype.plugins:nexus-staging-maven-plugin"
31+
- "org.sonatype.central:central-publishing-maven-plugin"
32+
- "me.fabriciorby:maven-surefire-junit5-tree-reporter"
3133
- "org.codehaus.mojo:exec-maven-plugin"
3234
- "io.github.coffeelibs:jextract-maven-plugin"
3335
- package-ecosystem: "github-actions"

pom.xml

Lines changed: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,22 @@
4646
<mockito.version>5.17.0</mockito.version>
4747

4848
<!-- build plugin dependencies -->
49-
<mvn-surefire.version>3.5.3</mvn-surefire.version>
49+
<mvn-clean.version>3.4.1</mvn-clean.version>
50+
<mvn-compiler.version>3.14.0</mvn-compiler.version>
51+
<mvn-dependency.version>3.8.1</mvn-dependency.version>
52+
<mvn-deploy.version>3.1.4</mvn-deploy.version>
53+
<mvn-enforcer.version>3.5.0</mvn-enforcer.version>
5054
<mvn-failsafe.version>3.5.3</mvn-failsafe.version>
55+
<mvn-javadoc.version>3.11.2</mvn-javadoc.version>
56+
<mvn-gpg.version>3.2.7</mvn-gpg.version>
57+
<mvn-resources.version>3.3.1</mvn-resources.version>
58+
<mvn-source.version>3.3.1</mvn-source.version>
59+
<mvn-surefire.version>3.5.3</mvn-surefire.version>
60+
<exec-maven.version>3.5.0</exec-maven.version>
5161
<dependency-check.version>12.1.1</dependency-check.version>
5262
<central-publishing.version>0.7.0</central-publishing.version>
5363
<jextract-maven.version>0.4.3</jextract-maven.version>
64+
<junit-tree-reporter.version>1.4.0</junit-tree-reporter.version>
5465

5566
<!-- jextract props -->
5667
<win.umHeaderPath>C:\Program Files (x86)\Windows Kits\10\Include\10.0.22621.0\um</win.umHeaderPath>
@@ -113,7 +124,7 @@
113124
<plugin>
114125
<groupId>org.apache.maven.plugins</groupId>
115126
<artifactId>maven-clean-plugin</artifactId>
116-
<version>3.4.1</version>
127+
<version>${mvn-clean.version}</version>
117128
<configuration>
118129
<filesets>
119130
<fileset>
@@ -136,7 +147,7 @@
136147
<plugin>
137148
<groupId>org.apache.maven.plugins</groupId>
138149
<artifactId>maven-compiler-plugin</artifactId>
139-
<version>3.14.0</version>
150+
<version>${mvn-compiler.version}</version>
140151
<configuration>
141152
<compilerArgs>
142153
<arg>-h</arg>
@@ -148,7 +159,7 @@
148159
<plugin>
149160
<groupId>org.apache.maven.plugins</groupId>
150161
<artifactId>maven-enforcer-plugin</artifactId>
151-
<version>3.5.0</version>
162+
<version>${mvn-enforcer.version}</version>
152163
<executions>
153164
<execution>
154165
<id>check-preconditions</id>
@@ -169,7 +180,7 @@
169180
<plugin>
170181
<groupId>org.apache.maven.plugins</groupId>
171182
<artifactId>maven-dependency-plugin</artifactId>
172-
<version>3.8.1</version>
183+
<version>${mvn-dependency.version}</version>
173184
<executions>
174185
<execution>
175186
<id>jar-paths-to-properties</id>
@@ -181,7 +192,7 @@
181192
</plugin>
182193
<plugin>
183194
<artifactId>maven-resources-plugin</artifactId>
184-
<version>3.3.1</version>
195+
<version>${mvn-resources.version}</version>
185196
<executions>
186197
<execution>
187198
<id>copy-dlls</id>
@@ -212,7 +223,7 @@
212223
<dependency>
213224
<groupId>me.fabriciorby</groupId>
214225
<artifactId>maven-surefire-junit5-tree-reporter</artifactId>
215-
<version>1.4.0</version>
226+
<version>${junit-tree-reporter.version}</version>
216227
</dependency>
217228
</dependencies>
218229
<configuration>
@@ -243,7 +254,7 @@
243254
</plugin>
244255
<plugin>
245256
<artifactId>maven-source-plugin</artifactId>
246-
<version>3.3.1</version>
257+
<version>${mvn-source.version}</version>
247258
<executions>
248259
<execution>
249260
<id>attach-sources</id>
@@ -255,7 +266,7 @@
255266
</plugin>
256267
<plugin>
257268
<artifactId>maven-javadoc-plugin</artifactId>
258-
<version>3.11.2</version>
269+
<version>${mvn-javadoc.version}</version>
259270
<executions>
260271
<execution>
261272
<id>attach-javadocs</id>
@@ -357,7 +368,7 @@
357368
<plugin>
358369
<groupId>org.codehaus.mojo</groupId>
359370
<artifactId>exec-maven-plugin</artifactId>
360-
<version>3.5.0</version>
371+
<version>${exec-maven.version}</version>
361372
<configuration>
362373
<executable>cmd</executable>
363374
<workingDirectory>${project.basedir}</workingDirectory>
@@ -404,7 +415,7 @@
404415
<plugins>
405416
<plugin>
406417
<artifactId>maven-gpg-plugin</artifactId>
407-
<version>3.2.7</version>
418+
<version>${mvn-gpg.version}</version>
408419
<executions>
409420
<execution>
410421
<id>sign-artifacts</id>
@@ -454,7 +465,7 @@
454465
<plugin>
455466
<groupId>org.apache.maven.plugins</groupId>
456467
<artifactId>maven-deploy-plugin</artifactId>
457-
<version>3.1.4</version>
468+
<version>${mvn-deploy.version}</version>
458469
</plugin>
459470
</plugins>
460471
</build>

0 commit comments

Comments
 (0)