Skip to content

Commit 4e0a4bf

Browse files
gaulclaude
andcommitted
Keep the Checkstyle configuration out of the jar
src/main/resources is packaged, so the Checkstyle configuration and the copyright header shipped to everyone who depends on httpbin. Neither is read at runtime, unlike the logback.xml moved in the previous commit, but neither belongs in the artifact either. Move both to src/main/config, as S3Proxy has them, leaving src/main/resources holding only what the endpoints actually serve. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01M5JVWJN7L3NWmcsYvjeCfc
1 parent 77b99d4 commit 4e0a4bf

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@
142142
</execution>
143143
</executions>
144144
<configuration>
145-
<configLocation>src/main/resources/checkstyle.xml</configLocation>
146-
<headerLocation>src/main/resources/copyright_header.txt</headerLocation>
145+
<configLocation>src/main/config/checkstyle.xml</configLocation>
146+
<headerLocation>src/main/config/copyright_header.txt</headerLocation>
147147
<includeTestSourceDirectory>true</includeTestSourceDirectory>
148148
<violationSeverity>warning</violationSeverity>
149149
</configuration>

0 commit comments

Comments
 (0)