12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?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.chelvc.framework</groupId>
- <artifactId>framework-dependencies</artifactId>
- <version>1.0.0-RELEASE</version>
- <relativePath/>
- </parent>
- <artifactId>framework-boot</artifactId>
- <version>1.0.0-RELEASE</version>
- <packaging>pom</packaging>
- <properties>
- <framework-base.version>1.0.0-RELEASE</framework-base.version>
- <apidoc-maven-plugin.version>1.3.13</apidoc-maven-plugin.version>
- <spring-boot-maven-plugin.version>2.3.9.RELEASE</spring-boot-maven-plugin.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.chelvc.framework</groupId>
- <artifactId>framework-base</artifactId>
- <version>${framework-base.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-actuator</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-validation</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>${spring-boot-maven-plugin.version}</version>
- <configuration>
- <classifier>exec</classifier>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>com.arsframework</groupId>
- <artifactId>apidoc-maven-plugin</artifactId>
- <version>${apidoc-maven-plugin.version}</version>
- <configuration>
- <includeHeaders>{Long} Id 主体标识,{String} Using 使用信息: NORMAL(常规使用)、NEWLY(当日首次使用)、INITIAL(历史首次使用),{String} Scope 应用范围,{String} Mobile 手机号码,{String} Device 设备标识,{String} Channel 渠道来源,{String} Platform 平台标识: PC(PC)、IOS(苹果)、ANDROID(安卓),{String} Terminal 终端标识: H5(H5)、WEB(Web)、APP(App)、APP_H5(App H5)、APPLET(小程序)、APPLET_H5(小程序H5),{String} Version 终端版本,{String} Authority 授权信息,{Long} Timestamp 请求时间戳,{String} Signature 签名信息,{String} Fingerprint 设备指纹,{String} Authorization 认证信息</includeHeaders>
- <excludeClasses>com.chelvc.framework.base.interceptor.GlobalExceptionInterceptor</excludeClasses>
- <analyserFactoryClass>com.chelvc.framework.base.apidoc.MethodAnalyserFactory</analyserFactoryClass>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|