You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

77 lines
2.7 KiB

<?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>
<groupId>ZdxtComponent</groupId>
<artifactId>ZdxtComponent</artifactId>
<packaging>pom</packaging>
<version>1.0</version>
<modules>
<module>zdxtFlowComponent</module>
<module>zdxtSystemVarComponent</module>
<module>zdxtVisualizationComponent</module>
<module>zdxtBaiduUeditorComponent</module>
<module>zdxtTableManagementComponent</module>
<module>zdxtExcelComponent</module>
<module>zdxtDynamicFormComponent</module>
<module>zdxtAutoCodeComponent</module>
</modules>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.1.RELEASE</version>
<relativePath/>
</parent>
<dependencies>
<!-- SpringBoot 核心包 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<exclusions>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>EmergencyBaseLib</groupId>
<artifactId>EmergencyCommon</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>EmergencyServiceApi</groupId>
<artifactId>emergencyAuthServiceApi</artifactId>
<version>1.0</version>
</dependency>
<!-- fastjson -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.9</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
<encoding>UTF-8</encoding>
<!-- <compilerArgs>-->
<!-- <arg>-XDignore.symbol.file</arg>-->
<!-- </compilerArgs>-->
<!-- <fork>true</fork>-->
</configuration>
</plugin>
</plugins>
</build>
</project>