feat: Add Dockerfiles and configuration for Quarkus application
This commit is contained in:
@@ -68,7 +68,6 @@ dependencies {
|
|||||||
|
|
||||||
implementation("com.fasterxml.jackson.module:jackson-module-scala_3:${versions["JACKSON_SCALA"]!!}")
|
implementation("com.fasterxml.jackson.module:jackson-module-scala_3:${versions["JACKSON_SCALA"]!!}")
|
||||||
|
|
||||||
|
|
||||||
testImplementation(platform("org.junit:junit-bom:5.13.4"))
|
testImplementation(platform("org.junit:junit-bom:5.13.4"))
|
||||||
testImplementation("org.junit.jupiter:junit-jupiter")
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
||||||
testImplementation("org.scalatest:scalatest_3:${versions["SCALATEST"]!!}")
|
testImplementation("org.scalatest:scalatest_3:${versions["SCALATEST"]!!}")
|
||||||
@@ -116,4 +115,3 @@ tasks.reportScoverage {
|
|||||||
tasks.jar {
|
tasks.jar {
|
||||||
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,2 @@
|
|||||||
|
greeting:
|
||||||
|
message: "hello"
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
-- This file allow to write SQL commands that will be emitted in test and dev.
|
||||||
|
-- The commands are commented as their support depends of the database
|
||||||
|
-- insert into myentity (id, field) values(1, 'field-1');
|
||||||
|
-- insert into myentity (id, field) values(2, 'field-2');
|
||||||
|
-- insert into myentity (id, field) values(3, 'field-3');
|
||||||
|
-- alter sequence myentity_seq restart with 4;
|
||||||
Reference in New Issue
Block a user