Compare commits
4 commits
2640a90442
...
f80db90c4b
Author | SHA1 | Date | |
---|---|---|---|
f80db90c4b | |||
f44b11cc49 | |||
2cde77e8ac | |||
cd97b69aed |
3 changed files with 103 additions and 14 deletions
|
@ -1,3 +1,9 @@
|
|||
## [0.1.13]
|
||||
### 🐛 Fixes
|
||||
- [2cde77e](https://w9r.dev/pom/spring-boot-starter/commits/2cde77e) update dependencies
|
||||
- [cd97b69](https://w9r.dev/pom/spring-boot-starter/commits/cd97b69) **deps**: update all non-major dependencies
|
||||
- [b00c7fc](https://w9r.dev/pom/spring-boot-starter/commits/b00c7fc) **deps**: update all non-major dependencies
|
||||
|
||||
## [0.1.12]
|
||||
### 🧰 Tasks
|
||||
- [fc209e8](https://w9r.dev/pom/spring-boot-starter/commits/fc209e8) **deps**: update all non-major dependencies
|
||||
|
|
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) [year] [fullname]
|
||||
Copyright (c) 2025 Oliver Weyhmüller
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
109
pom.xml
109
pom.xml
|
@ -4,7 +4,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>dev.w9r.pom</groupId>
|
||||
<artifactId>spring-boot-starter</artifactId>
|
||||
<version>0.1.12</version>
|
||||
<version>0.1.13</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>spring-boot-starter</name>
|
||||
<description>A POM consisting of general dependencies and build settings</description>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<licenses>
|
||||
<license>
|
||||
<name>MIT</name>
|
||||
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
||||
<url>https://spdx.org/licenses/MIT.html</url>
|
||||
</license>
|
||||
</licenses>
|
||||
<developers>
|
||||
|
@ -40,20 +40,21 @@
|
|||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<resource.delimiter>@</resource.delimiter>
|
||||
<maven.compiler.release>${java.version}</maven.compiler.release>
|
||||
<spring-boot.run.main-class>${start-class}</spring-boot.run.main-class>
|
||||
|
||||
<spring-boot.version>3.4.2</spring-boot.version>
|
||||
<spring-boot.version>3.4.3</spring-boot.version>
|
||||
<spring-cloud.version>2024.0.0</spring-cloud.version>
|
||||
|
||||
<plugin.maven-compiler.version>3.13.0</plugin.maven-compiler.version>
|
||||
<plugin.maven-deploy.version>3.1.3</plugin.maven-deploy.version>
|
||||
<plugin.maven-deploy.version>3.1.4</plugin.maven-deploy.version>
|
||||
<cyclonedx-maven-plugin.version>2.9.1</cyclonedx-maven-plugin.version>
|
||||
<plugin.sonar.version>5.0.0.4389</plugin.sonar.version>
|
||||
<plugin.jacoco.version>0.8.12</plugin.jacoco.version>
|
||||
<checkstyle.version>10.21.2</checkstyle.version>
|
||||
<checkstyle.version>10.21.4</checkstyle.version>
|
||||
<plugin.checkstyle.version>3.6.0</plugin.checkstyle.version>
|
||||
<plugin.dependency-check.version>12.0.2</plugin.dependency-check.version>
|
||||
<plugin.spotbugs.version>4.8.6.6</plugin.spotbugs.version>
|
||||
<spotbugs.version>4.9.0</spotbugs.version>
|
||||
<plugin.dependency-check.version>12.1.0</plugin.dependency-check.version>
|
||||
<plugin.spotbugs.version>4.9.2.0</plugin.spotbugs.version>
|
||||
<spotbugs.version>4.9.2</spotbugs.version>
|
||||
<findsecbugs.version>1.13.0</findsecbugs.version>
|
||||
</properties>
|
||||
<distributionManagement>
|
||||
|
@ -110,12 +111,21 @@
|
|||
</dependencies>
|
||||
</dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<!--<dependency>
|
||||
<groupId>dev.w9r.pom</groupId>
|
||||
<artifactId>dependencies</artifactId>
|
||||
<version>0.1.13</version>
|
||||
<type>pom</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.cloud</groupId>
|
||||
<artifactId>spring-cloud-dependencies</artifactId>
|
||||
<type>pom</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-dependencies</artifactId>
|
||||
<type>pom</type>
|
||||
</dependency>-->
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
|
@ -185,7 +195,8 @@
|
|||
</excludes>
|
||||
</resource>
|
||||
</resources>
|
||||
<plugins>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
|
@ -219,7 +230,7 @@
|
|||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.13.0</version>
|
||||
<version>3.14.0</version>
|
||||
<configuration>
|
||||
<parameters>true</parameters>
|
||||
</configuration>
|
||||
|
@ -281,7 +292,7 @@
|
|||
<plugin>
|
||||
<groupId>org.graalvm.buildtools</groupId>
|
||||
<artifactId>native-maven-plugin</artifactId>
|
||||
<version>0.10.4</version>
|
||||
<version>0.10.5</version>
|
||||
<extensions>true</extensions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
|
@ -494,6 +505,78 @@
|
|||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.jetbrains.kotlin</groupId>
|
||||
<artifactId>kotlin-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-failsafe-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-war-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.graalvm.buildtools</groupId>
|
||||
<artifactId>native-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>io.github.git-commit-id</groupId>
|
||||
<artifactId>git-commit-id-maven-plugin</artifactId>
|
||||
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.cyclonedx</groupId>
|
||||
<artifactId>cyclonedx-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>com.github.spotbugs</groupId>
|
||||
<artifactId>spotbugs-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.owasp</groupId>
|
||||
<artifactId>dependency-check-maven</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.jacoco</groupId>
|
||||
<artifactId>jacoco-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.sonarsource.scanner.maven</groupId>
|
||||
<artifactId>sonar-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-shade-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<profiles>
|
||||
|
|
Loading…
Add table
Reference in a new issue