|
6 | 6 |
|
7 | 7 | <groupId>zenuo</groupId>
|
8 | 8 | <artifactId>gogo</artifactId>
|
9 |
| - <version>1.7.3</version> |
| 9 | + <version>1.7.4</version> |
10 | 10 |
|
11 | 11 | <packaging>jar</packaging>
|
12 | 12 |
|
13 | 13 | <properties>
|
14 | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
15 | 15 | </properties>
|
16 | 16 |
|
17 |
| - <parent> |
18 |
| - <groupId>org.springframework.boot</groupId> |
19 |
| - <artifactId>spring-boot-starter-parent</artifactId> |
20 |
| - <version>2.2.4.RELEASE</version> |
21 |
| - </parent> |
22 |
| - |
23 | 17 | <build>
|
24 | 18 | <finalName>gogo</finalName>
|
25 | 19 | <plugins>
|
26 |
| - <plugin> |
27 |
| - <groupId>org.springframework.boot</groupId> |
28 |
| - <artifactId>spring-boot-maven-plugin</artifactId> |
29 |
| - </plugin> |
30 | 20 | <plugin>
|
31 | 21 | <groupId>org.apache.maven.plugins</groupId>
|
32 | 22 | <artifactId>maven-compiler-plugin</artifactId>
|
|
36 | 26 | <target>11</target>
|
37 | 27 | </configuration>
|
38 | 28 | </plugin>
|
| 29 | + <plugin> |
| 30 | + <groupId>org.apache.maven.plugins</groupId> |
| 31 | + <artifactId>maven-shade-plugin</artifactId> |
| 32 | + <version>3.2.4</version> |
| 33 | + <executions> |
| 34 | + <execution> |
| 35 | + <phase>package</phase> |
| 36 | + <goals> |
| 37 | + <goal>shade</goal> |
| 38 | + </goals> |
| 39 | + <configuration> |
| 40 | + <transformers> |
| 41 | + <transformer |
| 42 | + implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 43 | + <mainClass>zenuo.gogo.GogoApplication</mainClass> |
| 44 | + </transformer> |
| 45 | + </transformers> |
| 46 | + </configuration> |
| 47 | + </execution> |
| 48 | + </executions> |
| 49 | + </plugin> |
39 | 50 | </plugins>
|
40 | 51 | </build>
|
41 | 52 |
|
42 | 53 | <dependencies>
|
43 |
| - <dependency> |
44 |
| - <groupId>org.springframework.boot</groupId> |
45 |
| - <artifactId>spring-boot-starter</artifactId> |
46 |
| - </dependency> |
47 | 54 | <dependency>
|
48 | 55 | <groupId>org.jsoup</groupId>
|
49 | 56 | <artifactId>jsoup</artifactId>
|
|
57 | 64 | <dependency>
|
58 | 65 | <groupId>com.fasterxml.jackson.core</groupId>
|
59 | 66 | <artifactId>jackson-databind</artifactId>
|
60 |
| - <version>2.10.2</version> |
| 67 | + <version>2.11.1</version> |
61 | 68 | </dependency>
|
62 | 69 | <dependency>
|
63 | 70 | <groupId>io.netty</groupId>
|
|
80 | 87 | <version>3.8.1</version>
|
81 | 88 | </dependency>
|
82 | 89 | <dependency>
|
83 |
| - <groupId>org.springframework.boot</groupId> |
84 |
| - <artifactId>spring-boot-test</artifactId> |
| 90 | + <groupId>org.testng</groupId> |
| 91 | + <artifactId>testng</artifactId> |
| 92 | + <version>7.1.0</version> |
85 | 93 | <scope>test</scope>
|
86 | 94 | </dependency>
|
87 | 95 | <dependency>
|
88 |
| - <groupId>org.springframework</groupId> |
89 |
| - <artifactId>spring-test</artifactId> |
90 |
| - <scope>test</scope> |
| 96 | + <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 97 | + <artifactId>jackson-dataformat-yaml</artifactId> |
| 98 | + <version>2.11.1</version> |
91 | 99 | </dependency>
|
92 | 100 | <dependency>
|
93 |
| - <groupId>org.testng</groupId> |
94 |
| - <artifactId>testng</artifactId> |
95 |
| - <version>7.1.0</version> |
96 |
| - <scope>test</scope> |
| 101 | + <groupId>org.apache.commons</groupId> |
| 102 | + <artifactId>commons-lang3</artifactId> |
| 103 | + <version>3.11</version> |
| 104 | + </dependency> |
| 105 | + <dependency> |
| 106 | + <groupId>commons-io</groupId> |
| 107 | + <artifactId>commons-io</artifactId> |
| 108 | + <version>2.7</version> |
97 | 109 | </dependency>
|
98 | 110 |
|
99 | 111 | <dependency>
|
|
0 commit comments