123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>cn.superdesk.uniorder</groupId>
- <artifactId>superdesk-operation-center</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <artifactId>superdesk-uniorder-openapi</artifactId>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
- </dependency>
- <!-- <!– https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 –>-->
- <!-- <dependency>-->
- <!-- <groupId>io.springfox</groupId>-->
- <!-- <artifactId>springfox-swagger2</artifactId>-->
- <!-- <version>3.0.0</version>-->
- <!-- </dependency>-->
- <!-- <!– https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui –>-->
- <!-- <dependency>-->
- <!-- <groupId>io.springfox</groupId>-->
- <!-- <artifactId>springfox-swagger-ui</artifactId>-->
- <!-- <version>3.0.0</version>-->
- <!-- </dependency>-->
- <!-- <!– https://mvnrepository.com/artifact/io.springfox/springfox-bean-validators –>-->
- <!-- <dependency>-->
- <!-- <groupId>io.springfox</groupId>-->
- <!-- <artifactId>springfox-bean-validators</artifactId>-->
- <!-- <version>3.0.0</version>-->
- <!-- <scope>compile</scope>-->
- <!-- </dependency>-->
- <!-- RESTful APIs swagger2 -->
- <!-- <dependency>-->
- <!-- <groupId>io.springfox</groupId>-->
- <!-- <artifactId>springfox-swagger2</artifactId>-->
- <!-- <version>${swagger.version}</version>-->
- <!-- <exclusions>-->
- <!-- <exclusion>-->
- <!-- <groupId>io.swagger</groupId>-->
- <!-- <artifactId>swagger-annotations</artifactId>-->
- <!-- </exclusion>-->
- <!-- <exclusion>-->
- <!-- <groupId>io.swagger</groupId>-->
- <!-- <artifactId>swagger-models</artifactId>-->
- <!-- </exclusion>-->
- <!-- </exclusions>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>io.springfox</groupId>-->
- <!-- <artifactId>springfox-swagger-ui</artifactId>-->
- <!-- <version>${swagger.version}</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>io.swagger</groupId>-->
- <!-- <artifactId>swagger-annotations</artifactId>-->
- <!-- <version>1.5.21</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>io.swagger</groupId>-->
- <!-- <artifactId>swagger-models</artifactId>-->
- <!-- <version>1.5.21</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>com.github.xiaoymin</groupId>
- <artifactId>knife4j-spring-boot-starter</artifactId>
- <!-- <version>2.0.1</version>-->
- <!-- <version>3.0.2</version>-->
- <version>3.0.3</version>
- </dependency>
- <dependency>
- <groupId>cn.superdesk.uniorder</groupId>
- <artifactId>superdesk-uniorder-dubbo-facade</artifactId>
- <version>${project.parent.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.superdesk.uniorder</groupId>
- <artifactId>superdesk-uniorder-dubbo-consumer</artifactId>
- <version>${project.parent.version}</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>com.github.xiaoymin</groupId>-->
- <!-- <artifactId>knife4j-extension</artifactId>-->
- <!-- </dependency>-->
- </dependencies>
- </project>
|