|
|
@@ -14,6 +14,25 @@
|
|
|
<target>18</target>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <goals>
|
|
|
+ <goal>repackage</goal>
|
|
|
+ </goals>
|
|
|
+ <configuration>
|
|
|
+ <classifier>spring-boot</classifier>
|
|
|
+ <mainClass>
|
|
|
+ Main
|
|
|
+ </mainClass>
|
|
|
+ </configuration>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|
|
|
@@ -38,6 +57,11 @@
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
<version>8.0.29</version>
|
|
|
</dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <version>2.7.1</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
</project>
|