|
@@ -0,0 +1,43 @@
|
|
|
+<?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>
|
|
|
+ <packaging>pom</packaging>
|
|
|
+ <modules>
|
|
|
+ <module>flow-report-entity</module>
|
|
|
+ <module>flow-report-api</module>
|
|
|
+ <module>flow-report-biz</module>
|
|
|
+ <module>flow-report-controller</module>
|
|
|
+ </modules>
|
|
|
+
|
|
|
+ <parent>
|
|
|
+ <groupId>com.flow</groupId>
|
|
|
+ <artifactId>lowflow</artifactId>
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
+ </parent>
|
|
|
+
|
|
|
+ <artifactId>flow-report</artifactId>
|
|
|
+ <name>report 报表模块</name>
|
|
|
+ <description>报表数据打印</description>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <maven.compiler.source>8</maven.compiler.source>
|
|
|
+ <maven.compiler.target>8</maven.compiler.target>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.flow</groupId>
|
|
|
+ <artifactId>flow-common-core</artifactId>
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.flow</groupId>
|
|
|
+ <artifactId>flow-common-mybatis-starter</artifactId>
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+</project>
|