|
6 | 6 |
|
7 | 7 | <groupId>org.aoju</groupId> |
8 | 8 | <artifactId>bus-all</artifactId> |
9 | | - <version>5.2.0</version> |
| 9 | + <version>5.2.1</version> |
10 | 10 | <packaging>jar</packaging> |
11 | 11 |
|
12 | 12 | <name>${project.artifactId}</name> |
|
100 | 100 | </properties> |
101 | 101 |
|
102 | 102 | <dependencies> |
| 103 | + <!--bus-base--> |
| 104 | + <dependency> |
| 105 | + <groupId>io.springfox</groupId> |
| 106 | + <artifactId>springfox-swagger2</artifactId> |
| 107 | + <version>${swagger.version}</version> |
| 108 | + <exclusions> |
| 109 | + <exclusion> |
| 110 | + <groupId>org.springframework</groupId> |
| 111 | + <artifactId>spring-core</artifactId> |
| 112 | + </exclusion> |
| 113 | + <exclusion> |
| 114 | + <groupId>org.springframework</groupId> |
| 115 | + <artifactId>spring-aop</artifactId> |
| 116 | + </exclusion> |
| 117 | + <exclusion> |
| 118 | + <groupId>org.springframework</groupId> |
| 119 | + <artifactId>spring-beans</artifactId> |
| 120 | + </exclusion> |
| 121 | + <exclusion> |
| 122 | + <groupId>org.springframework</groupId> |
| 123 | + <artifactId>spring-context</artifactId> |
| 124 | + </exclusion> |
| 125 | + <exclusion> |
| 126 | + <groupId>org.springframework</groupId> |
| 127 | + <artifactId>spring-expression</artifactId> |
| 128 | + </exclusion> |
| 129 | + <exclusion> |
| 130 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 131 | + <artifactId>jackson-databind</artifactId> |
| 132 | + </exclusion> |
| 133 | + <exclusion> |
| 134 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 135 | + <artifactId>jackson-core</artifactId> |
| 136 | + </exclusion> |
| 137 | + <exclusion> |
| 138 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 139 | + <artifactId>jackson-annotations</artifactId> |
| 140 | + </exclusion> |
| 141 | + <exclusion> |
| 142 | + <artifactId>byte-buddy</artifactId> |
| 143 | + <groupId>net.bytebuddy</groupId> |
| 144 | + </exclusion> |
| 145 | + <exclusion> |
| 146 | + <artifactId>slf4j-api</artifactId> |
| 147 | + <groupId>org.slf4j</groupId> |
| 148 | + </exclusion> |
| 149 | + <exclusion> |
| 150 | + <groupId>com.google.guava</groupId> |
| 151 | + <artifactId>guava</artifactId> |
| 152 | + </exclusion> |
| 153 | + <exclusion> |
| 154 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 155 | + <artifactId>jackson-annotations</artifactId> |
| 156 | + </exclusion> |
| 157 | + <exclusion> |
| 158 | + <groupId>io.swagger</groupId> |
| 159 | + <artifactId>swagger-annotations</artifactId> |
| 160 | + </exclusion> |
| 161 | + <exclusion> |
| 162 | + <groupId>io.swagger</groupId> |
| 163 | + <artifactId>swagger-models</artifactId> |
| 164 | + </exclusion> |
| 165 | + </exclusions> |
| 166 | + </dependency> |
| 167 | + <dependency> |
| 168 | + <groupId>io.swagger</groupId> |
| 169 | + <artifactId>swagger-annotations</artifactId> |
| 170 | + <version>1.5.22</version> |
| 171 | + </dependency> |
| 172 | + <dependency> |
| 173 | + <groupId>io.swagger</groupId> |
| 174 | + <artifactId>swagger-models</artifactId> |
| 175 | + <version>1.5.22</version> |
| 176 | + </dependency> |
103 | 177 | <!--bus-cache--> |
104 | 178 | <dependency> |
105 | 179 | <groupId>org.aspectj</groupId> |
|
521 | 595 | <version>${upyun.oss.version}</version> |
522 | 596 | <optional>true</optional> |
523 | 597 | </dependency> |
524 | | - <!--bus-swagger--> |
525 | | - <dependency> |
526 | | - <groupId>io.springfox</groupId> |
527 | | - <artifactId>springfox-swagger2</artifactId> |
528 | | - <version>${swagger.version}</version> |
529 | | - <exclusions> |
530 | | - <exclusion> |
531 | | - <groupId>org.springframework</groupId> |
532 | | - <artifactId>spring-core</artifactId> |
533 | | - </exclusion> |
534 | | - <exclusion> |
535 | | - <groupId>org.springframework</groupId> |
536 | | - <artifactId>spring-aop</artifactId> |
537 | | - </exclusion> |
538 | | - <exclusion> |
539 | | - <groupId>org.springframework</groupId> |
540 | | - <artifactId>spring-beans</artifactId> |
541 | | - </exclusion> |
542 | | - <exclusion> |
543 | | - <groupId>org.springframework</groupId> |
544 | | - <artifactId>spring-context</artifactId> |
545 | | - </exclusion> |
546 | | - <exclusion> |
547 | | - <groupId>org.springframework</groupId> |
548 | | - <artifactId>spring-expression</artifactId> |
549 | | - </exclusion> |
550 | | - <exclusion> |
551 | | - <groupId>com.fasterxml.jackson.core</groupId> |
552 | | - <artifactId>jackson-databind</artifactId> |
553 | | - </exclusion> |
554 | | - <exclusion> |
555 | | - <groupId>com.fasterxml.jackson.core</groupId> |
556 | | - <artifactId>jackson-core</artifactId> |
557 | | - </exclusion> |
558 | | - <exclusion> |
559 | | - <groupId>com.fasterxml.jackson.core</groupId> |
560 | | - <artifactId>jackson-annotations</artifactId> |
561 | | - </exclusion> |
562 | | - <exclusion> |
563 | | - <artifactId>byte-buddy</artifactId> |
564 | | - <groupId>net.bytebuddy</groupId> |
565 | | - </exclusion> |
566 | | - <exclusion> |
567 | | - <artifactId>slf4j-api</artifactId> |
568 | | - <groupId>org.slf4j</groupId> |
569 | | - </exclusion> |
570 | | - <exclusion> |
571 | | - <groupId>com.google.guava</groupId> |
572 | | - <artifactId>guava</artifactId> |
573 | | - </exclusion> |
574 | | - <exclusion> |
575 | | - <groupId>com.fasterxml.jackson.core</groupId> |
576 | | - <artifactId>jackson-annotations</artifactId> |
577 | | - </exclusion> |
578 | | - <exclusion> |
579 | | - <groupId>io.swagger</groupId> |
580 | | - <artifactId>swagger-annotations</artifactId> |
581 | | - </exclusion> |
582 | | - <exclusion> |
583 | | - <groupId>io.swagger</groupId> |
584 | | - <artifactId>swagger-models</artifactId> |
585 | | - </exclusion> |
586 | | - </exclusions> |
587 | | - </dependency> |
588 | | - <dependency> |
589 | | - <groupId>io.swagger</groupId> |
590 | | - <artifactId>swagger-annotations</artifactId> |
591 | | - <version>1.5.22</version> |
592 | | - </dependency> |
593 | | - <dependency> |
594 | | - <groupId>io.swagger</groupId> |
595 | | - <artifactId>swagger-models</artifactId> |
596 | | - <version>1.5.22</version> |
597 | | - </dependency> |
598 | 598 | <!--bus-tracer--> |
599 | 599 | <dependency> |
600 | 600 | <groupId>org.apache.httpcomponents</groupId> |
|
0 commit comments