chore: update
Java CI with Maven / build-and-test (pull_request) Successful in 15m20s

This commit is contained in:
TranHuuDanh
2026-04-01 06:51:42 +00:00
parent 1e90120bb0
commit e362a11843
2 changed files with 6 additions and 0 deletions
@@ -8,3 +8,7 @@ quarkus.http.host=0.0.0.0
## Orm
%test.quarkus.hibernate-orm.database.generation=drop-and-create
# Dependency
quarkus.index-dependency.lib.group-id=com.drinkool
quarkus.index-dependency.lib.artifact-id=lib
@@ -18,6 +18,8 @@ public class ReviewModel extends BaseEntity {
this.comment = comment;
}
public ReviewModel() {}
public ReviewModel(ReviewModel input) {
this(input.rating, input.comment);
}