add - 报表模块

master
yinq 1 year ago
parent 47ccc3a64c
commit f4ab9ad92c

@ -91,6 +91,12 @@
<artifactId>aucma-production</artifactId>
</dependency>
<!-- 报表模块-->
<dependency>
<groupId>com.aucma</groupId>
<artifactId>aucma-report</artifactId>
</dependency>
</dependencies>
<build>

@ -13,7 +13,7 @@
<description>
system系统模块
生产模块
</description>

@ -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">
<parent>
<artifactId>aucma</artifactId>
<groupId>com.aucma</groupId>
<version>3.8.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>aucma-report</artifactId>
<description>
报表模块
</description>
<dependencies>
<!-- 基础数据-->
<dependency>
<groupId>com.aucma</groupId>
<artifactId>aucma-base</artifactId>
</dependency>
<!-- 生产模块-->
<dependency>
<groupId>com.aucma</groupId>
<artifactId>aucma-production</artifactId>
</dependency>
</dependencies>
</project>

@ -184,13 +184,20 @@
<version>${aucma.version}</version>
</dependency>
<!-- API接口-->
<!-- 生产模块-->
<dependency>
<groupId>com.aucma</groupId>
<artifactId>aucma-production</artifactId>
<version>${aucma.version}</version>
</dependency>
<!-- 报表模块-->
<dependency>
<groupId>com.aucma</groupId>
<artifactId>aucma-report</artifactId>
<version>${aucma.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
@ -204,6 +211,7 @@
<module>aucma-base</module>
<module>aucma-api</module>
<module>aucma-production</module>
<module>aucma-report</module>
</modules>
<packaging>pom</packaging>

Loading…
Cancel
Save