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.
97 lines
3.3 KiB
97 lines
3.3 KiB
4 months ago
|
<?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">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>com.jiagutech</groupId>
|
||
|
<artifactId>ams-social</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>social</artifactId>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>17</maven.compiler.source>
|
||
|
<maven.compiler.target>17</maven.compiler.target>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>dev</id>
|
||
|
<properties>
|
||
|
<!-- 环境标识,需要与配置文件的名称相对应 -->
|
||
|
<profiles.active>dev</profiles.active>
|
||
|
<logging.level>info</logging.level>
|
||
|
</properties>
|
||
|
<activation>
|
||
|
<!-- 默认环境 -->
|
||
|
<activeByDefault>true</activeByDefault>
|
||
|
</activation>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>prod</id>
|
||
|
<properties>
|
||
|
<profiles.active>prod</profiles.active>
|
||
|
<logging.level>info</logging.level>
|
||
|
</properties>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.jiagutech</groupId>
|
||
|
<artifactId>common</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-data-jdbc</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>mysql</groupId>
|
||
|
<artifactId>mysql-connector-java</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-validation</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.baomidou</groupId>
|
||
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>cn.dev33</groupId>
|
||
|
<artifactId>sa-token-spring-boot3-starter</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springdoc</groupId>
|
||
|
<artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.poi</groupId>
|
||
|
<artifactId>poi</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.poi</groupId>
|
||
|
<artifactId>poi-ooxml</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba</groupId>
|
||
|
<artifactId>easyexcel</artifactId>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<artifactId>poi-ooxml-schemas</artifactId>
|
||
|
<groupId>org.apache.poi</groupId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|