pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>services</artifactId>
  7. <groupId>com.crunii.microservice</groupId>
  8. <version>${micro.version}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>service-qzh</artifactId>
  12. <packaging>pom</packaging>
  13. <modules>
  14. <module>service-qzh-api</module>
  15. <module>service-qzh-biz</module>
  16. </modules>
  17. <properties>
  18. <maven.compiler.source>8</maven.compiler.source>
  19. <maven.compiler.target>8</maven.compiler.target>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.mapstruct</groupId>
  25. <artifactId>mapstruct</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.mapstruct</groupId>
  29. <artifactId>mapstruct-processor</artifactId>
  30. </dependency>
  31. <!-- https://mvnrepository.com/artifact/org.openapitools/jackson-databind-nullable -->
  32. <dependency>
  33. <groupId>org.openapitools</groupId>
  34. <artifactId>jackson-databind-nullable</artifactId>
  35. <version>0.2.1</version>
  36. </dependency>
  37. <!-- https://mvnrepository.com/artifact/io.swagger.core.v3/swagger-annotations -->
  38. <dependency>
  39. <groupId>io.swagger.core.v3</groupId>
  40. <artifactId>swagger-annotations</artifactId>
  41. <version>2.2.15</version>
  42. </dependency>
  43. <!-- https://mvnrepository.com/artifact/org.springdoc/springdoc-openapi-common -->
  44. <dependency>
  45. <groupId>org.springdoc</groupId>
  46. <artifactId>springdoc-openapi-common</artifactId>
  47. <version>1.7.0</version>
  48. </dependency>
  49. </dependencies>
  50. </project>