pom.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  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>Apache-2.0</name>
  15. <url>https://www.apache.org/licenses/LICENSE-2.0.html</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.13.1.3</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.6.8</springboot.version>
  43. <spring.version>5.3.20</spring.version>
  44. <org.slf4j.version>1.7.32</org.slf4j.version>
  45. <jackson.version>2.16.0</jackson.version>
  46. <snakeyaml.version>1.32</snakeyaml.version>
  47. <dom4j.version>2.1.4</dom4j.version>
  48. <curator.version>5.3.0</curator.version>
  49. <junit.version>5.8.2</junit.version>
  50. <hutool.version>5.8.26</hutool.version>
  51. <transmittable-thread-local.version>2.14.5</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.2</qlexpress.version>
  57. <groovy.version>3.0.8</groovy.version>
  58. <graalvm.version>22.0.0</graalvm.version>
  59. <bytebuddy.version>1.14.10</bytebuddy.version>
  60. <aspectjweaver.version>1.8.13</aspectjweaver.version>
  61. <logback-classic.version>1.2.3</logback-classic.version>
  62. <solon.version>3.0.1</solon.version>
  63. <netty.version>4.1.84.Final</netty.version>
  64. <httpclient.version>4.5.13</httpclient.version>
  65. <commons-beanutils.version>1.9.4</commons-beanutils.version>
  66. <apollo.version>2.1.0</apollo.version>
  67. <jython.version>2.7.3</jython.version>
  68. <luaj.version>3.0.1</luaj.version>
  69. <aviator.version>5.4.3</aviator.version>
  70. <common-io.version>2.11.0</common-io.version>
  71. <jakarta.version>1.3.5</jakarta.version>
  72. <redisson.version>3.21.0</redisson.version>
  73. <janino.version>3.1.12</janino.version>
  74. <kotlin.version>1.9.23</kotlin.version>
  75. <liquor.version>1.4.0</liquor.version>
  76. <dynamic-datasource.version>4.3.1</dynamic-datasource.version>
  77. <sharding-jdbc.version>4.1.1</sharding-jdbc.version>
  78. </properties>
  79. <dependencyManagement>
  80. <dependencies>
  81. <dependency>
  82. <groupId>org.springframework</groupId>
  83. <artifactId>spring-beans</artifactId>
  84. <version>${spring.version}</version>
  85. <scope>provided</scope>
  86. <optional>true</optional>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework</groupId>
  90. <artifactId>spring-context</artifactId>
  91. <version>${spring.version}</version>
  92. <scope>provided</scope>
  93. <optional>true</optional>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework</groupId>
  97. <artifactId>spring-aop</artifactId>
  98. <version>${spring.version}</version>
  99. <scope>provided</scope>
  100. <optional>true</optional>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework</groupId>
  104. <artifactId>spring-expression</artifactId>
  105. <version>${spring.version}</version>
  106. <scope>provided</scope>
  107. <optional>true</optional>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework</groupId>
  111. <artifactId>spring-test</artifactId>
  112. <version>${spring.version}</version>
  113. <scope>test</scope>
  114. <optional>true</optional>
  115. </dependency>
  116. <dependency>
  117. <groupId>jakarta.annotation</groupId>
  118. <artifactId>jakarta.annotation-api</artifactId>
  119. <version>${jakarta.version}</version>
  120. <scope>provided</scope>
  121. <optional>true</optional>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.slf4j</groupId>
  125. <artifactId>slf4j-api</artifactId>
  126. <version>${org.slf4j.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.fasterxml.jackson.core</groupId>
  130. <artifactId>jackson-databind</artifactId>
  131. <version>${jackson.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.fasterxml.jackson.datatype</groupId>
  135. <artifactId>jackson-datatype-jsr310</artifactId>
  136. <version>${jackson.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.yaml</groupId>
  140. <artifactId>snakeyaml</artifactId>
  141. <version>${snakeyaml.version}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.dom4j</groupId>
  145. <artifactId>dom4j</artifactId>
  146. <version>${dom4j.version}</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.junit.jupiter</groupId>
  150. <artifactId>junit-jupiter</artifactId>
  151. <version>${junit.version}</version>
  152. <scope>test</scope>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.apache.curator</groupId>
  156. <artifactId>curator-framework</artifactId>
  157. <version>${curator.version}</version>
  158. <exclusions>
  159. <exclusion>
  160. <artifactId>log4j</artifactId>
  161. <groupId>log4j</groupId>
  162. </exclusion>
  163. <exclusion>
  164. <artifactId>slf4j-api</artifactId>
  165. <groupId>org.slf4j</groupId>
  166. </exclusion>
  167. </exclusions>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.apache.curator</groupId>
  171. <artifactId>curator-recipes</artifactId>
  172. <version>${curator.version}</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>cn.hutool</groupId>
  176. <artifactId>hutool-core</artifactId>
  177. <version>${hutool.version}</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>cn.hutool</groupId>
  181. <artifactId>hutool-crypto</artifactId>
  182. <version>${hutool.version}</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>com.alibaba</groupId>
  186. <artifactId>transmittable-thread-local</artifactId>
  187. <version>${transmittable-thread-local.version}</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.apache.curator</groupId>
  191. <artifactId>curator-test</artifactId>
  192. <version>${curator-test.version}</version>
  193. <scope>test</scope>
  194. </dependency>
  195. <dependency>
  196. <groupId>com.101tec</groupId>
  197. <artifactId>zkclient</artifactId>
  198. <version>${zkclient.version}</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>io.etcd</groupId>
  202. <artifactId>jetcd-core</artifactId>
  203. <version>${jetcd.version}</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>com.alibaba.nacos</groupId>
  207. <artifactId>nacos-client</artifactId>
  208. <version>${nacos.version}</version>
  209. <exclusions>
  210. <exclusion>
  211. <groupId>com.fasterxml.jackson.core</groupId>
  212. <artifactId>jackson-databind</artifactId>
  213. </exclusion>
  214. <exclusion>
  215. <groupId>com.fasterxml.jackson.core</groupId>
  216. <artifactId>jackson-core</artifactId>
  217. </exclusion>
  218. </exclusions>
  219. </dependency>
  220. <dependency>
  221. <groupId>com.alibaba</groupId>
  222. <artifactId>QLExpress</artifactId>
  223. <version>${qlexpress.version}</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.codehaus.groovy</groupId>
  227. <artifactId>groovy</artifactId>
  228. <version>${groovy.version}</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.codehaus.groovy</groupId>
  232. <artifactId>groovy-jsr223</artifactId>
  233. <version>${groovy.version}</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>net.bytebuddy</groupId>
  237. <artifactId>byte-buddy</artifactId>
  238. <version>${bytebuddy.version}</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>org.graalvm.js</groupId>
  242. <artifactId>js</artifactId>
  243. <version>${graalvm.version}</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>commons-beanutils</groupId>
  247. <artifactId>commons-beanutils</artifactId>
  248. <version>${commons-beanutils.version}</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>org.aspectj</groupId>
  252. <artifactId>aspectjweaver</artifactId>
  253. <version>${aspectjweaver.version}</version>
  254. <scope>provided</scope>
  255. <optional>true</optional>
  256. </dependency>
  257. <dependency>
  258. <groupId>ch.qos.logback</groupId>
  259. <artifactId>logback-classic</artifactId>
  260. <version>${logback-classic.version}</version>
  261. <scope>provided</scope>
  262. <optional>true</optional>
  263. </dependency>
  264. <dependency>
  265. <groupId>org.springframework.boot</groupId>
  266. <artifactId>spring-boot-starter-test</artifactId>
  267. <version>${springboot.version}</version>
  268. <scope>test</scope>
  269. <optional>true</optional>
  270. </dependency>
  271. <dependency>
  272. <groupId>org.springframework.boot</groupId>
  273. <artifactId>spring-boot-autoconfigure</artifactId>
  274. <version>${springboot.version}</version>
  275. <scope>provided</scope>
  276. <optional>true</optional>
  277. </dependency>
  278. <dependency>
  279. <groupId>org.springframework.boot</groupId>
  280. <artifactId>spring-boot-configuration-processor</artifactId>
  281. <version>${springboot.version}</version>
  282. <scope>provided</scope>
  283. <optional>true</optional>
  284. </dependency>
  285. <dependency>
  286. <groupId>com.ctrip.framework.apollo</groupId>
  287. <artifactId>apollo-client</artifactId>
  288. <version>${apollo.version}</version>
  289. </dependency>
  290. <dependency>
  291. <groupId>org.python</groupId>
  292. <artifactId>jython-standalone</artifactId>
  293. <version>${jython.version}</version>
  294. </dependency>
  295. <dependency>
  296. <groupId>org.luaj</groupId>
  297. <artifactId>luaj-jse</artifactId>
  298. <version>${luaj.version}</version>
  299. </dependency>
  300. <dependency>
  301. <groupId>com.googlecode.aviator</groupId>
  302. <artifactId>aviator</artifactId>
  303. <version>${aviator.version}</version>
  304. </dependency>
  305. <dependency>
  306. <groupId>commons-io</groupId>
  307. <artifactId>commons-io</artifactId>
  308. <version>${common-io.version}</version>
  309. </dependency>
  310. <dependency>
  311. <groupId>org.codehaus.janino</groupId>
  312. <artifactId>janino</artifactId>
  313. <version>${janino.version}</version>
  314. </dependency>
  315. <dependency>
  316. <groupId>org.redisson</groupId>
  317. <artifactId>redisson</artifactId>
  318. <version>${redisson.version}</version>
  319. </dependency>
  320. <dependency>
  321. <groupId>org.jetbrains.kotlin</groupId>
  322. <artifactId>kotlin-scripting-jsr223</artifactId>
  323. <version>${kotlin.version}</version>
  324. </dependency>
  325. <dependency>
  326. <groupId>org.noear</groupId>
  327. <artifactId>liquor-eval</artifactId>
  328. <version>${liquor.version}</version>
  329. </dependency>
  330. </dependencies>
  331. </dependencyManagement>
  332. <build>
  333. <plugins>
  334. <plugin>
  335. <groupId>org.apache.maven.plugins</groupId>
  336. <artifactId>maven-jar-plugin</artifactId>
  337. <version>3.2.2</version>
  338. <configuration>
  339. <archive>
  340. <manifest>
  341. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  342. </manifest>
  343. </archive>
  344. </configuration>
  345. </plugin>
  346. <plugin>
  347. <groupId>org.apache.maven.plugins</groupId>
  348. <artifactId>maven-surefire-plugin</artifactId>
  349. <version>2.18.1</version>
  350. <configuration>
  351. <skipTests>true</skipTests>
  352. </configuration>
  353. </plugin>
  354. <plugin>
  355. <groupId>org.apache.maven.plugins</groupId>
  356. <artifactId>maven-source-plugin</artifactId>
  357. <version>2.4</version>
  358. <configuration>
  359. <attach>true</attach>
  360. </configuration>
  361. <executions>
  362. <execution>
  363. <phase>package</phase>
  364. <goals>
  365. <goal>jar-no-fork</goal>
  366. </goals>
  367. </execution>
  368. </executions>
  369. </plugin>
  370. <plugin>
  371. <groupId>org.apache.maven.plugins</groupId>
  372. <artifactId>maven-site-plugin</artifactId>
  373. <version>3.7.1</version>
  374. </plugin>
  375. <!-- Javadoc -->
  376. <plugin>
  377. <groupId>org.apache.maven.plugins</groupId>
  378. <artifactId>maven-javadoc-plugin</artifactId>
  379. <version>3.0.1</version>
  380. <executions>
  381. <execution>
  382. <phase>package</phase>
  383. <goals>
  384. <goal>jar</goal>
  385. </goals>
  386. </execution>
  387. </executions>
  388. </plugin>
  389. <!-- Gpg Signature -->
  390. <plugin>
  391. <groupId>org.apache.maven.plugins</groupId>
  392. <artifactId>maven-gpg-plugin</artifactId>
  393. <version>1.6</version>
  394. <executions>
  395. <execution>
  396. <id>sign-artifacts</id>
  397. <phase>verify</phase>
  398. <goals>
  399. <goal>sign</goal>
  400. </goals>
  401. </execution>
  402. </executions>
  403. </plugin>
  404. <!-- version number -->
  405. <plugin>
  406. <groupId>org.codehaus.mojo</groupId>
  407. <artifactId>flatten-maven-plugin</artifactId>
  408. <version>1.2.7</version>
  409. <configuration>
  410. <updatePomFile>true</updatePomFile>
  411. <flattenMode>resolveCiFriendliesOnly</flattenMode>
  412. </configuration>
  413. <executions>
  414. <execution>
  415. <id>flatten</id>
  416. <phase>process-resources</phase>
  417. <goals>
  418. <goal>flatten</goal>
  419. </goals>
  420. </execution>
  421. <execution>
  422. <id>flatten.clean</id>
  423. <phase>clean</phase>
  424. <goals>
  425. <goal>clean</goal>
  426. </goals>
  427. </execution>
  428. </executions>
  429. </plugin>
  430. <!-- 代码格式化 -->
  431. <plugin>
  432. <groupId>io.spring.javaformat</groupId>
  433. <artifactId>spring-javaformat-maven-plugin</artifactId>
  434. <version>0.0.38</version>
  435. </plugin>
  436. </plugins>
  437. </build>
  438. <modules>
  439. <module>liteflow-core</module>
  440. <module>liteflow-script-plugin</module>
  441. <module>liteflow-rule-plugin</module>
  442. <module>liteflow-spring-boot-starter</module>
  443. <module>liteflow-spring</module>
  444. <module>liteflow-solon-plugin</module>
  445. <module>liteflow-testcase-el</module>
  446. <module>liteflow-el-builder</module>
  447. <module>liteflow-benchmark</module>
  448. </modules>
  449. <distributionManagement>
  450. <snapshotRepository>
  451. <id>sonatype</id>
  452. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  453. </snapshotRepository>
  454. <repository>
  455. <id>sonatype</id>
  456. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  457. </repository>
  458. </distributionManagement>
  459. </project>