<?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>
|
<groupId>com.consum</groupId>
|
<artifactId>low-consum-manage</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>deploy-jar-single</artifactId>
|
<name>deploy-jar-single</name>
|
<packaging>jar</packaging>
|
|
<properties>
|
<es.version>7.14.0</es.version>
|
</properties>
|
|
<dependencies>
|
<dependency>
|
<groupId>com.consum</groupId>
|
<artifactId>consum-base</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
<exclusions>
|
<exclusion>
|
<artifactId>spring-security-core</artifactId>
|
<groupId>org.springframework.security</groupId>
|
</exclusion>
|
<exclusion>
|
<artifactId>snakeyaml</artifactId>
|
<groupId>org.yaml</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>8.0.31</version> <!-- 使用适合您项目的版本号 -->
|
</dependency>
|
<!-- 通过界面下载po生成文件,2023/03/16 -->
|
<dependency>
|
<groupId>com.iplatform</groupId>
|
<artifactId>iplatform-jdbc-generator</artifactId>
|
<version>3.2.0</version>
|
<systemPath>${project.basedir}/src/main/resources/lib/iplatform-jdbc-generator-2.3.0-SNAPSHOT.jar</systemPath>
|
<scope>system</scope>
|
</dependency>
|
|
<!-- 阿里druid数据库连接池,如果使用直接引入到业务发布模块中,2023-03-15 -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid</artifactId>
|
</dependency>
|
|
<!-- redis支持 -->
|
<dependency>
|
<groupId>com.walkersoft</groupId>
|
<artifactId>walker-support-redis</artifactId>
|
<version>${walker-support-redis.version}</version>
|
<systemPath>${project.basedir}/src/main/resources/lib/walker-support-redis-3.2.0.jar</systemPath>
|
<scope>system</scope>
|
</dependency>
|
<dependency>
|
<groupId>com.walkersoft</groupId>
|
<artifactId>walker-jdbc</artifactId>
|
<version>3.2.0</version>
|
<systemPath>${project.basedir}/src/main/resources/lib/walker-jdbc-3.2.0.jar</systemPath>
|
<scope>system</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.yaml</groupId>
|
<artifactId>snakeyaml</artifactId>
|
<version>2.0</version>
|
</dependency>
|
|
<!--web模块 修改tomcat版本-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
<exclusions>
|
<exclusion>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.tomcat.embed</groupId>
|
<artifactId>tomcat-embed-core</artifactId>
|
<version>10.1.31</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.tomcat.embed</groupId>
|
<artifactId>tomcat-embed-el</artifactId>
|
<version>10.1.31</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.tomcat.embed</groupId>
|
<artifactId>tomcat-embed-websocket</artifactId>
|
<version>10.1.31</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.tomcat</groupId>
|
<artifactId>tomcat-annotations-api</artifactId>
|
<version>10.1.31</version>
|
</dependency>
|
<!-- 配置文件加密 -->
|
<dependency>
|
<groupId>com.github.ulisesbocchio</groupId>
|
<artifactId>jasypt-spring-boot-starter</artifactId>
|
<version>2.1.0</version>
|
</dependency>
|
|
|
<!-- 加解密-->
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-web</artifactId>
|
<exclusions>
|
<exclusion>
|
<artifactId>spring-security-core</artifactId>
|
<groupId>org.springframework.security</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-config</artifactId>
|
<exclusions>
|
<exclusion>
|
<artifactId>spring-security-core</artifactId>
|
<groupId>org.springframework.security</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-core</artifactId>
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
<finalName>low-consum-manage</finalName>
|
<plugins>
|
<plugin>
|
<!--能够自动寻找springboot引导类,或者手动指定-->
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<version>${spring-boot.version}</version>
|
<executions>
|
<execution>
|
<goals>
|
<goal>repackage</goal>
|
</goals>
|
</execution>
|
</executions>
|
<configuration>
|
<arguments>
|
<argument>${project.basedir}/src/main/resources/lib</argument>
|
</arguments>
|
<includeSystemScope>true</includeSystemScope>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-deploy-plugin</artifactId>
|
<version>${maven-deploy-plugin.version}</version>
|
<executions>
|
<execution>
|
<id>default-deploy</id>
|
<phase>deploy</phase>
|
<goals>
|
<goal>deploy</goal>
|
</goals>
|
<!-- skip默认deploy插件的执行 -->
|
<configuration>
|
<skip>true</skip>
|
</configuration>
|
</execution>
|
</executions>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|