pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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. <groupId>rock.star.idea</groupId>
  7. <artifactId>rock-star-idea</artifactId>
  8. <version>0.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>pro-main</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <!-- 工程依赖 -->
  15. <dependency>
  16. <groupId>com.rockstar.anticontrol</groupId>
  17. <artifactId>rock-frame</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.rockstar.anticontrol</groupId>
  21. <artifactId>rock-system</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.rockstar.anticontrol</groupId>
  25. <artifactId>rock-user</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.rockstar.anticontrol</groupId>
  29. <artifactId>rock-wx</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>rock.star.idea</groupId>
  33. <artifactId>pro-base</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>rock.star.idea</groupId>
  37. <artifactId>pro-wx</artifactId>
  38. </dependency>
  39. <!-- <dependency>-->
  40. <!-- <groupId>org.springframework.kafka</groupId>-->
  41. <!-- <artifactId>spring-kafka</artifactId>-->
  42. <!-- <version>2.4.3.RELEASE</version>-->
  43. <!-- </dependency>-->
  44. <!-- <dependency>-->
  45. <!-- <groupId>org.apache.kafka</groupId>-->
  46. <!-- <artifactId>kafka-clients</artifactId>-->
  47. <!-- <version>2.4.1</version>-->
  48. <!-- </dependency>-->
  49. <!--主从库配置还需更新ops对应得数据库properties-->
  50. <!-- <dependency>-->
  51. <!-- <groupId>com.rockstar.anticontrol</groupId>-->
  52. <!-- <artifactId>rock-ops</artifactId>-->
  53. <!-- </dependency>-->
  54. <!--工作流和tkmybatis冲突,先注释-->
  55. <!-- <dependency>-->
  56. <!-- <groupId>com.rockstar.anticontrol</groupId>-->
  57. <!-- <artifactId>rock-flow</artifactId>-->
  58. <!-- </dependency>-->
  59. <!-- <dependency>-->
  60. <!-- <groupId>rock.star.idea</groupId>-->
  61. <!-- <artifactId>pro-search</artifactId>-->
  62. <!-- </dependency>-->
  63. <!-- springframework -->
  64. <!-- configuration -->
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-configuration-processor</artifactId>
  68. <optional>true</optional>
  69. </dependency>
  70. <!-- 热部署 -->
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-devtools</artifactId>
  74. <optional>true</optional>
  75. </dependency>
  76. <!-- aop -->
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-aop</artifactId>
  80. </dependency>
  81. <!-- SpringBoot Web容器 -->
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-web</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>junit</groupId>
  88. <artifactId>junit</artifactId>
  89. <scope>test</scope>
  90. </dependency>
  91. <!-- <dependency>-->
  92. <!-- <groupId>tk.mybatis</groupId>-->
  93. <!-- <artifactId>mapper-spring-boot-starter</artifactId>-->
  94. <!-- <version>${tkmybatis}</version>-->
  95. <!-- &lt;!&ndash; activiti默认使用JPA, tk的实现会出现问题,具体原因自行了解 &ndash;&gt;-->
  96. <!-- <exclusions>-->
  97. <!-- <exclusion>-->
  98. <!-- <artifactId>persistence-api</artifactId>-->
  99. <!-- <groupId>javax.persistence</groupId>-->
  100. <!-- </exclusion>-->
  101. <!-- </exclusions>-->
  102. <!-- </dependency>-->
  103. <!--没有会引起mybaits plus通用mapper和activity的冲突-->
  104. <!-- <dependency>-->
  105. <!-- <groupId>org.activiti</groupId>-->
  106. <!-- <artifactId>activiti-spring-boot-starter-jpa</artifactId>-->
  107. <!-- <version>${activiti.version}</version>-->
  108. <!-- </dependency>-->
  109. <!-- <dependency>-->
  110. <!-- <groupId>org.springframework.boot</groupId>-->
  111. <!-- <artifactId>spring-boot-starter-data-jpa</artifactId>-->
  112. <!-- <version>2.2.6.RELEASE</version>-->
  113. <!-- </dependency>-->
  114. </dependencies>
  115. <build>
  116. <plugins>
  117. <plugin>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-maven-plugin</artifactId>
  120. </plugin>
  121. </plugins>
  122. </build>
  123. </project>