|
6 | 6 |
|
7 | 7 | <groupId>org.aoju</groupId> |
8 | 8 | <artifactId>bus-base</artifactId> |
9 | | - <version>5.1.0</version> |
| 9 | + <version>5.2.0</version> |
10 | 10 | <packaging>jar</packaging> |
11 | 11 |
|
12 | 12 | <name>${project.artifactId}</name> |
13 | 13 | <description>Bus Base</description> |
14 | 14 | <url>https://github.com/aoju/bus</url> |
15 | 15 |
|
| 16 | + <parent> |
| 17 | + <groupId>org.springframework.boot</groupId> |
| 18 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 19 | + <version>2.1.9.RELEASE</version> |
| 20 | + </parent> |
| 21 | + |
16 | 22 | <properties> |
17 | 23 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
18 | 24 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
19 | 25 | <project.compiler.version>1.8</project.compiler.version> |
| 26 | + <swagger.version>2.9.2</swagger.version> |
20 | 27 | </properties> |
21 | 28 |
|
22 | 29 | <dependencies> |
|
32 | 39 | </dependency> |
33 | 40 | <dependency> |
34 | 41 | <groupId>org.aoju</groupId> |
35 | | - <artifactId>bus-swagger</artifactId> |
| 42 | + <artifactId>bus-logger</artifactId> |
36 | 43 | <version>${project.version}</version> |
37 | 44 | </dependency> |
38 | 45 | <dependency> |
39 | | - <groupId>org.aoju</groupId> |
40 | | - <artifactId>bus-logger</artifactId> |
41 | | - <version>${project.version}</version> |
| 46 | + <groupId>io.springfox</groupId> |
| 47 | + <artifactId>springfox-swagger2</artifactId> |
| 48 | + <version>${swagger.version}</version> |
| 49 | + <exclusions> |
| 50 | + <exclusion> |
| 51 | + <groupId>org.springframework</groupId> |
| 52 | + <artifactId>spring-core</artifactId> |
| 53 | + </exclusion> |
| 54 | + <exclusion> |
| 55 | + <groupId>org.springframework</groupId> |
| 56 | + <artifactId>spring-aop</artifactId> |
| 57 | + </exclusion> |
| 58 | + <exclusion> |
| 59 | + <groupId>org.springframework</groupId> |
| 60 | + <artifactId>spring-beans</artifactId> |
| 61 | + </exclusion> |
| 62 | + <exclusion> |
| 63 | + <groupId>org.springframework</groupId> |
| 64 | + <artifactId>spring-context</artifactId> |
| 65 | + </exclusion> |
| 66 | + <exclusion> |
| 67 | + <groupId>org.springframework</groupId> |
| 68 | + <artifactId>spring-expression</artifactId> |
| 69 | + </exclusion> |
| 70 | + <exclusion> |
| 71 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 72 | + <artifactId>jackson-databind</artifactId> |
| 73 | + </exclusion> |
| 74 | + <exclusion> |
| 75 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 76 | + <artifactId>jackson-core</artifactId> |
| 77 | + </exclusion> |
| 78 | + <exclusion> |
| 79 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 80 | + <artifactId>jackson-annotations</artifactId> |
| 81 | + </exclusion> |
| 82 | + <exclusion> |
| 83 | + <artifactId>byte-buddy</artifactId> |
| 84 | + <groupId>net.bytebuddy</groupId> |
| 85 | + </exclusion> |
| 86 | + <exclusion> |
| 87 | + <artifactId>slf4j-api</artifactId> |
| 88 | + <groupId>org.slf4j</groupId> |
| 89 | + </exclusion> |
| 90 | + <exclusion> |
| 91 | + <groupId>com.google.guava</groupId> |
| 92 | + <artifactId>guava</artifactId> |
| 93 | + </exclusion> |
| 94 | + <exclusion> |
| 95 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 96 | + <artifactId>jackson-annotations</artifactId> |
| 97 | + </exclusion> |
| 98 | + <exclusion> |
| 99 | + <groupId>io.swagger</groupId> |
| 100 | + <artifactId>swagger-annotations</artifactId> |
| 101 | + </exclusion> |
| 102 | + <exclusion> |
| 103 | + <groupId>io.swagger</groupId> |
| 104 | + <artifactId>swagger-models</artifactId> |
| 105 | + </exclusion> |
| 106 | + </exclusions> |
| 107 | + </dependency> |
| 108 | + <dependency> |
| 109 | + <groupId>io.swagger</groupId> |
| 110 | + <artifactId>swagger-annotations</artifactId> |
| 111 | + <version>1.5.22</version> |
| 112 | + </dependency> |
| 113 | + <dependency> |
| 114 | + <groupId>io.swagger</groupId> |
| 115 | + <artifactId>swagger-models</artifactId> |
| 116 | + <version>1.5.22</version> |
| 117 | + </dependency> |
| 118 | + <dependency> |
| 119 | + <groupId>org.springframework.boot</groupId> |
| 120 | + <artifactId>spring-boot-starter-web</artifactId> |
42 | 121 | </dependency> |
43 | 122 | </dependencies> |
44 | 123 |
|
|
0 commit comments