Files
Claude c418589251 Add custom-starter module: a Boot 4 auto-configuration starter with conditions, metadata and runner tests
Two-jar starter (autoconfigure + starter), a demo app, and 17 captured transcripts
covering AutoConfiguration.imports, @ConditionalOn*, ordering, optional Jackson 3
integration, configuration metadata and the Boot 4 module split.

Co-Authored-By: Claude Sonnet 5 <[email protected]>
Claude-Session: https://claude.ai/code/session_01Uu7q8vPeREyT4218EJPzz1
2026-09-24 06:53:07 +00:00

31 lines
1008 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>4.1.1</version>
<relativePath/>
</parent>
<groupId>com.ankurm.masker</groupId>
<artifactId>masker-parent</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>masker-parent</name>
<description>A custom Spring Boot 4 starter: auto-configuration, @Conditional, properties metadata and tests</description>
<properties>
<java.version>25</java.version>
</properties>
<modules>
<module>masker-spring-boot-autoconfigure</module>
<module>masker-spring-boot-starter</module>
<module>masker-demo</module>
</modules>
</project>