pom.xml 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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.zzsmart.qomo</groupId>
  8. <artifactId>qomo-kn-forecast</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>qomo-kn-cost-manage-start</artifactId>
  12. <properties>
  13. <maven.deploy.skip>true</maven.deploy.skip>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-test</artifactId>
  19. <scope>test</scope>
  20. <exclusions>
  21. <exclusion>
  22. <artifactId>spring-boot-starter-logging</artifactId>
  23. <groupId>org.springframework.boot</groupId>
  24. </exclusion>
  25. </exclusions>
  26. </dependency>
  27. <dependency>
  28. <groupId>junit</groupId>
  29. <artifactId>junit</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.zzsmart.qomo</groupId>
  34. <artifactId>qomo-kn-cost-manage</artifactId>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-maven-plugin</artifactId>
  42. <configuration>
  43. <!-- <fork>true</fork> &lt;!&ndash; 如果没有该配置,devtools不会生效 &ndash;&gt;-->
  44. <includeSystemScope>true</includeSystemScope>
  45. </configuration>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. <profiles>
  50. <profile>
  51. <id>dmp</id>
  52. <activation>
  53. <!--默认激活配置-->
  54. <activeByDefault>true</activeByDefault>
  55. </activation>
  56. <properties>
  57. <profile.name>dmp</profile.name>
  58. </properties>
  59. <dependencies>
  60. <dependency>
  61. <groupId>com.zzsmart.qomo</groupId>
  62. <artifactId>qomo-data-model</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.zzsmart.qomo</groupId>
  66. <artifactId>qomo-assets-management</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.zzsmart.qomo</groupId>
  70. <artifactId>qomo-data-integration</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.zzsmart.qomo</groupId>
  74. <artifactId>qomo-data-metadata</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.zzsmart.qomo</groupId>
  78. <artifactId>qomo-work-flow</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.zzsmart.qomo</groupId>
  82. <artifactId>qomo-data-warehouse</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.zzsmart.qomo</groupId>
  86. <artifactId>qomo-data-selfReport</artifactId>
  87. </dependency>
  88. </dependencies>
  89. </profile>
  90. </profiles>
  91. </project>