|
@@ -1,155 +1,188 @@
|
|
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
- <parent>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
- <version>3.1.1</version>
|
|
|
- <relativePath/> <!-- lookup parent from repository -->
|
|
|
- </parent>
|
|
|
- <groupId>com.kxs</groupId>
|
|
|
- <artifactId>adminap</artifactId>
|
|
|
- <version>0.0.1-SNAPSHOT</version>
|
|
|
- <packaging>war</packaging>
|
|
|
- <name>adminap</name>
|
|
|
- <description>Demo project for Spring Boot</description>
|
|
|
- <properties>
|
|
|
- <java.version>17</java.version>
|
|
|
- </properties>
|
|
|
- <dependencies>
|
|
|
+<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+ <parent>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
+ <version>3.1.1</version>
|
|
|
+ <relativePath /> <!-- lookup parent from repository -->
|
|
|
+ </parent>
|
|
|
+ <groupId>com.ym</groupId>
|
|
|
+ <artifactId>adminap</artifactId>
|
|
|
+ <version>0.0.1</version>
|
|
|
+ <packaging>jar</packaging>
|
|
|
+ <name>adminap</name>
|
|
|
+ <description>Demo project for Spring Boot</description>
|
|
|
+ <properties>
|
|
|
+ <java.version>17</java.version>
|
|
|
+ <start-class>com.ym.adminap.AdminapApplication</start-class>
|
|
|
+ </properties>
|
|
|
+ <dependencies>
|
|
|
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
- </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependency>
|
|
|
+ <dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
</dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-data-redis-reactive</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.session</groupId>
|
|
|
- <artifactId>spring-session-data-redis</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.mybatis</groupId>
|
|
|
- <artifactId>mybatis</artifactId>
|
|
|
- <version>3.5.13</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.mybatis</groupId>
|
|
|
- <artifactId>mybatis-spring</artifactId>
|
|
|
- <version>2.0.7</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-devtools</artifactId>
|
|
|
- <scope>runtime</scope>
|
|
|
- <optional>true</optional>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.mysql</groupId>
|
|
|
- <artifactId>mysql-connector-j</artifactId>
|
|
|
- <scope>runtime</scope>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
- <scope>provided</scope>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-test</artifactId>
|
|
|
- <scope>test</scope>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>io.projectreactor</groupId>
|
|
|
- <artifactId>reactor-test</artifactId>
|
|
|
- <scope>test</scope>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
- <artifactId>fastjson</artifactId>
|
|
|
- <version>2.0.34</version>
|
|
|
- </dependency>
|
|
|
- <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api -->
|
|
|
- <dependency>
|
|
|
- <groupId>io.jsonwebtoken</groupId>
|
|
|
- <artifactId>jjwt-api</artifactId>
|
|
|
- <version>0.11.5</version>
|
|
|
- </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-data-redis-reactive</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.session</groupId>
|
|
|
+ <artifactId>spring-session-data-redis</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mybatis</groupId>
|
|
|
+ <artifactId>mybatis</artifactId>
|
|
|
+ <version>3.5.13</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mybatis</groupId>
|
|
|
+ <artifactId>mybatis-spring</artifactId>
|
|
|
+ <version>2.0.7</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-impl -->
|
|
|
- <dependency>
|
|
|
- <groupId>io.jsonwebtoken</groupId>
|
|
|
- <artifactId>jjwt-impl</artifactId>
|
|
|
- <version>0.11.5</version>
|
|
|
- <scope>runtime</scope>
|
|
|
- </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-devtools</artifactId>
|
|
|
+ <scope>runtime</scope>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-j</artifactId>
|
|
|
+ <scope>runtime</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
+ <scope>provided</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.projectreactor</groupId>
|
|
|
+ <artifactId>reactor-test</artifactId>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>2.0.34</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.jsonwebtoken</groupId>
|
|
|
+ <artifactId>jjwt-api</artifactId>
|
|
|
+ <version>0.11.5</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-jackson -->
|
|
|
- <dependency>
|
|
|
- <groupId>io.jsonwebtoken</groupId>
|
|
|
- <artifactId>jjwt-jackson</artifactId>
|
|
|
- <version>0.11.5</version>
|
|
|
- <scope>runtime</scope>
|
|
|
- </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-impl -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.jsonwebtoken</groupId>
|
|
|
+ <artifactId>jjwt-impl</artifactId>
|
|
|
+ <version>0.11.5</version>
|
|
|
+ <scope>runtime</scope>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependency>
|
|
|
- <groupId>org.mybatis.generator</groupId>
|
|
|
- <artifactId>mybatis-generator-core</artifactId>
|
|
|
- <version>1.4.0</version>
|
|
|
- </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-jackson -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.jsonwebtoken</groupId>
|
|
|
+ <artifactId>jjwt-jackson</artifactId>
|
|
|
+ <version>0.11.5</version>
|
|
|
+ <scope>runtime</scope>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependency>
|
|
|
+ <dependency>
|
|
|
<groupId>org.mybatis.dynamic-sql</groupId>
|
|
|
<artifactId>mybatis-dynamic-sql</artifactId>
|
|
|
<version>1.1.4</version>
|
|
|
</dependency>
|
|
|
- </dependencies>
|
|
|
+ </dependencies>
|
|
|
|
|
|
- <build>
|
|
|
- <plugins>
|
|
|
- <plugin>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <groupId>org.mybatis.generator</groupId>
|
|
|
- <artifactId>mybatis-generator-maven-plugin</artifactId>
|
|
|
- <version>1.4.0</version>
|
|
|
- <executions>
|
|
|
- <execution>
|
|
|
- <id>Generate MyBatis Artifacts</id>
|
|
|
- <goals>
|
|
|
- <goal>generate</goal>
|
|
|
- </goals>
|
|
|
- </execution>
|
|
|
- </executions>
|
|
|
- <configuration>
|
|
|
- <!-- 输出详细信息 -->
|
|
|
- <verbose>true</verbose>
|
|
|
- <!-- 覆盖生成文件 -->
|
|
|
- <overwrite>true</overwrite>
|
|
|
- <!-- 定义配置文件 -->
|
|
|
- <configurationFile>${basedir}/src/main/resources/generator-configuration.xml</configurationFile>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
- </plugins>
|
|
|
- </build>
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-jar-plugin</artifactId>
|
|
|
+ <version>3.1.2</version>
|
|
|
+ <configuration>
|
|
|
+ <archive>
|
|
|
+ <!-- 生成的项目JAR包中,不要包含pom.xml和pom.properties这两个文件 -->
|
|
|
+ <addMavenDescriptor>false</addMavenDescriptor>
|
|
|
+ <manifest>
|
|
|
+ <!-- 是否要把第三方依赖的JAR包加入到类构建路径 -->
|
|
|
+ <addClasspath>true</addClasspath>
|
|
|
+ <!-- 外部依赖JAR包的存放路径,为了在MANIFEST.MF文件中指定外部依赖的路径 -->
|
|
|
+ <classpathPrefix>lib/</classpathPrefix>
|
|
|
+ <!-- 项目主启动类 -->
|
|
|
+ <mainClass>com.ym.adminap.AdminapApplication</mainClass>
|
|
|
+ </manifest>
|
|
|
+ </archive>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <!-- 复制项目依赖的JAR包到指定的lib目录-->
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-dependency-plugin</artifactId>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>copy-lib</id>
|
|
|
+ <phase>package</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>copy-dependencies</goal>
|
|
|
+ </goals>
|
|
|
+ <configuration>
|
|
|
+ <!-- 将外部依赖的JAR包复制到target/lib路径下 -->
|
|
|
+ <outputDirectory>target/lib</outputDirectory>
|
|
|
+ <excludeTransitive>false</excludeTransitive>
|
|
|
+ <stripVersion>false</stripVersion>
|
|
|
+ <includeScope>runtime</includeScope>
|
|
|
+ </configuration>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <goals>
|
|
|
+ <goal>repackage</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ <configuration>
|
|
|
+ <mainClass>com.ym.adminap.AdminapApplication</mainClass>
|
|
|
+ <layout>JAR</layout>
|
|
|
+ <testFailureIgnore>true</testFailureIgnore>
|
|
|
+ <includes>
|
|
|
+ <include>
|
|
|
+ <groupId>nothing</groupId>
|
|
|
+ <artifactId>nothing</artifactId>
|
|
|
+ </include>
|
|
|
+ </includes>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
|
|
|
-</project>
|
|
|
+</project>
|