158 lines
4.2 KiB
XML
158 lines
4.2 KiB
XML
|
<?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.4.0</version>
|
||
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
</parent>
|
||
|
|
||
|
<groupId>cn.skcks.docking.wx</groupId>
|
||
|
<artifactId>wx-docking-platform</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<packaging>pom</packaging>
|
||
|
<name>wx-docking-platform</name>
|
||
|
<description>WeChat Docking Platform</description>
|
||
|
<url/>
|
||
|
|
||
|
<licenses>
|
||
|
<license>
|
||
|
<name>Apache License, Version 2.0</name>
|
||
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||
|
</license>
|
||
|
</licenses>
|
||
|
<developers>
|
||
|
<developer>
|
||
|
<name>shikong</name>
|
||
|
<email>919411476@qq.com</email>
|
||
|
</developer>
|
||
|
</developers>
|
||
|
|
||
|
<modules>
|
||
|
<module>wx-docking-platform-api</module>
|
||
|
<module>wx-docking-platform-starter</module>
|
||
|
<module>wx-docking-platform-common</module>
|
||
|
<module>wx-docking-platform-annotation</module>
|
||
|
</modules>
|
||
|
|
||
|
<scm>
|
||
|
<connection/>
|
||
|
<developerConnection/>
|
||
|
<tag/>
|
||
|
<url/>
|
||
|
</scm>
|
||
|
<properties>
|
||
|
<java.version>17</java.version>
|
||
|
|
||
|
<springboot.version>3.4.0</springboot.version>
|
||
|
<springdoc.version>2.7.0</springdoc.version>
|
||
|
<lombok.version>1.18.36</lombok.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>${lombok.version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>cn.skcks.docking.wx.annotation</groupId>
|
||
|
<artifactId>wx-docking-platform-annotation</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>cn.skcks.docking.wx.api</groupId>
|
||
|
<artifactId>wx-docking-platform-api</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>cn.skcks.docking.wx.common</groupId>
|
||
|
<artifactId>wx-docking-platform-common</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springdoc</groupId>
|
||
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
||
|
<version>${springdoc.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springdoc</groupId>
|
||
|
<artifactId>springdoc-openapi-starter-common</artifactId>
|
||
|
<version>${springdoc.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
<version>${springboot.version}</version>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-undertow</artifactId>
|
||
|
<version>${springboot.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<annotationProcessorPaths>
|
||
|
<path>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>${lombok.version}</version>
|
||
|
</path>
|
||
|
<path>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
|
<version>${springboot.version}</version>
|
||
|
</path>
|
||
|
</annotationProcessorPaths>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
<includes>
|
||
|
<include>**/**</include>
|
||
|
</includes>
|
||
|
<filtering>true</filtering>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
|
||
|
<testResources>
|
||
|
<testResource>
|
||
|
<directory>src/test/resources</directory>
|
||
|
<includes>
|
||
|
<include>**/**</include>
|
||
|
</includes>
|
||
|
<filtering>true</filtering>
|
||
|
</testResource>
|
||
|
</testResources>
|
||
|
</build>
|
||
|
|
||
|
</project>
|