pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.sd</groupId>
  8. <artifactId>sd-bom</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <artifactId>sd-starter</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.sd</groupId>
  15. <artifactId>sd-framework</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.sd</groupId>
  19. <artifactId>sd-business</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.sd</groupId>
  23. <artifactId>sd-wln</artifactId>
  24. </dependency>
  25. </dependencies>
  26. <build>
  27. <finalName>${project.artifactId}</finalName>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-maven-plugin</artifactId>
  32. <executions>
  33. <execution>
  34. <goals>
  35. <goal>repackage</goal>
  36. </goals>
  37. </execution>
  38. </executions>
  39. </plugin>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-war-plugin</artifactId>
  43. <version>3.1.0</version>
  44. <configuration>
  45. <failOnMissingWebXml>false</failOnMissingWebXml>
  46. <warName>${project.artifactId}</warName>
  47. </configuration>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. </project>