2024-06-11 23:41:30 +00: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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.xdadan</groupId>
|
|
|
|
|
<artifactId>emis</artifactId>
|
2024-06-12 01:51:57 +00:00
|
|
|
<version>2.0.0</version>
|
2024-06-11 23:41:30 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
2024-06-12 10:13:43 +00:00
|
|
|
<artifactId>emis-oms-biz-web</artifactId>
|
2024-07-12 01:44:16 +00:00
|
|
|
<version>2.1.0</version>
|
2024-06-11 23:41:30 +00:00
|
|
|
|
2024-06-12 10:13:43 +00:00
|
|
|
<description>emis oms biz服务入口</description>
|
2024-06-11 23:41:30 +00:00
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<java.version>8</java.version>
|
|
|
|
|
<target.dir>pub</target.dir>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<!-- 核心模块-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.xdadan</groupId>
|
|
|
|
|
<artifactId>emis-oms-framework</artifactId>
|
2024-06-12 01:51:57 +00:00
|
|
|
<version>2.0.0</version>
|
2024-06-11 23:41:30 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.xdadan</groupId>
|
2024-06-12 10:13:43 +00:00
|
|
|
<artifactId>emis-oms-biz</artifactId>
|
2024-06-12 01:51:57 +00:00
|
|
|
<version>2.0.0</version>
|
2024-06-11 23:41:30 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|