Skip to content

Commit e625433

Browse files
committed
fix: align module descriptions and SCM configuration
- Update parent pom description to match README - Add explicit SCM and URL configuration to all modules - Enhance module descriptions to be user-friendly and consistent - Fix Maven Central URL display for multi-module project Signed-off-by: azorpax <azorpax@gmail.com>
1 parent cdf1a21 commit e625433

3 files changed

Lines changed: 19 additions & 3 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<packaging>pom</packaging>
99

1010
<name>warmupdicator</name>
11-
<description>Warmupdicator Spring Boot Starter lets you define and run warm-up checks for HTTP endpoints, databases, or any custom resource, ensuring your app is ready for real traffic with minimal cold starts, and provides a dedicated Actuator health check for warm-up status.</description>
11+
<description>Warmupdicator Spring Boot Starter lets you define and run warm-up checks for HTTP endpoints, databases, or any custom resource, ensuring your application has fully initialized critical components and preloaded required resources before serving real traffic, and provides a dedicated Actuator health check for warm-up status.</description>
1212
<url>https://github.com/paxytools/warmupdicator-spring-boot</url>
1313

1414
<licenses>

warmupdicator-spring-boot-starter/pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,15 @@
1010

1111
<artifactId>warmupdicator-spring-boot-starter</artifactId>
1212
<name>warmupdicator-spring-boot-starter</name>
13-
<description>Spring Boot starter for the Warmupdicator library</description>
13+
<description>Auto-configuration for Warmupdicator that enables warmup monitoring in your Spring Boot application with zero setup. Just add this dependency and your app will automatically warm up critical components during startup.</description>
14+
<url>https://github.com/paxytools/warmupdicator-spring-boot</url>
15+
16+
<scm>
17+
<connection>scm:git:https://github.com/paxytools/warmupdicator-spring-boot.git</connection>
18+
<developerConnection>scm:git:ssh://git@github.com/paxytools/warmupdicator-spring-boot.git</developerConnection>
19+
<url>https://github.com/paxytools/warmupdicator-spring-boot</url>
20+
<tag>HEAD</tag>
21+
</scm>
1422

1523
<dependencies>
1624
<!-- warmupdicator-spring-boot module -->

warmupdicator-spring-boot/pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,15 @@
1010

1111
<artifactId>warmupdicator-spring-boot</artifactId>
1212
<name>warmupdicator-spring-boot</name>
13-
<description>Spring Boot integration for the Warmupdicator library</description>
13+
<description>Core library for Warmupdicator that provides warmup checks for your Spring Boot application. Define custom warmup tasks for databases, external services, and other critical components to ensure your app is ready before handling real traffic.</description>
14+
<url>https://github.com/paxytools/warmupdicator-spring-boot</url>
15+
16+
<scm>
17+
<connection>scm:git:https://github.com/paxytools/warmupdicator-spring-boot.git</connection>
18+
<developerConnection>scm:git:ssh://git@github.com/paxytools/warmupdicator-spring-boot.git</developerConnection>
19+
<url>https://github.com/paxytools/warmupdicator-spring-boot</url>
20+
<tag>HEAD</tag>
21+
</scm>
1422

1523
<dependencies>
1624
<!-- Lombok for boilerplate reduction -->

0 commit comments

Comments
 (0)