| | |
| | | <!-- <artifactId>spring-boot-devtools</artifactId>--> |
| | | <!-- <optional>true</optional> <!– 表示依赖不会传递 –>--> |
| | | <!-- </dependency>--> |
| | | <dependency> |
| | | <groupId>org.springframework</groupId> |
| | | <artifactId>spring-test</artifactId> |
| | | <version>5.3.2</version> |
| | | <scope>compile</scope> |
| | | </dependency> |
| | | |
| | | <!-- swagger3--> |
| | | <dependency> |
| | |
| | | <version>5.2.0</version> |
| | | </dependency> |
| | | |
| | | |
| | | |
| | | <!-- https://mvnrepository.com/artifact/com.drewnoakes/metadata-extractor --> |
| | | |
| | | |
| | | <dependency> |
| | | <groupId>org.apache.commons</groupId> |
| | | <artifactId>commons-imaging</artifactId> |
| | | <version>1.0.0-alpha6</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>com.drewnoakes</groupId> |
| | | <artifactId>metadata-extractor</artifactId> |
| | | <version>2.19.0</version> |
| | | </dependency> |
| | | <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 --> |
| | | <dependency> |
| | | <groupId>io.swagger</groupId> |
| | |
| | | <failOnMissingWebXml>false</failOnMissingWebXml> |
| | | <warName>${project.artifactId}</warName> |
| | | </configuration> |
| | | </plugin> |
| | | </plugin> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-compiler-plugin</artifactId> |
| | | <configuration> |
| | | <source>1.8</source> |
| | | <target>1.8</target> |
| | | </configuration> |
| | | </plugin> |
| | | </plugins> |
| | | <finalName>${project.artifactId}</finalName> |
| | | </build> |