Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ target/
.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
scripts/

### STS ###
.apt_generated
Expand Down
230 changes: 0 additions & 230 deletions CLAUDE.md

This file was deleted.

6 changes: 2 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,7 @@
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>

<!-- TODO: new version was uploaded to nexus but not loaded into the project - it set up manually
check later what went wrong and fix it
-->

<!-- <dependency>-->
<!-- <groupId>com.ecmsp</groupId>-->
<!-- <artifactId>protos</artifactId>-->
Expand All @@ -97,7 +95,7 @@
<dependency>
<groupId>com.ecmsp</groupId>
<artifactId>protos</artifactId>
<version>1.0.0-20251005.125206-32</version>
<version>1.0.0-20251007.110512-35</version>
</dependency>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,21 @@ public class CreateOrderE2ETest {
private static final List<CartItem> ITEMS = List.of(
new CartItem(
ITEM_1_ID,
null,
"Item 1",
new java.math.BigDecimal("10.00"),
2,
null,
"Description for Item 1",
false
),
new CartItem(
ITEM_2_ID,
null,
"Item 2",
new java.math.BigDecimal("20.00"),
1,
null,
"Description for Item 2",
true
)
Expand Down
Loading