pom.xml 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.yomahub</groupId>
  6. <artifactId>liteflow</artifactId>
  7. <packaging>pom</packaging>
  8. <version>2.6.4</version>
  9. <name>liteflow</name>
  10. <description>a lightweight and practical micro-process framework</description>
  11. <url>https://github.com/bryan31/liteflow</url>
  12. <licenses>
  13. <license>
  14. <name>MIT License</name>
  15. <url>https://opensource.org/licenses/MIT</url>
  16. <distribution>repo</distribution>
  17. </license>
  18. </licenses>
  19. <developers>
  20. <developer>
  21. <email>weenyc31@163.com</email>
  22. <name>bryan.zhang</name>
  23. <url>https://github.com/bryan31</url>
  24. <id>bryan31</id>
  25. </developer>
  26. </developers>
  27. <issueManagement>
  28. <system>Github Issue</system>
  29. <url>https://github.com/bryan31/liteflow/issues</url>
  30. </issueManagement>
  31. <scm>
  32. <connection>scm:git@github.com:bryan31/liteflow.git</connection>
  33. <developerConnection>scm:git@github.com:bryan31/liteflow.git</developerConnection>
  34. <url>git@github.com:bryan31/liteflow.git</url>
  35. </scm>
  36. <properties>
  37. <maven.compiler.source>8</maven.compiler.source>
  38. <maven.compiler.target>8</maven.compiler.target>
  39. <springboot.version>2.0.5.RELEASE</springboot.version>
  40. <spring.version>5.0.9.RELEASE</spring.version>
  41. <org.slf4j.version>1.7.21</org.slf4j.version>
  42. <log4j.version>1.2.17</log4j.version>
  43. <log4j-slf4j.version>1.7.5</log4j-slf4j.version>
  44. <slf4j.version>1.7.13</slf4j.version>
  45. <fastjson.version>1.2.70</fastjson.version>
  46. <snakeyaml.version>1.19</snakeyaml.version>
  47. <dom4j.version>1.6.1</dom4j.version>
  48. <curator.version>2.12.0</curator.version>
  49. <junit.version>4.12</junit.version>
  50. <hutool-core.version>5.3.10</hutool-core.version>
  51. <transmittable-thread-local.version>2.12.1</transmittable-thread-local.version>
  52. <curator-test.version>5.1.0</curator-test.version>
  53. <zkclient.version>0.10</zkclient.version>
  54. <qlexpress.version>3.2.0</qlexpress.version>
  55. <groovy.version>3.0.7</groovy.version>
  56. </properties>
  57. <dependencyManagement>
  58. <dependencies>
  59. <dependency>
  60. <groupId>org.springframework</groupId>
  61. <artifactId>spring-beans</artifactId>
  62. <version>${spring.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework</groupId>
  66. <artifactId>spring-context</artifactId>
  67. <version>${spring.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework</groupId>
  71. <artifactId>spring-aop</artifactId>
  72. <version>${spring.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework</groupId>
  76. <artifactId>spring-expression</artifactId>
  77. <version>${spring.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework</groupId>
  81. <artifactId>spring-test</artifactId>
  82. <version>${spring.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.slf4j</groupId>
  86. <artifactId>slf4j-api</artifactId>
  87. <version>${org.slf4j.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.alibaba</groupId>
  91. <artifactId>fastjson</artifactId>
  92. <version>${fastjson.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.yaml</groupId>
  96. <artifactId>snakeyaml</artifactId>
  97. <version>${snakeyaml.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>dom4j</groupId>
  101. <artifactId>dom4j</artifactId>
  102. <version>${dom4j.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>junit</groupId>
  106. <artifactId>junit</artifactId>
  107. <version>${junit.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.curator</groupId>
  111. <artifactId>curator-framework</artifactId>
  112. <version>${curator.version}</version>
  113. <exclusions>
  114. <exclusion>
  115. <artifactId>log4j</artifactId>
  116. <groupId>log4j</groupId>
  117. </exclusion>
  118. <exclusion>
  119. <artifactId>slf4j-api</artifactId>
  120. <groupId>org.slf4j</groupId>
  121. </exclusion>
  122. </exclusions>
  123. <optional>true</optional>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.curator</groupId>
  127. <artifactId>curator-recipes</artifactId>
  128. <version>${curator.version}</version>
  129. <optional>true</optional>
  130. </dependency>
  131. <dependency>
  132. <groupId>cn.hutool</groupId>
  133. <artifactId>hutool-core</artifactId>
  134. <version>${hutool-core.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>com.alibaba</groupId>
  138. <artifactId>transmittable-thread-local</artifactId>
  139. <version>${transmittable-thread-local.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.apache.curator</groupId>
  143. <artifactId>curator-test</artifactId>
  144. <version>${curator-test.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>com.101tec</groupId>
  148. <artifactId>zkclient</artifactId>
  149. <version>${zkclient.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>com.alibaba</groupId>
  153. <artifactId>QLExpress</artifactId>
  154. <version>${qlexpress.version}</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.codehaus.groovy</groupId>
  158. <artifactId>groovy</artifactId>
  159. <version>${groovy.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.codehaus.groovy</groupId>
  163. <artifactId>groovy-jsr223</artifactId>
  164. <version>${groovy.version}</version>
  165. </dependency>
  166. </dependencies>
  167. </dependencyManagement>
  168. <build>
  169. <plugins>
  170. <plugin>
  171. <groupId>org.apache.maven.plugins</groupId>
  172. <artifactId>maven-surefire-plugin</artifactId>
  173. <version>2.18.1</version>
  174. <configuration>
  175. <skipTests>true</skipTests>
  176. </configuration>
  177. </plugin>
  178. <plugin>
  179. <groupId>org.apache.maven.plugins</groupId>
  180. <artifactId>maven-source-plugin</artifactId>
  181. <version>2.4</version>
  182. <configuration>
  183. <attach>true</attach>
  184. </configuration>
  185. <executions>
  186. <execution>
  187. <phase>package</phase>
  188. <goals>
  189. <goal>jar-no-fork</goal>
  190. </goals>
  191. </execution>
  192. </executions>
  193. </plugin>
  194. <plugin>
  195. <groupId>org.apache.maven.plugins</groupId>
  196. <artifactId>maven-site-plugin</artifactId>
  197. <version>3.7.1</version>
  198. </plugin>
  199. <!-- Javadoc -->
  200. <plugin>
  201. <groupId>org.apache.maven.plugins</groupId>
  202. <artifactId>maven-javadoc-plugin</artifactId>
  203. <version>3.0.1</version>
  204. <executions>
  205. <execution>
  206. <phase>package</phase>
  207. <goals>
  208. <goal>jar</goal>
  209. </goals>
  210. </execution>
  211. </executions>
  212. </plugin>
  213. <!-- Gpg Signature -->
  214. <plugin>
  215. <groupId>org.apache.maven.plugins</groupId>
  216. <artifactId>maven-gpg-plugin</artifactId>
  217. <version>1.6</version>
  218. <executions>
  219. <execution>
  220. <id>sign-artifacts</id>
  221. <phase>verify</phase>
  222. <goals>
  223. <goal>sign</goal>
  224. </goals>
  225. </execution>
  226. </executions>
  227. </plugin>
  228. </plugins>
  229. </build>
  230. <modules>
  231. <module>liteflow-core</module>
  232. <module>liteflow-spring-boot-starter</module>
  233. <module>liteflow-script-qlexpress</module>
  234. <module>liteflow-script-common</module>
  235. <module>liteflow-script-groovy</module>
  236. <module>liteflow-testcase-springboot</module>
  237. <module>liteflow-testcase-springnative</module>
  238. <module>liteflow-testcase-script-qlexpress</module>
  239. <module>liteflow-testcase-script-groovy</module>
  240. </modules>
  241. <distributionManagement>
  242. <snapshotRepository>
  243. <id>sonatype</id>
  244. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  245. </snapshotRepository>
  246. <repository>
  247. <id>sonatype</id>
  248. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  249. </repository>
  250. </distributionManagement>
  251. </project>