pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. <parent>
  6. <artifactId>suishenbang-oneportal</artifactId>
  7. <groupId>com.dgtly</groupId>
  8. <version>4.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>suishenbang-api</artifactId>
  13. <description>
  14. 前端页面API接口
  15. </description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.dgtly</groupId>
  19. <artifactId>suishenbang-apiframework</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.dgtly</groupId>
  23. <artifactId>suishenbang-system</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.dgtly</groupId>
  27. <artifactId>suishenbang-wxportal-api</artifactId>
  28. <version>4.0.0</version>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-maven-plugin</artifactId>
  36. <configuration>
  37. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  38. </configuration>
  39. <executions>
  40. <execution>
  41. <goals>
  42. <goal>repackage</goal>
  43. </goals>
  44. </execution>
  45. </executions>
  46. </plugin>
  47. </plugins>
  48. <finalName>${artifactId}</finalName>
  49. </build>
  50. </project>