pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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_project</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. <dependency>
  26. <groupId>com.sd</groupId>
  27. <artifactId>sd-cainiao</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-test</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>junit</groupId>
  36. <artifactId>junit</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <finalName>${project.artifactId}</finalName>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-maven-plugin</artifactId>
  46. <executions>
  47. <execution>
  48. <goals>
  49. <goal>repackage</goal>
  50. </goals>
  51. </execution>
  52. </executions>
  53. </plugin>
  54. <plugin>
  55. <groupId>org.apache.maven.plugins</groupId>
  56. <artifactId>maven-war-plugin</artifactId>
  57. <version>3.1.0</version>
  58. <configuration>
  59. <failOnMissingWebXml>false</failOnMissingWebXml>
  60. <warName>${project.artifactId}</warName>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>