feat: initial commit
This commit is contained in:
48
spring-boot-parent/pom.xml
Normal file
48
spring-boot-parent/pom.xml
Normal file
@@ -0,0 +1,48 @@
|
||||
<?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>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>3.5.5</version>
|
||||
<relativePath/>
|
||||
</parent>
|
||||
|
||||
<groupId>com.sligrofoodgroup.spring-boot-common</groupId>
|
||||
<artifactId>spring-boot-parent</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<properties>
|
||||
<sfg-sb-commons-version>${project.version}</sfg-sb-commons-version>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<!--Internal dependencies-->
|
||||
<dependency>
|
||||
<groupId>com.sligrofoodgroup</groupId>
|
||||
<artifactId>lib-1</artifactId>
|
||||
<version>${sfg-sb-commons-version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sligrofoodgroup.spring-boot-common</groupId>
|
||||
<artifactId>spring-boot-common-utils</artifactId>
|
||||
<version>${sfg-sb-commons-version}</version>
|
||||
</dependency>
|
||||
|
||||
<!--Common dependencies-->
|
||||
<dependency>
|
||||
<groupId>org.jetbrains</groupId>
|
||||
<artifactId>annotations</artifactId>
|
||||
<version>24.1.0</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
</project>
|
||||
Reference in New Issue
Block a user