ci: update generated copier template from example#82
Merged
paul58914080 merged 1 commit intomainfrom Nov 26, 2025
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This automated PR attempts to update the generated copier template by migrating to Spring Boot 4.0.0 and reorganizing package imports. However, this PR contains critical issues that will prevent the project from building or running.
Key Issues:
- Attempts to use Spring Boot 4.0.0, which does not exist (latest is 3.x series as of January 2025)
- Introduces non-existent packages and artifacts (
spring-boot-resttestclient,spring-boot-starter-data-jpa-test, etc.) - Changes imports to invalid package locations that don't exist in any Spring Boot release
Reviewed changes
Copilot reviewed 10 out of 11 changed files in this pull request and generated 14 comments.
Show a summary per file
| File | Description |
|---|---|
{{app_name}}/pom.xml.jinja |
Updates dependency versions to non-existent versions (Spring Boot 4.0.0, springdoc 3.0.0, pre-liquibase 2.0.0); adds Lombok annotation processor configuration; removes h2 and snakeyaml version properties |
{{app_name}}/rest-adapter/pom.xml.jinja |
Adds non-existent spring-boot-resttestclient dependency |
{{app_name}}/rest-adapter/src/test/java/{{package_name}}/rest/{{domain_capitalized}}ResourceTest.java.jinja |
Changes TestRestTemplate imports to non-existent package; adds non-existent @AutoConfigureTestRestTemplate annotation; removes valid DataSourceAutoConfiguration exclusion |
{{app_name}}/jpa-adapter/pom.xml.jinja |
Changes liquibase dependency structure; adds non-existent spring-boot-starter-data-jpa-test dependency |
{{app_name}}/jpa-adapter/src/main/java/{{package_name}}/repository/config/JpaAdapterConfig.java.jinja |
Changes EntityScan import to non-existent package |
{{app_name}}/jpa-adapter/src/test/java/{{package_name}}/repository/{{domain_capitalized}}JpaTest.java.jinja |
Changes DataJpaTest import to non-existent package |
{{app_name}}/jpa-adapter/src/test/java/{{package_name}}/repository/{{domain_capitalized}}JpaAdapterApplication.java.jinja |
Removes PreLiquibaseAutoConfiguration import and usage |
{{app_name}}/jpa-adapter/src/main/resources/preliquibase/h2.sql.jinja |
Adds new H2 pre-liquibase SQL script with schema creation statements |
{{app_name}}/acceptance-test/pom.xml.jinja |
Adds non-existent spring-boot-resttestclient dependency |
{{app_name}}/acceptance-test/src/test/java/{{package_name}}/cucumber/{{domain_capitalized}}StepDef.java.jinja |
Changes TestRestTemplate import to non-existent package |
{{app_name}}/acceptance-test/src/test/java/{{package_name}}/cucumber/SpringCucumberTestConfig.java.jinja |
Adds non-existent @AutoConfigureTestRestTemplate annotation and import |
You can also share your feedback on Copilot code review for a chance to win a $100 gift card. Take the survey.
...st-adapter/src/test/java/{{package_name}}/rest/{{domain_capitalized}}ResourceTest.java.jinja
Show resolved
Hide resolved
...st-adapter/src/test/java/{{package_name}}/rest/{{domain_capitalized}}ResourceTest.java.jinja
Show resolved
Hide resolved
...a-adapter/src/test/java/{{package_name}}/repository/{{domain_capitalized}}JpaTest.java.jinja
Show resolved
Hide resolved
.../acceptance-test/src/test/java/{{package_name}}/cucumber/SpringCucumberTestConfig.java.jinja
Show resolved
Hide resolved
...test/java/{{package_name}}/repository/{{domain_capitalized}}JpaAdapterApplication.java.jinja
Show resolved
Hide resolved
...e}}/jpa-adapter/src/main/java/{{package_name}}/repository/config/JpaAdapterConfig.java.jinja
Show resolved
Hide resolved
.../acceptance-test/src/test/java/{{package_name}}/cucumber/SpringCucumberTestConfig.java.jinja
Show resolved
Hide resolved
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Automated PR created by workflow.