|
6 | 6 | <groupId>apijson.boot</groupId>
|
7 | 7 | <artifactId>apijson-boot</artifactId>
|
8 | 8 | <version>5.1.5</version>
|
9 |
| - <!-- <packaging>jar</packaging> --> |
| 9 | + <packaging>jar</packaging> |
10 | 10 |
|
11 | 11 | <name>APIJSONBoot</name>
|
12 | 12 | <description>Demo project for APIJSON Server based on SpringBoot</description>
|
|
18 | 18 | </properties>
|
19 | 19 |
|
20 | 20 | <dependencies>
|
21 |
| - <!-- JDK 11+ 需要,否则启动报错 NoClassDefFoundError: javax/activation/UnsupportedDataTypeException --> |
22 |
| - <dependency> |
23 |
| - <groupId>javax.activation</groupId> |
24 |
| - <artifactId>activation</artifactId> |
25 |
| - <version>1.1.1</version> |
26 |
| - </dependency> |
| 21 | + <!-- JDK 11+ 需要,否则启动报错 NoClassDefFoundError: javax/activation/UnsupportedDataTypeException --> |
| 22 | + <dependency> |
| 23 | + <groupId>javax.activation</groupId> |
| 24 | + <artifactId>activation</artifactId> |
| 25 | + <version>1.1.1</version> |
| 26 | + </dependency> |
27 | 27 |
|
28 | 28 | <!-- APIJSON 需要用的依赖库,1.2.0 以上 -->
|
29 | 29 | <dependency>
|
|
53 | 53 | <dependency>
|
54 | 54 | <groupId>io.github.classgraph</groupId>
|
55 | 55 | <artifactId>classgraph</artifactId>
|
56 |
| - <version>4.8.87</version> |
| 56 | + <version>4.8.146</version> |
57 | 57 | </dependency>
|
58 | 58 | <!-- 单元测试:可使用 libs 目录的 unitauto-java.jar 和 unitauto-jar.jar 来替代,两种方式二选一 >>>>>>>>> -->
|
59 | 59 |
|
|
64 | 64 | <artifactId>APIJSON</artifactId>
|
65 | 65 | <version>5.1.5</version>
|
66 | 66 | </dependency>
|
67 |
| - <dependency> |
| 67 | + <dependency> |
68 | 68 | <groupId>com.github.APIJSON</groupId>
|
69 | 69 | <artifactId>apijson-framework</artifactId>
|
70 | 70 | <version>5.1.5</version>
|
|
80 | 80 | <dependency>
|
81 | 81 | <groupId>mysql</groupId>
|
82 | 82 | <artifactId>mysql-connector-java</artifactId>
|
83 |
| - <version>8.0.27</version> |
| 83 | + <version>8.0.29</version> |
84 | 84 | </dependency>
|
85 | 85 | <dependency>
|
86 | 86 | <groupId>org.postgresql</groupId>
|
87 | 87 | <artifactId>postgresql</artifactId>
|
88 |
| - <version>42.2.18</version> |
| 88 | + <version>42.3.4</version> |
89 | 89 | </dependency>
|
90 | 90 | <dependency>
|
91 | 91 | <groupId>net.sourceforge.jtds</groupId>
|
|
110 | 110 | <plugin>
|
111 | 111 | <groupId>org.springframework.boot</groupId>
|
112 | 112 | <artifactId>spring-boot-maven-plugin</artifactId>
|
| 113 | + <executions> |
| 114 | + <execution> |
| 115 | + <goals> |
| 116 | + <goal>repackage</goal> |
| 117 | + </goals> |
| 118 | + </execution> |
| 119 | + </executions> |
113 | 120 | </plugin>
|
114 | 121 | <plugin>
|
115 | 122 | <groupId>org.apache.maven.plugins</groupId>
|
|
0 commit comments