commit 3223d689c2f8c01e760059ebcc302320937bfafc Author: bivashy Date: Tue Feb 3 22:58:49 2026 +0500 feat: add initial project setup with pom.xml and application.properties diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..dbaf867 --- /dev/null +++ b/pom.xml @@ -0,0 +1,118 @@ + + + 4.0.0 + com.backend.metadata.shikimori.service + anyame-shikimori-metadata-backend + 0.0.1-SNAPSHOT + quarkus + + + 3.14.1 + 25 + UTF-8 + UTF-8 + quarkus-bom + io.quarkus.platform + 3.31.1 + true + 3.5.4 + + + + + + ${quarkus.platform.group-id} + ${quarkus.platform.artifact-id} + ${quarkus.platform.version} + pom + import + + + + + + + io.quarkus + quarkus-arc + + + io.quarkus + quarkus-rest + + + io.quarkus + quarkus-junit + test + + + io.rest-assured + rest-assured + test + + + + + + + ${quarkus.platform.group-id} + quarkus-maven-plugin + ${quarkus.platform.version} + true + + + maven-compiler-plugin + ${compiler-plugin.version} + + true + + + + maven-surefire-plugin + ${surefire-plugin.version} + + @{argLine} + + org.jboss.logmanager.LogManager + ${maven.home} + + + + + maven-failsafe-plugin + ${surefire-plugin.version} + + + + integration-test + verify + + + + + @{argLine} + + ${project.build.directory}/${project.build.finalName}-runner + org.jboss.logmanager.LogManager + ${maven.home} + + + + + + + + + native + + + native + + + + false + false + true + + + + diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..e69de29