pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <parent>
  4. <groupId>com.crunii.microservice</groupId>
  5. <artifactId>service-qm</artifactId>
  6. <version>${micro.version}</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>service-qm-biz</artifactId>
  10. <packaging>jar</packaging>
  11. <properties>
  12. <start-class>com.crunii.micro.service.qm.QmApplication</start-class>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>cn.hutool</groupId>
  17. <artifactId>hutool-dfa</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.crunii.microservice</groupId>
  21. <artifactId>service-qm-api</artifactId>
  22. <version>${micro.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.crunii.microservice</groupId>
  26. <artifactId>micro-common-swagger</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.crunii.microservice</groupId>
  30. <artifactId>micro-common-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.belerweb</groupId>
  34. <artifactId>pinyin4j</artifactId>
  35. <version>2.5.1</version>
  36. </dependency>
  37. <!-- 引用亚马逊s3包 start-->
  38. <!-- https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk-s3 -->
  39. <dependency>
  40. <groupId>com.amazonaws</groupId>
  41. <artifactId>aws-java-sdk-s3</artifactId>
  42. <version>1.11.604</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.amazonaws</groupId>
  46. <artifactId>aws-java-sdk-core</artifactId>
  47. <version>1.11.604</version>
  48. </dependency>
  49. </dependencies>
  50. <!-- 不使用自动生成代码
  51. <build>-->
  52. <!-- <plugins>-->
  53. <!-- <plugin>-->
  54. <!-- <groupId>org.openapitools</groupId>-->
  55. <!-- <artifactId>openapi-generator-maven-plugin</artifactId>-->
  56. <!-- <version>6.6.0</version>-->
  57. <!-- <executions>-->
  58. <!-- <execution>-->
  59. <!-- <goals>-->
  60. <!-- <goal>generate</goal>-->
  61. <!-- </goals>-->
  62. <!-- <configuration>-->
  63. <!-- <templateDirectory>${session.executionRootDirectory}/openapi/template</templateDirectory>-->
  64. <!-- <inputSpec>openapi/qzh.yaml</inputSpec>-->
  65. <!-- <generatorName>spring</generatorName>-->
  66. <!-- <apiPackage>com.crunii.micro.service.qzh.controller</apiPackage>-->
  67. <!-- <modelPackage>com.crunii.micro.service.qzh.api.domain.dto</modelPackage>-->
  68. <!-- <generateModelDocumentation>true</generateModelDocumentation>-->
  69. <!-- <skipValidateSpec>false</skipValidateSpec>-->
  70. <!-- <configOptions>-->
  71. <!-- <delegatePattern>true</delegatePattern>-->
  72. <!-- <title>swagger</title>-->
  73. <!-- <serializableModel>true</serializableModel>-->
  74. <!-- </configOptions>-->
  75. <!-- &lt;!&ndash; https://github.com/OpenAPITools/openapi-generator/issues/4680#issuecomment-656199687&ndash;&gt;-->
  76. <!-- <importMappings>-->
  77. <!-- <importMapping>Request=javax.servlet.http.HttpServletRequest</importMapping>-->
  78. <!-- </importMappings>-->
  79. <!-- </configuration>-->
  80. <!-- </execution>-->
  81. <!-- </executions>-->
  82. <!-- </plugin>-->
  83. <!-- &lt;!&ndash; 指定多个源代码目录、多个资源文件目录 &ndash;&gt;-->
  84. <!-- <plugin>-->
  85. <!-- <groupId>org.codehaus.mojo</groupId>-->
  86. <!-- <artifactId>build-helper-maven-plugin</artifactId>-->
  87. <!-- <version>3.3.0</version>-->
  88. <!-- <executions>-->
  89. <!-- <execution>-->
  90. <!-- <id>add-source</id>-->
  91. <!-- <phase>generate-sources</phase>-->
  92. <!-- <goals>-->
  93. <!-- <goal>add-source</goal>-->
  94. <!-- </goals>-->
  95. <!-- <configuration>-->
  96. <!-- <sources>-->
  97. <!-- <source>src/java/main</source>-->
  98. <!-- <source>-->
  99. <!-- ${project.build.directory}/generated-sources/openapi/src/java/main</source>-->
  100. <!-- </sources>-->
  101. <!-- </configuration>-->
  102. <!-- </execution>-->
  103. <!-- </executions>-->
  104. <!-- </plugin>-->
  105. <!-- </plugins>-->
  106. <!-- </build>-->
  107. </project>