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.
211 lines
8.4 KiB
211 lines
8.4 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>win</artifactId>
|
|
<groupId>com.win</groupId>
|
|
<version>4.7.9</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<packaging>jar</packaging>
|
|
<artifactId>win-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>
|
|
|
|
<!-- spring-doc -->
|
|
<dependency>
|
|
<groupId>org.springdoc</groupId>
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Mysql驱动包 -->
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 核心模块-->
|
|
<dependency>
|
|
<groupId>com.win</groupId>
|
|
<artifactId>win-framework</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 定时任务-->
|
|
<dependency>
|
|
<groupId>com.win</groupId>
|
|
<artifactId>win-quartz</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 代码生成-->
|
|
<dependency>
|
|
<groupId>com.win</groupId>
|
|
<artifactId>win-generator</artifactId>
|
|
</dependency>
|
|
<!-- 打印模块-->
|
|
<dependency>
|
|
<groupId>com.win</groupId>
|
|
<artifactId>win-print</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>2.5.15</version>
|
|
<configuration>
|
|
<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.1.0</version>
|
|
<configuration>
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
<warName>${project.artifactId}</warName>
|
|
</configuration>
|
|
</plugin>
|
|
<!-- YUI Compressor (CSS/JS压缩)
|
|
<plugin>
|
|
<groupId>net.alchim31.maven</groupId>
|
|
<artifactId>yuicompressor-maven-plugin</artifactId>
|
|
<version>1.5.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>prepare-package</phase>
|
|
<goals>
|
|
<goal>compress</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
<jswarn>false</jswarn>
|
|
<nosuffix>true</nosuffix>
|
|
<linebreakpos>50000</linebreakpos>
|
|
<sourceDirectory>src/main/resources/static</sourceDirectory>
|
|
<force>true</force>
|
|
<includes>
|
|
<include>**/*.js</include>
|
|
<include>**/*.css</include>
|
|
</includes>
|
|
<excludes>
|
|
<exclude>**/*.min.js</exclude>
|
|
<exclude>**/*.min.css</exclude>
|
|
<exclude>**/fileinput.js</exclude>
|
|
<exclude>**/validate/**</exclude>
|
|
<exclude>**/bootstrap-table/**</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin> -->
|
|
</plugins>
|
|
<finalName>${project.artifactId}</finalName>
|
|
</build>
|
|
<!-- <build>-->
|
|
<!-- <!– jar包名 –>-->
|
|
<!-- <finalName>${project.artifactId}</finalName>-->
|
|
<!-- <plugins>-->
|
|
<!-- <!– 分离lib –>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-dependency-plugin</artifactId>-->
|
|
<!-- <executions>-->
|
|
<!-- <execution>-->
|
|
<!-- <id>copy-dependencies</id>-->
|
|
<!-- <phase>package</phase>-->
|
|
<!-- <goals>-->
|
|
<!-- <goal>copy-dependencies</goal>-->
|
|
<!-- </goals>-->
|
|
<!-- <configuration>-->
|
|
<!-- <!– 依赖包输出目录,将来不打进jar包里 –>-->
|
|
<!-- <outputDirectory>${project.build.directory}/lib</outputDirectory>-->
|
|
<!-- <excludeTransitive>false</excludeTransitive>-->
|
|
<!-- <stripVersion>false</stripVersion>-->
|
|
<!-- <includeScope>runtime</includeScope>-->
|
|
<!-- </configuration>-->
|
|
<!-- </execution>-->
|
|
<!-- </executions>-->
|
|
<!-- </plugin>-->
|
|
<!-- <!– copy资源文件 –>-->
|
|
<!-- <plugin>-->
|
|
<!-- <artifactId>maven-resources-plugin</artifactId>-->
|
|
<!-- <executions>-->
|
|
<!-- <execution>-->
|
|
<!-- <id>copy-resources</id>-->
|
|
<!-- <phase>package</phase>-->
|
|
<!-- <goals>-->
|
|
<!-- <goal>copy-resources</goal>-->
|
|
<!-- </goals>-->
|
|
<!-- <configuration>-->
|
|
<!-- <resources>-->
|
|
<!-- <resource>-->
|
|
<!-- <directory>src/main/resources</directory>-->
|
|
<!-- </resource>-->
|
|
<!-- </resources>-->
|
|
<!-- <outputDirectory>${project.build.directory}/resources</outputDirectory>-->
|
|
<!-- </configuration>-->
|
|
<!-- </execution>-->
|
|
<!-- </executions>-->
|
|
<!-- </plugin>-->
|
|
<!-- <!– 打jar包时忽略配置文件 –>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-jar-plugin</artifactId>-->
|
|
<!-- <configuration>-->
|
|
<!-- <excludes>-->
|
|
<!-- <exclude>**/*.yml</exclude>-->
|
|
<!-- <exclude>**/*.xml</exclude>-->
|
|
<!-- </excludes>-->
|
|
<!-- </configuration>-->
|
|
<!-- </plugin>-->
|
|
<!-- <!– spring boot repackage –>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
|
|
<!-- <configuration>-->
|
|
<!-- <layout>ZIP</layout>-->
|
|
<!-- <includes>-->
|
|
<!-- <include>-->
|
|
<!-- <groupId>non-exists</groupId>-->
|
|
<!-- <artifactId>non-exists</artifactId>-->
|
|
<!-- </include>-->
|
|
<!-- </includes>-->
|
|
<!-- </configuration>-->
|
|
<!-- <executions>-->
|
|
<!-- <execution>-->
|
|
<!-- <goals>-->
|
|
<!-- <goal>repackage</goal>-->
|
|
<!-- </goals>-->
|
|
<!-- </execution>-->
|
|
<!-- </executions>-->
|
|
<!-- </plugin>-->
|
|
<!-- </plugins>-->
|
|
<!-- </build>-->
|
|
</project>
|