|
12 | 12 | <description>JAVA开发常用工具集</description> |
13 | 13 |
|
14 | 14 | <properties> |
15 | | - <maven.compiler.source>8</maven.compiler.source> |
16 | | - <maven.compiler.target>8</maven.compiler.target> |
| 15 | + <maven.compiler.source>17</maven.compiler.source> |
| 16 | + <maven.compiler.target>17</maven.compiler.target> |
17 | 17 | <!-- 工程源码编码 --> |
18 | 18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
19 | 19 | <!-- 工程导出编码 --> |
|
23 | 23 | <encoding>UTF-8</encoding> |
24 | 24 | <!-- junit版本 --> |
25 | 25 | <junit.version>4.13.2</junit.version> |
26 | | - <!-- servlet版本 --> |
27 | | - <servlet.api.version>4.0.1</servlet.api.version> |
28 | 26 | <!-- jackson版本 --> |
29 | 27 | <jackson.version>2.16.0</jackson.version> |
30 | 28 | <!-- okhttp3版本 --> |
31 | 29 | <!--<okhttp.version>4.11.0</okhttp.version>--> |
32 | 30 | <okhttp.version>4.9.3</okhttp.version> |
33 | | - <!-- google thumbnailator --> |
34 | | - <google-thumbnailator.version>0.4.17</google-thumbnailator.version> |
35 | 31 | <slf4j-api.version>2.0.3</slf4j-api.version> |
36 | | - <transmittable-thread-local.version>2.14.2</transmittable-thread-local.version> |
37 | 32 | <maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version> |
38 | 33 | <maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version> |
39 | | - <!-- jsoup 网页解析 --> |
40 | | - <jsoup.version>1.15.3</jsoup.version> |
41 | 34 | </properties> |
42 | 35 |
|
43 | 36 | <dependencies> |
|
80 | 73 | <version>${jackson.version}</version> |
81 | 74 | </dependency> |
82 | 75 |
|
83 | | - <!-- 图片压缩 Google --> |
84 | | - <dependency> |
85 | | - <groupId>net.coobird</groupId> |
86 | | - <artifactId>thumbnailator</artifactId> |
87 | | - <version>${google-thumbnailator.version}</version> |
88 | | - <scope>provided</scope> |
89 | | - </dependency> |
90 | | - |
91 | 76 | <dependency> |
92 | 77 | <groupId>org.slf4j</groupId> |
93 | 78 | <artifactId>slf4j-api</artifactId> |
94 | 79 | <version>${slf4j-api.version}</version> |
95 | 80 | <scope>provided</scope> |
96 | 81 | </dependency> |
97 | 82 |
|
98 | | - <dependency> |
99 | | - <groupId>com.alibaba</groupId> |
100 | | - <artifactId>transmittable-thread-local</artifactId> |
101 | | - <version>${transmittable-thread-local.version}</version> |
102 | | - </dependency> |
103 | | - |
104 | 83 | <dependency> |
105 | 84 | <groupId>org.apache.maven.plugins</groupId> |
106 | 85 | <artifactId>maven-javadoc-plugin</artifactId> |
|
122 | 101 | <scope>test</scope> |
123 | 102 | </dependency> |
124 | 103 |
|
125 | | - <!-- jsoup 网页解析 --> |
126 | | - <dependency> |
127 | | - <groupId>org.jsoup</groupId> |
128 | | - <artifactId>jsoup</artifactId> |
129 | | - <version>${jsoup.version}</version> |
130 | | - </dependency> |
131 | | - |
132 | 104 | <!-- okhttp --> |
133 | 105 | <dependency> |
134 | 106 | <groupId>com.squareup.okhttp3</groupId> |
|
0 commit comments