|
27 | 27 | <artifactId>spring-boot-starter-jdbc</artifactId>
|
28 | 28 | </dependency>
|
29 | 29 |
|
30 | | - |
31 | 30 | <dependency>
|
32 | 31 | <groupId>org.springframework.boot</groupId>
|
33 | 32 | <artifactId>spring-boot-starter-security</artifactId>
|
|
48 | 47 | <artifactId>spring-boot-starter-validation</artifactId>
|
49 | 48 | </dependency>
|
50 | 49 |
|
| 50 | + <dependency> |
| 51 | + <groupId>org.springframework.boot</groupId> |
| 52 | + <artifactId>spring-boot-starter-websocket</artifactId> |
| 53 | + </dependency> |
| 54 | + |
51 | 55 | <dependency>
|
52 | 56 | <groupId>org.mybatis.spring.boot</groupId>
|
53 | 57 | <artifactId>mybatis-spring-boot-starter</artifactId>
|
|
65 | 69 | <version>3.12.0</version>
|
66 | 70 | </dependency>
|
67 | 71 |
|
| 72 | + <dependency> |
| 73 | + <groupId>org.apache.commons</groupId> |
| 74 | + <artifactId>commons-collections4</artifactId> |
| 75 | + <version>4.1</version> |
| 76 | + </dependency> |
| 77 | + |
68 | 78 | <dependency>
|
69 | 79 | <groupId>commons-io</groupId>
|
70 | 80 | <artifactId>commons-io</artifactId>
|
|
115 | 125 | </dependencies>
|
116 | 126 |
|
117 | 127 | <build>
|
| 128 | + <finalName>${project.artifactId}</finalName> |
118 | 129 | <plugins>
|
119 | 130 | <plugin>
|
120 | 131 | <groupId>org.springframework.boot</groupId>
|
121 | 132 | <artifactId>spring-boot-maven-plugin</artifactId>
|
| 133 | + <configuration> |
| 134 | + <executable>true</executable> |
| 135 | + </configuration> |
122 | 136 | </plugin>
|
123 | 137 | </plugins>
|
124 | 138 | </build>
|
|
0 commit comments