12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?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.15</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>
- <exclusions>
- <exclusion>
- <groupId>com.fasterxml.jackson.module</groupId>
- <artifactId>jackson-module-parameter-names</artifactId>
- </exclusion>
- </exclusions>
- </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>{String} scope 应用范围,{String} using 使用信息: NORMAL(常规使用)、DAILY(当日首次使用)、INITIAL(历史首次使用),{String} device 设备标识,{String} channel 渠道来源,{String} platform 平台标识: PC(PC)、IOS(苹果)、ANDROID(安卓),{String} terminal 终端标识: WEB(Web)、APP(App)、APPLET(小程序),{String} version 终端版本,{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>
|