2022-09-16 15:07:17 +08:00
|
|
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
2025-03-18 11:50:12 +08:00
|
|
|
<parent>
|
|
|
|
|
<groupId>com.rzyc</groupId>
|
|
|
|
|
<artifactId>inventory</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
<relativePath>../pom.xml</relativePath> <!-- lookup parent from repository -->
|
|
|
|
|
</parent>
|
2022-09-16 15:07:17 +08:00
|
|
|
|
|
|
|
|
<groupId>com.rzyc</groupId>
|
|
|
|
|
<artifactId>inventory-dao</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
<name>inventory-dao</name>
|
|
|
|
|
<description>inventory-dao project for Spring Boot</description>
|
|
|
|
|
<properties>
|
2025-03-10 17:00:13 +08:00
|
|
|
<java.version>11</java.version>
|
2022-09-16 15:07:17 +08:00
|
|
|
</properties>
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
2023-03-30 19:09:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-09-16 15:07:17 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.rzyc</groupId>
|
|
|
|
|
<artifactId>utils</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.8.1</version>
|
|
|
|
|
<configuration>
|
2025-03-18 11:50:12 +08:00
|
|
|
<source>11</source>
|
|
|
|
|
<target>11</target>
|
2022-09-16 15:07:17 +08:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|