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.
 
 
 
 
 

292 lines
9.5 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">
<parent>
<artifactId>flysoft</artifactId>
<groupId>com.flysoft</groupId>
<version>4.2.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>war</packaging>
<artifactId>flysoft-admin</artifactId>
<description>
web服务入口
</description>
<dependencies>
<!-- SpringBoot集成thymeleaf模板 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<!-- spring-boot-devtools -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional> <!-- 表示依赖不会传递 -->
</dependency>
<!-- swagger2-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
</dependency>
<!--防止进入swagger页面报类型转换错误,排除2.9.2中的引用,手动增加1.5.21版本-->
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
<version>1.5.21</version>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-models</artifactId>
<version>1.5.21</version>
</dependency>
<!-- swagger2-UI-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
</dependency>
<!-- Mysql驱动包 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<!-- DMsql达梦驱动包(maven 本地仓库导入) -->
<dependency>
<groupId>dm</groupId>
<artifactId>DmJdbcDriver</artifactId>
<version>1.8</version>
<scope>system</scope>
<systemPath>${pom.basedir}/libs/DmJdbcDriver18.jar</systemPath>
</dependency>
<!-- kingbase金仓驱动包(maven 本地仓库导入) -->
<dependency>
<groupId>kingbase</groupId>
<artifactId>kingbase8</artifactId>
<version>8.2.0</version>
<scope>system</scope>
<systemPath>${pom.basedir}/libs/kingbase8-8.2.0.jar</systemPath>
</dependency>
<!-- word生成Pdf相关包 -->
<dependency>
<groupId>com.jacob</groupId>
<artifactId>jacob</artifactId>
<version>1.1.0</version>
<scope>system</scope>
<systemPath>${pom.basedir}/libs/jacob.jar</systemPath>
</dependency>
<!-- polardb数据库 jar -->
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>polardb-jdbc18</artifactId>
<version>1.1.2</version>
<scope>system</scope>
<systemPath>${pom.basedir}/libs/polardb-jdbc18.jar</systemPath>
</dependency>
<!--政务钉需要的jar包依赖-->
<dependency>
<groupId>com.alibaba.platform.shared</groupId>
<artifactId>xxpt.gateway.shared.client</artifactId>
<version>1.1.5</version>
<scope>system</scope>
<systemPath>${pom.basedir}/libs/xxpt.gateway.shared.client-1.1.5.jar</systemPath>
</dependency>
<!--des加密解密-->
<dependency>
<groupId>flydes</groupId>
<artifactId>flydes</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${pom.basedir}/libs/FlyDes.jar</systemPath>
</dependency>
<!-- 核心模块-->
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-framework</artifactId>
</dependency>
<!-- 定时任务-->
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-quartz</artifactId>
</dependency>
<!-- 代码生成-->
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-generator</artifactId>
</dependency>
<!-- 信息报送模块-->
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-submission</artifactId>
</dependency>
<!-- 邮件模块-->
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-mailbox</artifactId>
</dependency>
<!-- 公文交换-->
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-document</artifactId>
</dependency>
<!-- 流程配置模块-->
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-process-configuration</artifactId>
</dependency>
<!-- 电子公告模块-->
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-notice</artifactId>
</dependency>
<!-- 数据可视化模块-->
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-dataview</artifactId>
</dependency>
<!--领导批示件模块-->
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-leader-document</artifactId>
</dependency>
<!-- 一周工作计划模块-->
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-weekplan</artifactId>
</dependency>
<!--资产管理模块-->
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-asset</artifactId>
</dependency>
<!--日常办公模块-->
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-daily-office</artifactId>
</dependency>
<!-- 全文检索模块-->
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-search</artifactId>
</dependency>
<!-- 公共流程表单模块-->
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-common-process</artifactId>
</dependency>
<!--测试 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- 浙政钉-->
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-sendwork</artifactId>
</dependency>
<!--好干部-->
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-ganbu-service</artifactId>
</dependency>
<dependency>
<groupId>com.flysoft</groupId>
<artifactId>flysoft-autherthird</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.1.1.RELEASE</version>
<configuration>
<mainClass>com.flysoft.FlySoftApplication</mainClass>
<includeSystemScope>true</includeSystemScope>
<fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<warName>${project.artifactId}</warName>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<webResources>
<resource>
<directory>
src/main/resources
</directory>
<targetPath>
META-INF/
</targetPath>
<includes>
<include>**/apusic-application.xml</include>
</includes>
</resource>
<resource>
<directory>libs</directory>
<targetPath>WEB-INF/lib/</targetPath>
<includes>
<include>**/*.jar</include>
</includes>
</resource>
</webResources>
</configuration>
</plugin>
</plugins>
<finalName>${project.artifactId}</finalName>
</build>
</project>