Setup Maven multi-module project with backend, common, and server modules.

Add `.gitignore` entry for build artifacts.
This commit is contained in:
2025-09-20 23:17:39 +02:00
parent 26d04d00d4
commit 4d38f5d3a9
5 changed files with 138 additions and 0 deletions

31
backend/server/pom.xml Normal file
View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>dev.rheinsw.finlog.backend</groupId>
<artifactId>backend</artifactId>
<version>${revision}</version>
</parent>
<artifactId>server</artifactId>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- common -->
<dependency>
<groupId>dev.rheinsw.finlog.backend</groupId>
<artifactId>common</artifactId>
<version>${revision}</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>