-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix compile errors and contextLoads failing
- reorder annotations in entity. New Order block of lombok annotations -> Block of jpa.persistence annotations above class - add @EqualsAndHashCode(callSuper = true) for all entities fixes compile errors and possible feature issues because super is not called - remove some comments in entities - remove direct assignments to private variables fixes compile error, probably not needed as well and @builder would ignore them that way as well - remove @import(TestcontainersConfiguration.class) in all integration tests, since redundant - make @SpringBootTest to use random Port in Sj2324SeedprojectApplicationTests - move postgresContainer bean from TestMainApplication to TestContainerConfiguration - make main in TestMainApplication use TestContainerConfiguration - remove on spring-boot-starter-thymeleaf as dependency, since it was listed twice in pom.xml - bump spring-boot-starter-parent to version 3.2.3 from 3.2.4 solving a compile error related to repackage not supporting class file major version 66 - make postgresql from testcontainers be in runtime scope fixes not being able to verify package with maven, since driver could not be found fixes #12 Signed-off-by: Aleksandar Zivkovic <[email protected]>
- Loading branch information
1 parent
b789c84
commit 9f3f46a
Showing
18 changed files
with
74 additions
and
103 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,9 +15,9 @@ | |
|
||
// implemented by MM | ||
@Data | ||
@Builder | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
@Builder | ||
|
||
|
||
@Embeddable | ||
|
4 changes: 4 additions & 0 deletions
4
src/main/java/at/spengergasse/sj2324seedproject/domain/Customer.java
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
10 changes: 7 additions & 3 deletions
10
src/test/java/at/spengergasse/sj2324seedproject/Sj2324SeedprojectApplicationTests.java
This file contains 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
This file contains 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
Oops, something went wrong.