feat: initial commit

This commit is contained in:
Rick Rongen
2025-09-05 09:09:37 +02:00
commit 244bbb121e
18 changed files with 670 additions and 0 deletions

33
pom.xml Normal file
View File

@@ -0,0 +1,33 @@
<?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>
<scm>
<connection>scm:git:file://localhost/../sfg-sb-common-remote.git</connection>
<url>file://../sfg-sb-common-remote.git</url>
</scm>
<parent>
<groupId>com.sligrofoodgroup.spring-boot-common</groupId>
<artifactId>spring-boot-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>spring-boot-parent/pom.xml</relativePath>
</parent>
<artifactId>common</artifactId>
<packaging>pom</packaging>
<modules>
<module>spring-boot-parent</module>
<module>lib-1</module>
<module>spring-boot-common-utils</module>
</modules>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>