123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?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>
- <artifactId>services</artifactId>
- <groupId>com.crunii.microservice</groupId>
- <version>${micro.version}</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>service-qzh</artifactId>
- <packaging>pom</packaging>
- <modules>
- <module>service-qzh-api</module>
- <module>service-qzh-biz</module>
- </modules>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.mapstruct</groupId>
- <artifactId>mapstruct</artifactId>
- </dependency>
- <dependency>
- <groupId>org.mapstruct</groupId>
- <artifactId>mapstruct-processor</artifactId>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.openapitools/jackson-databind-nullable -->
- <dependency>
- <groupId>org.openapitools</groupId>
- <artifactId>jackson-databind-nullable</artifactId>
- <version>0.2.1</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/io.swagger.core.v3/swagger-annotations -->
- <dependency>
- <groupId>io.swagger.core.v3</groupId>
- <artifactId>swagger-annotations</artifactId>
- <version>2.2.15</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.springdoc/springdoc-openapi-common -->
- <dependency>
- <groupId>org.springdoc</groupId>
- <artifactId>springdoc-openapi-common</artifactId>
- <version>1.7.0</version>
- </dependency>
- </dependencies>
- </project>
|