仓库模块api模块添加

develop-QA^2
liuqingkun 1 week ago
parent 7938dc12d6
commit b91cb27f2f
  1. 39
      blade-service-api/blade-wms-api/.gitignore
  2. 23
      blade-service-api/blade-wms-api/pom.xml
  3. 1
      blade-service-api/pom.xml
  4. 6
      blade-service/blade-wms/pom.xml

@ -0,0 +1,39 @@
# maven #
target
logs
!.mvn/wrapper/maven-wrapper.jar
# gradle
.gradle
/build/
!gradle/wrapper/gradle-wrapper.jar
# windows #
Thumbs.db
# Mac #
.DS_Store
# eclipse #
.settings
.project
.classpath
.log
*.class
# vscode #
.vscode
# idea #
.idea
*.iml
# Package Files #
*.jar
*.war
*.ear
/target
# Flattened pom
.flattened-pom.xml
/**/.flattened-pom.xml

@ -0,0 +1,23 @@
<?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">
<parent>
<artifactId>blade-service-api</artifactId>
<groupId>org.springblade</groupId>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>blade-wms-api</artifactId>
<name>${project.artifactId}</name>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>org.springblade</groupId>
<artifactId>blade-starter-cache</artifactId>
</dependency>
</dependencies>
</project>

@ -23,6 +23,7 @@
<module>blade-record-api</module>
<module>blade-scheduling-api</module>
<module>blade-monitor-api</module>
<module>blade-wms-api</module>
</modules>
<dependencies>

@ -30,6 +30,12 @@
<version>4.6.0.RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springblade</groupId>
<artifactId>blade-wms-api</artifactId>
<version>4.6.0.RELEASE</version>
<scope>compile</scope>
</dependency>
<!-- 添加Hutool依赖-->
<dependency>
<groupId>cn.hutool</groupId>

Loading…
Cancel
Save