pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  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>${revision}</version>
  9. <name>liteflow</name>
  10. <description>Small but powerful rules engine</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. <revision>2.9.8</revision>
  38. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  39. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  40. <maven.compiler.source>8</maven.compiler.source>
  41. <maven.compiler.target>8</maven.compiler.target>
  42. <springboot.version>2.0.5.RELEASE</springboot.version>
  43. <spring.version>5.0.9.RELEASE</spring.version>
  44. <org.slf4j.version>1.7.32</org.slf4j.version>
  45. <jackson.version>2.14.0-rc2</jackson.version>
  46. <snakeyaml.version>1.32</snakeyaml.version>
  47. <dom4j.version>2.1.3</dom4j.version>
  48. <curator.version>5.3.0</curator.version>
  49. <junit.version>4.12</junit.version>
  50. <hutool-core.version>5.8.11</hutool-core.version>
  51. <transmittable-thread-local.version>2.12.3</transmittable-thread-local.version>
  52. <curator-test.version>5.1.0</curator-test.version>
  53. <zkclient.version>0.10</zkclient.version>
  54. <jetcd.version>0.7.3</jetcd.version>
  55. <nacos.version>1.4.4</nacos.version>
  56. <qlexpress.version>3.3.0</qlexpress.version>
  57. <groovy.version>3.0.8</groovy.version>
  58. <graalvm.version>21.3.3.1</graalvm.version>
  59. <bytebuddy.version>1.11.13</bytebuddy.version>
  60. <aspectjweaver.version>1.8.13</aspectjweaver.version>
  61. <logback-classic.version>1.2.3</logback-classic.version>
  62. <solon.version>2.0.0</solon.version>
  63. <netty.version>4.1.84.Final</netty.version>
  64. <guava.version>31.1-jre</guava.version>
  65. <httpclient.version>4.5.13</httpclient.version>
  66. <commons-beanutils.version>1.9.4</commons-beanutils.version>
  67. <apollo.version>1.7.0</apollo.version>
  68. <jython.version>2.7.3</jython.version>
  69. <luaj.version>3.0.1</luaj.version>
  70. </properties>
  71. <dependencyManagement>
  72. <dependencies>
  73. <dependency>
  74. <groupId>org.springframework</groupId>
  75. <artifactId>spring-beans</artifactId>
  76. <version>${spring.version}</version>
  77. <scope>provided</scope>
  78. <optional>true</optional>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework</groupId>
  82. <artifactId>spring-context</artifactId>
  83. <version>${spring.version}</version>
  84. <scope>provided</scope>
  85. <optional>true</optional>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework</groupId>
  89. <artifactId>spring-aop</artifactId>
  90. <version>${spring.version}</version>
  91. <scope>provided</scope>
  92. <optional>true</optional>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework</groupId>
  96. <artifactId>spring-expression</artifactId>
  97. <version>${spring.version}</version>
  98. <scope>provided</scope>
  99. <optional>true</optional>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework</groupId>
  103. <artifactId>spring-test</artifactId>
  104. <version>${spring.version}</version>
  105. <scope>test</scope>
  106. <optional>true</optional>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.slf4j</groupId>
  110. <artifactId>slf4j-api</artifactId>
  111. <version>${org.slf4j.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.fasterxml.jackson.core</groupId>
  115. <artifactId>jackson-databind</artifactId>
  116. <version>${jackson.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.yaml</groupId>
  120. <artifactId>snakeyaml</artifactId>
  121. <version>${snakeyaml.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.dom4j</groupId>
  125. <artifactId>dom4j</artifactId>
  126. <version>${dom4j.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>junit</groupId>
  130. <artifactId>junit</artifactId>
  131. <version>${junit.version}</version>
  132. <scope>test</scope>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.apache.curator</groupId>
  136. <artifactId>curator-framework</artifactId>
  137. <version>${curator.version}</version>
  138. <exclusions>
  139. <exclusion>
  140. <artifactId>log4j</artifactId>
  141. <groupId>log4j</groupId>
  142. </exclusion>
  143. <exclusion>
  144. <artifactId>slf4j-api</artifactId>
  145. <groupId>org.slf4j</groupId>
  146. </exclusion>
  147. </exclusions>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.apache.curator</groupId>
  151. <artifactId>curator-recipes</artifactId>
  152. <version>${curator.version}</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>cn.hutool</groupId>
  156. <artifactId>hutool-core</artifactId>
  157. <version>${hutool-core.version}</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>com.alibaba</groupId>
  161. <artifactId>transmittable-thread-local</artifactId>
  162. <version>${transmittable-thread-local.version}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.apache.curator</groupId>
  166. <artifactId>curator-test</artifactId>
  167. <version>${curator-test.version}</version>
  168. <scope>test</scope>
  169. </dependency>
  170. <dependency>
  171. <groupId>com.101tec</groupId>
  172. <artifactId>zkclient</artifactId>
  173. <version>${zkclient.version}</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>io.etcd</groupId>
  177. <artifactId>jetcd-core</artifactId>
  178. <version>${jetcd.version}</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>com.alibaba.nacos</groupId>
  182. <artifactId>nacos-client</artifactId>
  183. <version>${nacos.version}</version>
  184. <exclusions>
  185. <exclusion>
  186. <groupId>com.fasterxml.jackson.core</groupId>
  187. <artifactId>jackson-databind</artifactId>
  188. </exclusion>
  189. <exclusion>
  190. <groupId>com.fasterxml.jackson.core</groupId>
  191. <artifactId>jackson-core</artifactId>
  192. </exclusion>
  193. </exclusions>
  194. </dependency>
  195. <dependency>
  196. <groupId>com.alibaba</groupId>
  197. <artifactId>QLExpress</artifactId>
  198. <version>${qlexpress.version}</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.codehaus.groovy</groupId>
  202. <artifactId>groovy</artifactId>
  203. <version>${groovy.version}</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>org.codehaus.groovy</groupId>
  207. <artifactId>groovy-jsr223</artifactId>
  208. <version>${groovy.version}</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>net.bytebuddy</groupId>
  212. <artifactId>byte-buddy</artifactId>
  213. <version>${bytebuddy.version}</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>org.graalvm.js</groupId>
  217. <artifactId>js</artifactId>
  218. <version>${graalvm.version}</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>commons-beanutils</groupId>
  222. <artifactId>commons-beanutils</artifactId>
  223. <version>${commons-beanutils.version}</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.aspectj</groupId>
  227. <artifactId>aspectjweaver</artifactId>
  228. <version>${aspectjweaver.version}</version>
  229. <scope>provided</scope>
  230. <optional>true</optional>
  231. </dependency>
  232. <dependency>
  233. <groupId>ch.qos.logback</groupId>
  234. <artifactId>logback-classic</artifactId>
  235. <version>${logback-classic.version}</version>
  236. <scope>provided</scope>
  237. <optional>true</optional>
  238. </dependency>
  239. <dependency>
  240. <groupId>org.springframework.boot</groupId>
  241. <artifactId>spring-boot-starter-test</artifactId>
  242. <version>${springboot.version}</version>
  243. <scope>test</scope>
  244. <optional>true</optional>
  245. </dependency>
  246. <dependency>
  247. <groupId>org.springframework.boot</groupId>
  248. <artifactId>spring-boot-autoconfigure</artifactId>
  249. <version>${springboot.version}</version>
  250. <scope>provided</scope>
  251. <optional>true</optional>
  252. </dependency>
  253. <dependency>
  254. <groupId>org.springframework.boot</groupId>
  255. <artifactId>spring-boot-configuration-processor</artifactId>
  256. <version>${springboot.version}</version>
  257. <scope>provided</scope>
  258. <optional>true</optional>
  259. </dependency>
  260. <dependency>
  261. <groupId>com.ctrip.framework.apollo</groupId>
  262. <artifactId>apollo-client</artifactId>
  263. <version>${apollo.version}</version>
  264. </dependency>
  265. <dependency>
  266. <groupId>org.python</groupId>
  267. <artifactId>jython-standalone</artifactId>
  268. <version>${jython.version}</version>
  269. </dependency>
  270. <dependency>
  271. <groupId>org.luaj</groupId>
  272. <artifactId>luaj-jse</artifactId>
  273. <version>${luaj.version}</version>
  274. </dependency>
  275. </dependencies>
  276. </dependencyManagement>
  277. <build>
  278. <plugins>
  279. <plugin>
  280. <groupId>org.apache.maven.plugins</groupId>
  281. <artifactId>maven-jar-plugin</artifactId>
  282. <version>3.2.2</version>
  283. <configuration>
  284. <archive>
  285. <manifest>
  286. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  287. </manifest>
  288. </archive>
  289. </configuration>
  290. </plugin>
  291. <plugin>
  292. <groupId>org.apache.maven.plugins</groupId>
  293. <artifactId>maven-surefire-plugin</artifactId>
  294. <version>2.18.1</version>
  295. <configuration>
  296. <skipTests>true</skipTests>
  297. </configuration>
  298. </plugin>
  299. <plugin>
  300. <groupId>org.apache.maven.plugins</groupId>
  301. <artifactId>maven-source-plugin</artifactId>
  302. <version>2.4</version>
  303. <configuration>
  304. <attach>true</attach>
  305. </configuration>
  306. <executions>
  307. <execution>
  308. <phase>package</phase>
  309. <goals>
  310. <goal>jar-no-fork</goal>
  311. </goals>
  312. </execution>
  313. </executions>
  314. </plugin>
  315. <plugin>
  316. <groupId>org.apache.maven.plugins</groupId>
  317. <artifactId>maven-site-plugin</artifactId>
  318. <version>3.7.1</version>
  319. </plugin>
  320. <!-- version number -->
  321. <plugin>
  322. <groupId>org.codehaus.mojo</groupId>
  323. <artifactId>flatten-maven-plugin</artifactId>
  324. <version>1.2.7</version>
  325. <configuration>
  326. <updatePomFile>true</updatePomFile>
  327. <flattenMode>resolveCiFriendliesOnly</flattenMode>
  328. </configuration>
  329. <executions>
  330. <execution>
  331. <id>flatten</id>
  332. <phase>process-resources</phase>
  333. <goals>
  334. <goal>flatten</goal>
  335. </goals>
  336. </execution>
  337. <execution>
  338. <id>flatten.clean</id>
  339. <phase>clean</phase>
  340. <goals>
  341. <goal>clean</goal>
  342. </goals>
  343. </execution>
  344. </executions>
  345. </plugin>
  346. </plugins>
  347. </build>
  348. <modules>
  349. <module>liteflow-core</module>
  350. <module>liteflow-script-plugin</module>
  351. <module>liteflow-rule-plugin</module>
  352. <module>liteflow-spring-boot-starter</module>
  353. <module>liteflow-spring</module>
  354. <module>liteflow-solon-plugin</module>
  355. <module>liteflow-testcase-el</module>
  356. </modules>
  357. <distributionManagement>
  358. <snapshotRepository>
  359. <id>sonatype</id>
  360. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  361. </snapshotRepository>
  362. <repository>
  363. <id>sonatype</id>
  364. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  365. </repository>
  366. </distributionManagement>
  367. </project>