pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>com.unis.flowable</groupId>
  9. <artifactId>flowable-service</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. </parent>
  12. <artifactId>flowable-server</artifactId>
  13. <dependencyManagement>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.cloud</groupId>
  17. <artifactId>spring-cloud-dependencies</artifactId>
  18. <version>${spring-cloud.version}</version>
  19. <type>pom</type>
  20. <scope>import</scope>
  21. </dependency>
  22. </dependencies>
  23. </dependencyManagement>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-jdbc</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-web</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.alibaba</groupId>
  35. <artifactId>druid-spring-boot-starter</artifactId>
  36. <version>${druid.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.alibaba</groupId>
  40. <artifactId>fastjson</artifactId>
  41. <version>${fastjson.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.cloud</groupId>
  45. <artifactId>spring-cloud-config-client</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.cloud</groupId>
  49. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-actuator</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>mysql</groupId>
  57. <artifactId>mysql-connector-java</artifactId>
  58. <version>8.0.18</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>cn.easyproject</groupId>
  62. <artifactId>ojdbc7</artifactId>
  63. <version>${oracle.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.mybatis.spring.boot</groupId>
  67. <artifactId>mybatis-spring-boot-starter</artifactId>
  68. <version>${mybatis.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.flowable</groupId>
  72. <artifactId>flowable-spring-boot-starter</artifactId>
  73. <version>${flowable.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.flowable</groupId>
  77. <artifactId>flowable-ui-modeler-conf</artifactId>
  78. <version>${flowable.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.flowable</groupId>
  82. <artifactId>flowable-rest</artifactId>
  83. <version>${flowable.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-devtools</artifactId>
  88. <scope>runtime</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.github.pagehelper</groupId>
  92. <artifactId>pagehelper</artifactId>
  93. <version>5.1.4</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.projectlombok</groupId>
  97. <artifactId>lombok</artifactId>
  98. <optional>true</optional>
  99. </dependency>
  100. <dependency>
  101. <groupId>io.springfox</groupId>
  102. <artifactId>springfox-swagger-ui</artifactId>
  103. <version>${springfox-swagger2.version}</version>
  104. </dependency>
  105. <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
  106. <dependency>
  107. <groupId>io.springfox</groupId>
  108. <artifactId>springfox-swagger2</artifactId>
  109. <version>${springfox-swagger2.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.opensymphony</groupId>
  113. <artifactId>xwork-core</artifactId>
  114. <version>2.1.6</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>net.sf.ehcache</groupId>
  118. <artifactId>ehcache</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.unis.flowable</groupId>
  122. <artifactId>flowable-common</artifactId>
  123. <version>0.0.1-SNAPSHOT</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.unis.flowable</groupId>
  127. <artifactId>flowable-client</artifactId>
  128. <version>0.0.1-SNAPSHOT</version>
  129. </dependency>
  130. </dependencies>
  131. <build>
  132. <finalName>${project.name}</finalName>
  133. <plugins>
  134. <plugin>
  135. <groupId>org.springframework.boot</groupId>
  136. <artifactId>spring-boot-maven-plugin</artifactId>
  137. <configuration>
  138. <mainClass>com.unis.flowable.server.FlowableServerApplication</mainClass>
  139. </configuration>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. </project>