123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?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">
- <parent>
- <groupId>com.crunii.microservice</groupId>
- <artifactId>service-qm</artifactId>
- <version>${micro.version}</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>service-qm-biz</artifactId>
- <packaging>jar</packaging>
- <properties>
- <start-class>com.crunii.micro.service.qm.QmApplication</start-class>
- </properties>
- <dependencies>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-dfa</artifactId>
- </dependency>
- <dependency>
- <groupId>com.crunii.microservice</groupId>
- <artifactId>service-qm-api</artifactId>
- <version>${micro.version}</version>
- </dependency>
- <dependency>
- <groupId>com.crunii.microservice</groupId>
- <artifactId>micro-common-swagger</artifactId>
- </dependency>
- <dependency>
- <groupId>com.crunii.microservice</groupId>
- <artifactId>micro-common-web</artifactId>
- </dependency>
- <dependency>
- <groupId>com.belerweb</groupId>
- <artifactId>pinyin4j</artifactId>
- <version>2.5.1</version>
- </dependency>
- <!-- 引用亚马逊s3包 start-->
- <!-- https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk-s3 -->
- <dependency>
- <groupId>com.amazonaws</groupId>
- <artifactId>aws-java-sdk-s3</artifactId>
- <version>1.11.604</version>
- </dependency>
- <dependency>
- <groupId>com.amazonaws</groupId>
- <artifactId>aws-java-sdk-core</artifactId>
- <version>1.11.604</version>
- </dependency>
- </dependencies>
- <!-- 不使用自动生成代码
- <build>-->
- <!-- <plugins>-->
- <!-- <plugin>-->
- <!-- <groupId>org.openapitools</groupId>-->
- <!-- <artifactId>openapi-generator-maven-plugin</artifactId>-->
- <!-- <version>6.6.0</version>-->
- <!-- <executions>-->
- <!-- <execution>-->
- <!-- <goals>-->
- <!-- <goal>generate</goal>-->
- <!-- </goals>-->
- <!-- <configuration>-->
- <!-- <templateDirectory>${session.executionRootDirectory}/openapi/template</templateDirectory>-->
- <!-- <inputSpec>openapi/qzh.yaml</inputSpec>-->
- <!-- <generatorName>spring</generatorName>-->
- <!-- <apiPackage>com.crunii.micro.service.qzh.controller</apiPackage>-->
- <!-- <modelPackage>com.crunii.micro.service.qzh.api.domain.dto</modelPackage>-->
- <!-- <generateModelDocumentation>true</generateModelDocumentation>-->
- <!-- <skipValidateSpec>false</skipValidateSpec>-->
- <!-- <configOptions>-->
- <!-- <delegatePattern>true</delegatePattern>-->
- <!-- <title>swagger</title>-->
- <!-- <serializableModel>true</serializableModel>-->
- <!-- </configOptions>-->
- <!-- <!– https://github.com/OpenAPITools/openapi-generator/issues/4680#issuecomment-656199687–>-->
- <!-- <importMappings>-->
- <!-- <importMapping>Request=javax.servlet.http.HttpServletRequest</importMapping>-->
- <!-- </importMappings>-->
- <!-- </configuration>-->
- <!-- </execution>-->
- <!-- </executions>-->
- <!-- </plugin>-->
- <!-- <!– 指定多个源代码目录、多个资源文件目录 –>-->
- <!-- <plugin>-->
- <!-- <groupId>org.codehaus.mojo</groupId>-->
- <!-- <artifactId>build-helper-maven-plugin</artifactId>-->
- <!-- <version>3.3.0</version>-->
- <!-- <executions>-->
- <!-- <execution>-->
- <!-- <id>add-source</id>-->
- <!-- <phase>generate-sources</phase>-->
- <!-- <goals>-->
- <!-- <goal>add-source</goal>-->
- <!-- </goals>-->
- <!-- <configuration>-->
- <!-- <sources>-->
- <!-- <source>src/java/main</source>-->
- <!-- <source>-->
- <!-- ${project.build.directory}/generated-sources/openapi/src/java/main</source>-->
- <!-- </sources>-->
- <!-- </configuration>-->
- <!-- </execution>-->
- <!-- </executions>-->
- <!-- </plugin>-->
- <!-- </plugins>-->
- <!-- </build>-->
- </project>
|