snow/snow-admin/pom.xml

123 lines
4.0 KiB
XML
Raw Normal View History

2020-09-16 15:33:51 +08: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">
<parent>
<artifactId>snow</artifactId>
<groupId>com.snow</groupId>
2021-03-27 15:05:05 +08:00
<version>2.0.0</version>
2020-09-16 15:33:51 +08:00
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
<artifactId>snow-admin</artifactId>
<description>
web服务入口
</description>
<dependencies>
<!-- SpringBoot集成thymeleaf模板 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
2021-05-01 12:08:35 +08:00
<!--积木报表-->
2021-04-26 15:12:48 +08:00
<dependency>
<groupId>org.jeecgframework.jimureport</groupId>
<artifactId>spring-boot-starter-jimureport</artifactId>
2021-06-06 18:39:52 +08:00
<version>1.3.21-beta</version>
2021-12-23 21:33:20 +08:00
<exclusions>
<exclusion>
<artifactId>druid</artifactId>
<groupId>com.alibaba</groupId>
</exclusion>
</exclusions>
2021-04-26 15:12:48 +08:00
</dependency>
2020-11-19 19:12:49 +08:00
<!--test-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
2020-09-16 15:33:51 +08:00
<!-- spring-boot-devtools -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional> <!-- 表示依赖不会传递 -->
</dependency>
<!-- Mysql驱动包 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<!-- 核心模块-->
<dependency>
<groupId>com.snow</groupId>
<artifactId>snow-framework</artifactId>
</dependency>
<!-- 定时任务-->
<dependency>
<groupId>com.snow</groupId>
<artifactId>snow-quartz</artifactId>
</dependency>
<!-- 代码生成-->
<dependency>
<groupId>com.snow</groupId>
<artifactId>snow-generator</artifactId>
</dependency>
2020-10-31 13:51:08 +08:00
<!--dingtalk-->
2020-09-18 10:49:04 +08:00
<dependency>
<groupId>com.snow</groupId>
<artifactId>snow-dingtalk</artifactId>
</dependency>
2020-11-18 19:29:48 +08:00
<!--工作流-->
<dependency>
<groupId>com.snow</groupId>
<artifactId>snow-flowable</artifactId>
</dependency>
2021-03-21 11:50:36 +08:00
<dependency>
<groupId>com.snow</groupId>
<artifactId>snow-from</artifactId>
</dependency>
2020-09-16 15:33:51 +08:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.1.1.RELEASE</version>
<configuration>
<fork>true</fork> <!-- 如果没有该配置devtools不会生效 -->
2021-03-18 17:32:35 +08:00
<includeSystemScope>true</includeSystemScope>
2020-09-16 15:33:51 +08:00
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
2021-03-18 17:32:35 +08:00
<version>3.0.0</version>
2020-09-16 15:33:51 +08:00
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<warName>${project.artifactId}</warName>
</configuration>
2021-03-18 17:32:35 +08:00
</plugin>
2020-09-16 15:33:51 +08:00
</plugins>
<finalName>${project.artifactId}</finalName>
</build>
</project>