From f2fe9a42569a61dd53c268dfbf6ad92cf8c52fba Mon Sep 17 00:00:00 2001 From: Forbiddem Date: Sun, 17 May 2026 15:28:48 +0000 Subject: [PATCH] Clean up stale CI badge and redundant auto-config The CircleCI badge in README.adoc has been broken since CI moved to GitHub Actions (#19) and the CircleCI config was removed (#20). Other apple/pkl-* repos do not carry a CI status badge in their README, so drop it rather than substitute a new one. PklAutoConfiguration is already declared in META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports since #16, which makes the matching EnableAutoConfiguration entry in spring.factories redundant. The PropertySourceLoader entry is preserved because Spring Boot still loads PropertySourceLoader implementations exclusively from spring.factories. --- README.adoc | 2 +- src/main/resources/META-INF/spring.factories | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.adoc b/README.adoc index 6bdfad8..6262d02 100644 --- a/README.adoc +++ b/README.adoc @@ -1,4 +1,4 @@ -= Pkl Spring Boot Integration image:https://circleci.com/gh/apple/pkl-spring.svg?style=svg["pkl-spring", link="https://circleci.com/gh/apple/pkl-spring"] += Pkl Spring Boot Integration :uri-docs: https://pkl-lang.org/spring/current :uri-installation: {uri-docs}/installation :uri-usage: {uri-docs}/usage diff --git a/src/main/resources/META-INF/spring.factories b/src/main/resources/META-INF/spring.factories index cb6d3f3..965ee4b 100644 --- a/src/main/resources/META-INF/spring.factories +++ b/src/main/resources/META-INF/spring.factories @@ -1,2 +1 @@ org.springframework.boot.env.PropertySourceLoader=org.pkl.spring.boot.PklPropertySourceLoader -org.springframework.boot.autoconfigure.EnableAutoConfiguration=org.pkl.spring.boot.PklAutoConfiguration