Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,14 @@ updates:
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "maven"
directories:
- "/"
- "/mapper"
- "/starter"
schedule:
interval: "weekly"
ignore:
# Spring Boot has its own bump lane (.github/workflows/bump-spring.yml),
# which is pinned to the supported line. Leave it to that workflow.
- dependency-name: "org.springframework.boot:*"
7 changes: 0 additions & 7 deletions mapper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,6 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>build-info</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
Expand Down
12 changes: 12 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@
<maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
<jandex-maven-plugin.version>3.4.0</jandex-maven-plugin.version>
<central-publishing-maven-plugin.version>0.8.0</central-publishing-maven-plugin.version>
<!-- Keep in sync with the native-build-tools-plugin.version managed by spring-boot-dependencies:${spring-boot.version} -->
<native-maven-plugin.version>0.10.6</native-maven-plugin.version>

<spring-boot.version>3.5.16</spring-boot.version>
<skip.formatting>false</skip.formatting>
Expand Down Expand Up @@ -186,6 +188,16 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
</plugin>
<plugin>
<groupId>org.graalvm.buildtools</groupId>
<artifactId>native-maven-plugin</artifactId>
<version>${native-maven-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down