|
49 | 49 | <version>7.1.0</version> |
50 | 50 | </dependency> |
51 | 51 |
|
52 | | - <dependency> |
53 | | - <groupId>org.javatuples</groupId> |
54 | | - <artifactId>javatuples</artifactId> |
55 | | - <version>1.2</version> |
56 | | - </dependency> |
57 | | - |
58 | 52 | <dependency> |
59 | 53 | <groupId>org.projectlombok</groupId> |
60 | 54 | <artifactId>lombok</artifactId> |
61 | 55 | <scope>provided</scope> |
62 | 56 | </dependency> |
63 | 57 |
|
64 | | - <dependency> |
65 | | - <groupId>org.mockito</groupId> |
66 | | - <artifactId>mockito-inline</artifactId> |
67 | | - <version>5.2.0</version> |
68 | | - <scope>test</scope> |
69 | | - </dependency> |
70 | | - |
71 | 58 | <dependency> |
72 | 59 | <groupId>org.springframework.boot</groupId> |
73 | 60 | <artifactId>spring-boot-starter-web</artifactId> |
|
107 | 94 | <version>2.8.5</version> |
108 | 95 | </dependency> |
109 | 96 |
|
110 | | - <dependency> |
111 | | - <groupId>ch.qos.logback</groupId> |
112 | | - <artifactId>logback-core</artifactId> |
113 | | - <version>1.5.17</version> |
114 | | - </dependency> |
115 | | - |
116 | 97 | <dependency> |
117 | 98 | <groupId>com.fasterxml.jackson.core</groupId> |
118 | 99 | <artifactId>jackson-databind</artifactId> |
|
125 | 106 | <version>2.18.3</version> |
126 | 107 | </dependency> |
127 | 108 |
|
128 | | - <dependency> |
129 | | - <groupId>com.fasterxml.jackson.core</groupId> |
130 | | - <artifactId>jackson-annotations</artifactId> |
131 | | - <version>3.0-rc1</version> |
132 | | - </dependency> |
133 | | - |
134 | 109 | <dependency> |
135 | 110 | <groupId>org.apache.commons</groupId> |
136 | 111 | <artifactId>commons-math3</artifactId> |
|
143 | 118 | <version>9.12.4544</version> |
144 | 119 | </dependency> |
145 | 120 |
|
146 | | - <dependency> |
147 | | - <groupId>org.springframework.boot</groupId> |
148 | | - <artifactId>spring-boot-starter-validation</artifactId> |
149 | | - </dependency> |
150 | | - |
151 | 121 | </dependencies> |
152 | 122 |
|
153 | 123 | <build> |
154 | 124 | <plugins> |
155 | | - <plugin> |
156 | | - <groupId>org.apache.maven.plugins</groupId> |
157 | | - <artifactId>maven-shade-plugin</artifactId> |
158 | | - <executions> |
159 | | - <execution> |
160 | | - <phase>package</phase> |
161 | | - <goals> |
162 | | - <goal>shade</goal> |
163 | | - </goals> |
164 | | - <configuration> |
165 | | - <finalName>cws</finalName> |
166 | | - <minimizeJar>true</minimizeJar> |
167 | | - <transformers> |
168 | | - <transformer |
169 | | - implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
170 | | - <resource>META-INF/spring.handlers</resource> |
171 | | - </transformer> |
172 | | - <transformer |
173 | | - implementation="org.springframework.boot.maven.PropertiesMergingResourceTransformer"> |
174 | | - <resource>META-INF/spring.factories</resource> |
175 | | - </transformer> |
176 | | - <transformer |
177 | | - implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
178 | | - <resource>META-INF/spring.schemas</resource> |
179 | | - </transformer> |
180 | | - </transformers> |
181 | | - </configuration> |
182 | | - </execution> |
183 | | - </executions> |
184 | | - </plugin> |
185 | 125 | <plugin> |
186 | 126 | <groupId>org.jacoco</groupId> |
187 | 127 | <artifactId>jacoco-maven-plugin</artifactId> |
|
224 | 164 | <groupId>org.springframework.boot</groupId> |
225 | 165 | <artifactId>spring-boot-maven-plugin</artifactId> |
226 | 166 | <executions> |
| 167 | + <execution> |
| 168 | + <goals> |
| 169 | + <goal>repackage</goal> |
| 170 | + </goals> |
| 171 | + </execution> |
227 | 172 | <execution> |
228 | 173 | <id>build-info</id> |
229 | 174 | <goals> |
230 | 175 | <goal>build-info</goal> |
231 | 176 | </goals> |
232 | 177 | </execution> |
233 | 178 | </executions> |
| 179 | + <configuration> |
| 180 | + <layers> |
| 181 | + <enabled>true</enabled> |
| 182 | + </layers> |
| 183 | + </configuration> |
234 | 184 | </plugin> |
235 | 185 | </plugins> |
236 | 186 | </build> |
|
0 commit comments