pom.xml 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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>net.o2oa</groupId>
  6. <artifactId>o2server</artifactId>
  7. <version>9.2</version>
  8. <packaging>pom</packaging>
  9. <description>O2OA企业应用开发平台 OpenSource OA Platform</description>
  10. <url>https://github.com/o2oa/o2oa</url>
  11. <licenses>
  12. <license>
  13. <name>GNU Affero General Public License v3.0</name>
  14. <url>https://www.gnu.org/licenses/agpl-3.0.html</url>
  15. <distribution>repo</distribution>
  16. </license>
  17. </licenses>
  18. <developers>
  19. <developer>
  20. <name>o2oa</name>
  21. <email>admin@o2oa.net</email>
  22. <organization>o2oa.net</organization>
  23. </developer>
  24. </developers>
  25. <scm>
  26. <tag>o2oa</tag>
  27. <url>https://github.com/o2oa/o2oa</url>
  28. <connection>scm:git:https://github.com/o2oa/o2oa.git</connection>
  29. <developerConnection>scm:git:https://github.com/o2oa/o2oa.git</developerConnection>
  30. </scm>
  31. <properties>
  32. <maven.compiler.source>11</maven.compiler.source>
  33. <maven.compiler.target>11</maven.compiler.target>
  34. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  35. <project.reporting.outputEncoding>UTF-8
  36. </project.reporting.outputEncoding>
  37. <graalvm.version>22.3.4</graalvm.version>
  38. </properties>
  39. <modules>
  40. <module>x_base_core_project</module>
  41. <!-- 顺序 -->
  42. <module>x_query_core_entity</module>
  43. <module>x_attendance_core_entity</module>
  44. <module>x_bbs_core_entity</module>
  45. <module>x_calendar_core_entity</module>
  46. <module>x_cms_core_entity</module>
  47. <module>x_component_core_entity</module>
  48. <module>x_file_core_entity</module>
  49. <module>x_general_core_entity</module>
  50. <module>x_hotpic_core_entity</module>
  51. <module>x_jpush_core_entity</module>
  52. <module>x_meeting_core_entity</module>
  53. <module>x_message_core_entity</module>
  54. <module>x_mind_core_entity</module>
  55. <module>x_organization_core_entity</module>
  56. <module>x_portal_core_entity</module>
  57. <module>x_processplatform_core_entity</module>
  58. <module>x_correlation_core_entity</module>
  59. <module>x_program_center_core_entity</module>
  60. <module>x_organization_core_express</module>
  61. <module>x_query_core_express</module>
  62. <module>x_processplatform_core_express</module>
  63. <module>x_correlation_core_express</module>
  64. <module>x_bbs_assemble_control</module>
  65. <module>x_calendar_assemble_control</module>
  66. <module>x_cms_core_express</module>
  67. <module>x_cms_assemble_control</module>
  68. <module>x_attendance_assemble_control</module>
  69. <module>x_component_assemble_control</module>
  70. <module>x_file_assemble_control</module>
  71. <module>x_general_assemble_control</module>
  72. <module>x_hotpic_assemble_control</module>
  73. <module>x_jpush_assemble_control</module>
  74. <module>x_meeting_assemble_control</module>
  75. <module>x_message_assemble_communicate</module>
  76. <module>x_mind_assemble_control</module>
  77. <module>x_organization_assemble_authentication</module>
  78. <module>x_organization_assemble_control</module>
  79. <module>x_organization_assemble_express</module>
  80. <module>x_organization_assemble_personal</module>
  81. <module>x_portal_assemble_designer</module>
  82. <module>x_portal_assemble_surface</module>
  83. <module>x_processplatform_assemble_bam</module>
  84. <module>x_processplatform_assemble_designer</module>
  85. <module>x_processplatform_assemble_surface</module>
  86. <module>x_processplatform_service_processing</module>
  87. <module>x_correlation_service_processing</module>
  88. <module>x_query_assemble_designer</module>
  89. <module>x_query_assemble_surface</module>
  90. <module>x_query_service_processing</module>
  91. <module>x_program_center</module>
  92. <module>x_program_init</module>
  93. <module>x_console</module>
  94. </modules>
  95. <dependencies>
  96. <dependency>
  97. <groupId>javax</groupId>
  98. <artifactId>javaee-api</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.google.code.gson</groupId>
  102. <artifactId>gson</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.openjpa</groupId>
  106. <artifactId>openjpa</artifactId>
  107. <exclusions>
  108. <exclusion>
  109. <groupId>org.apache.geronimo.specs</groupId>
  110. <artifactId>geronimo-jms_1.1_spec</artifactId>
  111. </exclusion>
  112. </exclusions>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.apache.commons</groupId>
  116. <artifactId>commons-lang3</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>commons-cli</groupId>
  120. <artifactId>commons-cli</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>commons-beanutils</groupId>
  124. <artifactId>commons-beanutils</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>commons-net</groupId>
  128. <artifactId>commons-net</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.commons</groupId>
  132. <artifactId>commons-math3</artifactId>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.apache.commons</groupId>
  136. <artifactId>commons-collections4</artifactId>
  137. </dependency>
  138. <dependency>
  139. <groupId>commons-codec</groupId>
  140. <artifactId>commons-codec</artifactId>
  141. </dependency>
  142. <dependency>
  143. <groupId>commons-io</groupId>
  144. <artifactId>commons-io</artifactId>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.apache.commons</groupId>
  148. <artifactId>commons-vfs2-jackrabbit2</artifactId>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.apache.commons</groupId>
  152. <artifactId>commons-pool2</artifactId>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.apache.commons</groupId>
  156. <artifactId>commons-text</artifactId>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.apache.commons</groupId>
  160. <artifactId>commons-compress</artifactId>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.eclipse.jetty</groupId>
  164. <artifactId>jetty-server</artifactId>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.eclipse.jetty</groupId>
  168. <artifactId>jetty-deploy</artifactId>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.eclipse.jetty</groupId>
  172. <artifactId>jetty-annotations</artifactId>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.eclipse.jetty</groupId>
  176. <artifactId>jetty-quickstart</artifactId>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.eclipse.jetty</groupId>
  180. <artifactId>jetty-proxy</artifactId>
  181. </dependency>
  182. <dependency>
  183. <groupId>com.google.zxing</groupId>
  184. <artifactId>core</artifactId>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.apache.ftpserver</groupId>
  188. <artifactId>ftpserver-core</artifactId>
  189. </dependency>
  190. <dependency>
  191. <groupId>org.apache.ftpserver</groupId>
  192. <artifactId>ftplet-api</artifactId>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.apache.cxf</groupId>
  196. <artifactId>cxf-core</artifactId>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.apache.cxf</groupId>
  200. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.apache.cxf</groupId>
  204. <artifactId>cxf-rt-frontend-simple</artifactId>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.apache.cxf</groupId>
  208. <artifactId>cxf-rt-wsdl</artifactId>
  209. </dependency>
  210. <dependency>
  211. <groupId>org.apache.poi</groupId>
  212. <artifactId>poi</artifactId>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.apache.poi</groupId>
  216. <artifactId>poi-ooxml</artifactId>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.apache.poi</groupId>
  220. <artifactId>poi-scratchpad</artifactId>
  221. </dependency>
  222. <dependency>
  223. <groupId>fr.opensagres.xdocreport</groupId>
  224. <artifactId>fr.opensagres.poi.xwpf.converter.xhtml</artifactId>
  225. </dependency>
  226. <dependency>
  227. <groupId>fr.opensagres.xdocreport</groupId>
  228. <artifactId>xdocreport</artifactId>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.apache.tika</groupId>
  232. <artifactId>tika-core</artifactId>
  233. </dependency>
  234. <dependency>
  235. <groupId>org.apache.tika</groupId>
  236. <artifactId>tika-parsers-standard-package</artifactId>
  237. </dependency>
  238. <dependency>
  239. <groupId>org.apache.maven</groupId>
  240. <artifactId>maven-model</artifactId>
  241. </dependency>
  242. <dependency>
  243. <groupId>io.github.classgraph</groupId>
  244. <artifactId>classgraph</artifactId>
  245. </dependency>
  246. <dependency>
  247. <groupId>org.glassfish.jersey.core</groupId>
  248. <artifactId>jersey-server</artifactId>
  249. </dependency>
  250. <dependency>
  251. <groupId>org.glassfish.jersey.media</groupId>
  252. <artifactId>jersey-media-multipart</artifactId>
  253. </dependency>
  254. <dependency>
  255. <groupId>org.dom4j</groupId>
  256. <artifactId>dom4j</artifactId>
  257. </dependency>
  258. <dependency>
  259. <groupId>org.quartz-scheduler</groupId>
  260. <artifactId>quartz</artifactId>
  261. </dependency>
  262. <dependency>
  263. <groupId>org.imgscalr</groupId>
  264. <artifactId>imgscalr-lib</artifactId>
  265. </dependency>
  266. <dependency>
  267. <groupId>com.github.stuxuhai</groupId>
  268. <artifactId>jpinyin</artifactId>
  269. </dependency>
  270. <dependency>
  271. <groupId>com.hankcs</groupId>
  272. <artifactId>hanlp</artifactId>
  273. </dependency>
  274. <dependency>
  275. <groupId>com.hankcs.nlp</groupId>
  276. <artifactId>hanlp-lucene-plugin</artifactId>
  277. </dependency>
  278. <dependency>
  279. <groupId>de.vandermeer</groupId>
  280. <artifactId>asciitable</artifactId>
  281. </dependency>
  282. <dependency>
  283. <groupId>com.h2database</groupId>
  284. <artifactId>h2</artifactId>
  285. </dependency>
  286. <dependency>
  287. <groupId>org.mnode.ical4j</groupId>
  288. <artifactId>ical4j</artifactId>
  289. </dependency>
  290. <dependency>
  291. <groupId>org.apache.xbean</groupId>
  292. <artifactId>xbean-asm8-shaded</artifactId>
  293. </dependency>
  294. <dependency>
  295. <groupId>com.squareup</groupId>
  296. <artifactId>javapoet</artifactId>
  297. </dependency>
  298. <dependency>
  299. <groupId>com.github.neuroph</groupId>
  300. <artifactId>neuroph-core</artifactId>
  301. </dependency>
  302. <dependency>
  303. <groupId>com.github.neuroph</groupId>
  304. <artifactId>neuroph-imgrec</artifactId>
  305. </dependency>
  306. <dependency>
  307. <groupId>com.github.neuroph</groupId>
  308. <artifactId>neuroph-ocr</artifactId>
  309. </dependency>
  310. <dependency>
  311. <groupId>com.github.neuroph</groupId>
  312. <artifactId>neuroph-contrib</artifactId>
  313. </dependency>
  314. <dependency>
  315. <groupId>net.sourceforge.tess4j</groupId>
  316. <artifactId>tess4j</artifactId>
  317. </dependency>
  318. <dependency>
  319. <groupId>com.alibaba</groupId>
  320. <artifactId>druid</artifactId>
  321. </dependency>
  322. <dependency>
  323. <groupId>com.itextpdf</groupId>
  324. <artifactId>html2pdf</artifactId>
  325. </dependency>
  326. <dependency>
  327. <groupId>com.itextpdf</groupId>
  328. <artifactId>font-asian</artifactId>
  329. </dependency>
  330. <dependency>
  331. <groupId>redis.clients</groupId>
  332. <artifactId>jedis</artifactId>
  333. </dependency>
  334. <dependency>
  335. <groupId>com.sun.mail</groupId>
  336. <artifactId>javax.mail</artifactId>
  337. </dependency>
  338. <dependency>
  339. <groupId>org.apache.commons</groupId>
  340. <artifactId>commons-email</artifactId>
  341. </dependency>
  342. <dependency>
  343. <groupId>commons-fileupload</groupId>
  344. <artifactId>commons-fileupload</artifactId>
  345. </dependency>
  346. <dependency>
  347. <groupId>javax.activation</groupId>
  348. <artifactId>activation</artifactId>
  349. </dependency>
  350. <dependency>
  351. <groupId>net.lingala.zip4j</groupId>
  352. <artifactId>zip4j</artifactId>
  353. </dependency>
  354. <dependency>
  355. <groupId>com.github.xuwei-k</groupId>
  356. <artifactId>html2image</artifactId>
  357. </dependency>
  358. <dependency>
  359. <groupId>com.microsoft.playwright</groupId>
  360. <artifactId>playwright</artifactId>
  361. </dependency>
  362. <dependency>
  363. <groupId>javax.cache</groupId>
  364. <artifactId>cache-api</artifactId>
  365. </dependency>
  366. <dependency>
  367. <groupId>org.jsr107.ri</groupId>
  368. <artifactId>cache-ri-impl</artifactId>
  369. </dependency>
  370. <dependency>
  371. <groupId>org.apache.logging.log4j</groupId>
  372. <artifactId>log4j-api</artifactId>
  373. </dependency>
  374. <dependency>
  375. <groupId>org.apache.logging.log4j</groupId>
  376. <artifactId>log4j-core</artifactId>
  377. </dependency>
  378. <dependency>
  379. <groupId>org.slf4j</groupId>
  380. <artifactId>slf4j-api</artifactId>
  381. </dependency>
  382. <dependency>
  383. <groupId>io.swagger.core.v3</groupId>
  384. <artifactId>swagger-annotations</artifactId>
  385. </dependency>
  386. <dependency>
  387. <groupId>io.swagger.core.v3</groupId>
  388. <artifactId>swagger-core</artifactId>
  389. </dependency>
  390. <dependency>
  391. <groupId>io.swagger.core.v3</groupId>
  392. <artifactId>swagger-jaxrs2</artifactId>
  393. </dependency>
  394. <dependency>
  395. <groupId>org.eclipse.jgit</groupId>
  396. <artifactId>org.eclipse.jgit</artifactId>
  397. </dependency>
  398. <dependency>
  399. <groupId>org.ldaptive</groupId>
  400. <artifactId>ldaptive-jldap</artifactId>
  401. </dependency>
  402. <dependency>
  403. <groupId>org.jsoup</groupId>
  404. <artifactId>jsoup</artifactId>
  405. </dependency>
  406. <dependency>
  407. <groupId>org.apache.lucene</groupId>
  408. <artifactId>lucene-core</artifactId>
  409. </dependency>
  410. <dependency>
  411. <groupId>org.apache.lucene</groupId>
  412. <artifactId>lucene-queryparser</artifactId>
  413. </dependency>
  414. <dependency>
  415. <groupId>org.apache.lucene</groupId>
  416. <artifactId>lucene-highlighter</artifactId>
  417. </dependency>
  418. <dependency>
  419. <groupId>org.apache.lucene</groupId>
  420. <artifactId>lucene-grouping</artifactId>
  421. </dependency>
  422. <dependency>
  423. <groupId>org.apache.lucene</groupId>
  424. <artifactId>lucene-luke</artifactId>
  425. </dependency>
  426. <dependency>
  427. <groupId>com.github.jsqlparser</groupId>
  428. <artifactId>jsqlparser</artifactId>
  429. </dependency>
  430. <dependency>
  431. <groupId>org.junit.jupiter</groupId>
  432. <artifactId>junit-jupiter-api</artifactId>
  433. </dependency>
  434. <dependency>
  435. <groupId>org.junit.jupiter</groupId>
  436. <artifactId>junit-jupiter-engine</artifactId>
  437. </dependency>
  438. <dependency>
  439. <groupId>org.graalvm.sdk</groupId>
  440. <artifactId>graal-sdk</artifactId>
  441. </dependency>
  442. <dependency>
  443. <groupId>org.graalvm.js</groupId>
  444. <artifactId>js</artifactId>
  445. </dependency>
  446. <dependency>
  447. <groupId>org.graalvm.js</groupId>
  448. <artifactId>js-scriptengine</artifactId>
  449. </dependency>
  450. <dependency>
  451. <groupId>org.graalvm.tools</groupId>
  452. <artifactId>profiler</artifactId>
  453. </dependency>
  454. <dependency>
  455. <groupId>org.graalvm.tools</groupId>
  456. <artifactId>chromeinspector</artifactId>
  457. </dependency>
  458. <dependency>
  459. <groupId>com.google.guava</groupId>
  460. <artifactId>guava</artifactId>
  461. </dependency>
  462. </dependencies>
  463. <build>
  464. <finalName>${project.artifactId}</finalName>
  465. <pluginManagement>
  466. <plugins>
  467. <plugin>
  468. <artifactId>maven-clean-plugin</artifactId>
  469. <version>3.1.0</version>
  470. <configuration>
  471. <filesets>
  472. <fileset>
  473. <directory>${basedir}</directory>
  474. <includes>
  475. <include>**/*_.java</include>
  476. </includes>
  477. </fileset>
  478. </filesets>
  479. </configuration>
  480. </plugin>
  481. <plugin>
  482. <groupId>org.codehaus.mojo</groupId>
  483. <artifactId>exec-maven-plugin</artifactId>
  484. <version>1.6.0</version>
  485. </plugin>
  486. <plugin>
  487. <groupId>org.apache.maven.plugins</groupId>
  488. <artifactId>maven-resources-plugin</artifactId>
  489. <version>3.1.0</version>
  490. </plugin>
  491. <plugin>
  492. <groupId>org.apache.maven.plugins</groupId>
  493. <artifactId>maven-compiler-plugin</artifactId>
  494. <version>3.8.1</version>
  495. <configuration>
  496. <target>11</target>
  497. </configuration>
  498. </plugin>
  499. <plugin>
  500. <groupId>org.eclipse.m2e</groupId>
  501. <artifactId>lifecycle-mapping</artifactId>
  502. <version>1.0.0</version>
  503. <configuration>
  504. <lifecycleMappingMetadata>
  505. <pluginExecutions>
  506. <pluginExecution>
  507. <pluginExecutionFilter>
  508. <groupId>
  509. org.codehaus.mojo
  510. </groupId>
  511. <artifactId>
  512. exec-maven-plugin
  513. </artifactId>
  514. <versionRange>
  515. [1.6.0,)
  516. </versionRange>
  517. <goals>
  518. <goal>java</goal>
  519. </goals>
  520. </pluginExecutionFilter>
  521. <action>
  522. <ignore></ignore>
  523. </action>
  524. </pluginExecution>
  525. </pluginExecutions>
  526. </lifecycleMappingMetadata>
  527. </configuration>
  528. </plugin>
  529. <!-- 源码插件-->
  530. <plugin>
  531. <groupId>org.apache.maven.plugins</groupId>
  532. <artifactId>maven-source-plugin</artifactId>
  533. <version>3.1.0</version>
  534. <executions>
  535. <execution>
  536. <phase>package</phase>
  537. <goals>
  538. <goal>jar-no-fork</goal>
  539. </goals>
  540. </execution>
  541. </executions>
  542. </plugin>
  543. <!-- 文档插件-->
  544. <plugin>
  545. <groupId>org.apache.maven.plugins</groupId>
  546. <artifactId>maven-javadoc-plugin</artifactId>
  547. <version>3.2.0</version>
  548. <configuration>
  549. <show>private</show>
  550. <nohelp>true</nohelp>
  551. <charset>UTF-8</charset>
  552. <encoding>UTF-8</encoding>
  553. <docencoding>UTF-8</docencoding>
  554. <additionalOptions>
  555. <!-- 解决jdk1.8以后编译出错问题-->
  556. <!--
  557. <additionalOption>-Xdoclint:none</additionalOption>-->
  558. <additionalparam>-Xdoclint:none</additionalparam>
  559. </additionalOptions>
  560. </configuration>
  561. <executions>
  562. <execution>
  563. <phase>compile</phase>
  564. <goals>
  565. <goal>jar</goal>
  566. </goals>
  567. </execution>
  568. </executions>
  569. </plugin>
  570. <!-- gpg插件 -->
  571. <plugin>
  572. <groupId>org.apache.maven.plugins</groupId>
  573. <artifactId>maven-gpg-plugin</artifactId>
  574. <version>1.6</version>
  575. <executions>
  576. <execution>
  577. <id>sign-artifacts</id>
  578. <phase>verify</phase>
  579. <goals>
  580. <goal>sign</goal>
  581. </goals>
  582. </execution>
  583. </executions>
  584. </plugin>
  585. </plugins>
  586. </pluginManagement>
  587. <plugins>
  588. <plugin>
  589. <groupId>org.apache.maven.plugins</groupId>
  590. <artifactId>maven-surefire-plugin</artifactId>
  591. <version>3.0.0-M3</version>
  592. <configuration>
  593. <skipTests>true</skipTests>
  594. </configuration>
  595. </plugin>
  596. <plugin>
  597. <groupId>org.apache.maven.plugins</groupId>
  598. <artifactId>maven-war-plugin</artifactId>
  599. <version>3.2.3</version>
  600. <configuration>
  601. <archive>
  602. <addMavenDescriptor>false</addMavenDescriptor>
  603. </archive>
  604. <packagingExcludes>persistence.xml,WEB-INF/lib/**,META-INF
  605. </packagingExcludes>
  606. <failOnMissingWebXml>false</failOnMissingWebXml>
  607. </configuration>
  608. </plugin>
  609. <plugin>
  610. <groupId>org.apache.maven.plugins</groupId>
  611. <artifactId>maven-jar-plugin</artifactId>
  612. <version>3.2.0</version>
  613. <configuration>
  614. <archive>
  615. <addMavenDescriptor>false</addMavenDescriptor>
  616. </archive>
  617. <excludes>
  618. <exclude>META-INF/**</exclude>
  619. </excludes>
  620. </configuration>
  621. </plugin>
  622. </plugins>
  623. </build>
  624. <dependencyManagement>
  625. <dependencies>
  626. <dependency>
  627. <groupId>javax</groupId>
  628. <artifactId>javaee-api</artifactId>
  629. <version>8.0.1</version>
  630. </dependency>
  631. <dependency>
  632. <groupId>com.google.code.gson</groupId>
  633. <artifactId>gson</artifactId>
  634. <version>2.8.9</version>
  635. </dependency>
  636. <dependency>
  637. <groupId>org.apache.openjpa</groupId>
  638. <artifactId>openjpa</artifactId>
  639. <version>3.2.2</version>
  640. </dependency>
  641. <dependency>
  642. <groupId>org.apache.commons</groupId>
  643. <artifactId>commons-lang3</artifactId>
  644. <version>3.16.0</version>
  645. </dependency>
  646. <dependency>
  647. <groupId>commons-cli</groupId>
  648. <artifactId>commons-cli</artifactId>
  649. <version>1.8.0</version>
  650. </dependency>
  651. <dependency>
  652. <groupId>commons-beanutils</groupId>
  653. <artifactId>commons-beanutils</artifactId>
  654. <version>1.9.4</version>
  655. </dependency>
  656. <dependency>
  657. <groupId>commons-net</groupId>
  658. <artifactId>commons-net</artifactId>
  659. <version>3.11.1</version>
  660. </dependency>
  661. <dependency>
  662. <groupId>org.apache.commons</groupId>
  663. <artifactId>commons-math3</artifactId>
  664. <version>3.6.1</version>
  665. </dependency>
  666. <dependency>
  667. <groupId>org.apache.commons</groupId>
  668. <artifactId>commons-collections4</artifactId>
  669. <version>4.4</version>
  670. </dependency>
  671. <dependency>
  672. <groupId>commons-codec</groupId>
  673. <artifactId>commons-codec</artifactId>
  674. <version>1.17.1</version>
  675. </dependency>
  676. <dependency>
  677. <groupId>commons-io</groupId>
  678. <artifactId>commons-io</artifactId>
  679. <version>2.17.0</version>
  680. </dependency>
  681. <dependency>
  682. <groupId>org.apache.commons</groupId>
  683. <artifactId>commons-vfs2-jackrabbit2</artifactId>
  684. <version>2.9.0</version>
  685. <exclusions>
  686. <exclusion>
  687. <groupId>org.apache.hadoop</groupId>
  688. <artifactId>hadoop-hdfs-client</artifactId>
  689. </exclusion>
  690. </exclusions>
  691. </dependency>
  692. <dependency>
  693. <groupId>org.apache.commons</groupId>
  694. <artifactId>commons-pool2</artifactId>
  695. <version>2.12.0</version>
  696. </dependency>
  697. <dependency>
  698. <groupId>org.apache.commons</groupId>
  699. <artifactId>commons-text</artifactId>
  700. <version>1.12.0</version>
  701. </dependency>
  702. <dependency>
  703. <groupId>org.apache.maven</groupId>
  704. <artifactId>maven-model</artifactId>
  705. <version>3.9.9</version>
  706. </dependency>
  707. <dependency>
  708. <groupId>org.apache.commons</groupId>
  709. <artifactId>commons-compress</artifactId>
  710. <version>1.27.1</version>
  711. </dependency>
  712. <dependency>
  713. <groupId>org.apache.commons</groupId>
  714. <artifactId>commons-configuration2</artifactId>
  715. <version>2.11.0</version>
  716. </dependency>
  717. <dependency>
  718. <groupId>commons-fileupload</groupId>
  719. <artifactId>commons-fileupload</artifactId>
  720. <version>1.5</version>
  721. </dependency>
  722. <dependency>
  723. <groupId>org.eclipse.jetty</groupId>
  724. <artifactId>jetty-server</artifactId>
  725. <version>9.4.56.v20240826</version>
  726. </dependency>
  727. <dependency>
  728. <groupId>org.eclipse.jetty</groupId>
  729. <artifactId>jetty-deploy</artifactId>
  730. <version>9.4.56.v20240826</version>
  731. </dependency>
  732. <dependency>
  733. <groupId>org.eclipse.jetty</groupId>
  734. <artifactId>jetty-annotations</artifactId>
  735. <version>9.4.56.v20240826</version>
  736. </dependency>
  737. <dependency>
  738. <groupId>org.eclipse.jetty</groupId>
  739. <artifactId>jetty-quickstart</artifactId>
  740. <version>9.4.56.v20240826</version>
  741. </dependency>
  742. <dependency>
  743. <groupId>org.eclipse.jetty</groupId>
  744. <artifactId>jetty-proxy</artifactId>
  745. <version>9.4.56.v20240826</version>
  746. </dependency>
  747. <dependency>
  748. <groupId>com.google.zxing</groupId>
  749. <artifactId>core</artifactId>
  750. <version>3.4.0</version>
  751. </dependency>
  752. <dependency>
  753. <groupId>org.apache.ftpserver</groupId>
  754. <artifactId>ftpserver-core</artifactId>
  755. <version>1.2.0</version>
  756. </dependency>
  757. <dependency>
  758. <groupId>org.apache.ftpserver</groupId>
  759. <artifactId>ftplet-api</artifactId>
  760. <version>1.2.0</version>
  761. </dependency>
  762. <dependency>
  763. <groupId>org.apache.cxf</groupId>
  764. <artifactId>cxf-core</artifactId>
  765. <version>3.6.4</version>
  766. </dependency>
  767. <dependency>
  768. <groupId>org.apache.cxf</groupId>
  769. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  770. <version>3.6.4</version>
  771. </dependency>
  772. <dependency>
  773. <groupId>org.apache.cxf</groupId>
  774. <artifactId>cxf-rt-frontend-simple</artifactId>
  775. <version>3.6.4</version>
  776. </dependency>
  777. <dependency>
  778. <groupId>org.apache.cxf</groupId>
  779. <artifactId>cxf-rt-wsdl</artifactId>
  780. <version>3.6.4</version>
  781. </dependency>
  782. <dependency>
  783. <groupId>org.apache.cxf</groupId>
  784. <artifactId>cxf-rt-databinding-jaxb</artifactId>
  785. <version>3.6.4</version>
  786. </dependency>
  787. <dependency>
  788. <groupId>org.apache.cxf</groupId>
  789. <artifactId>cxf-rt-transports-http</artifactId>
  790. <version>3.6.4</version>
  791. </dependency>
  792. <dependency>
  793. <groupId>org.apache.cxf</groupId>
  794. <artifactId>cxf-rt-bindings-soap</artifactId>
  795. <version>3.6.4</version>
  796. </dependency>
  797. <dependency>
  798. <groupId>org.apache.cxf</groupId>
  799. <artifactId>cxf-rt-bindings-xml</artifactId>
  800. <version>3.6.4</version>
  801. </dependency>
  802. <dependency>
  803. <groupId>org.apache.cxf</groupId>
  804. <artifactId>cxf-rt-ws-addr</artifactId>
  805. <version>3.6.4</version>
  806. </dependency>
  807. <dependency>
  808. <groupId>com.fasterxml.woodstox</groupId>
  809. <artifactId>woodstox-core</artifactId>
  810. <version>6.7.0</version>
  811. </dependency>
  812. <dependency>
  813. <groupId>org.codehaus.woodstox</groupId>
  814. <artifactId>stax2-api</artifactId>
  815. <version>4.2.1</version>
  816. </dependency>
  817. <dependency>
  818. <groupId>org.apache.neethi</groupId>
  819. <artifactId>neethi</artifactId>
  820. <version>3.1.1</version>
  821. </dependency>
  822. <dependency>
  823. <groupId>org.apache.poi</groupId>
  824. <artifactId>poi</artifactId>
  825. <version>5.2.3</version>
  826. </dependency>
  827. <dependency>
  828. <groupId>org.apache.poi</groupId>
  829. <artifactId>poi-ooxml</artifactId>
  830. <version>5.2.3</version>
  831. </dependency>
  832. <dependency>
  833. <groupId>org.apache.poi</groupId>
  834. <artifactId>poi-scratchpad</artifactId>
  835. <version>5.2.3</version>
  836. </dependency>
  837. <dependency>
  838. <groupId>fr.opensagres.xdocreport</groupId>
  839. <artifactId>fr.opensagres.poi.xwpf.converter.xhtml</artifactId>
  840. <version>2.0.2</version>
  841. </dependency>
  842. <dependency>
  843. <groupId>org.apache.tika</groupId>
  844. <artifactId>tika-core</artifactId>
  845. <version>2.9.2</version>
  846. </dependency>
  847. <dependency>
  848. <groupId>org.apache.tika</groupId>
  849. <artifactId>tika-parsers-standard-package</artifactId>
  850. <version>2.9.2</version>
  851. <exclusions>
  852. <exclusion>
  853. <groupId>xerces</groupId><!--排除xml-apis-->
  854. <artifactId>xercesImpl</artifactId>
  855. </exclusion>
  856. </exclusions>
  857. </dependency>
  858. <dependency>
  859. <groupId>net.sourceforge.tess4j</groupId>
  860. <artifactId>tess4j</artifactId>
  861. <version>5.13.0</version>
  862. </dependency>
  863. <dependency>
  864. <groupId>io.github.classgraph</groupId>
  865. <artifactId>classgraph</artifactId>
  866. <version>4.8.89</version>
  867. </dependency>
  868. <dependency>
  869. <groupId>org.glassfish.jersey.core</groupId>
  870. <artifactId>jersey-server</artifactId>
  871. <version>2.45</version>
  872. </dependency>
  873. <dependency>
  874. <groupId>fr.opensagres.xdocreport</groupId>
  875. <artifactId>xdocreport</artifactId>
  876. <version>2.0.2</version>
  877. </dependency>
  878. <dependency>
  879. <groupId>org.glassfish.jersey.media</groupId>
  880. <artifactId>jersey-media-multipart</artifactId>
  881. <version>2.45</version>
  882. </dependency>
  883. <dependency>
  884. <groupId>org.dom4j</groupId>
  885. <artifactId>dom4j</artifactId>
  886. <version>2.1.4</version>
  887. </dependency>
  888. <dependency>
  889. <groupId>org.quartz-scheduler</groupId>
  890. <artifactId>quartz</artifactId>
  891. <version>2.4.0-rc2</version>
  892. </dependency>
  893. <dependency>
  894. <groupId>org.imgscalr</groupId>
  895. <artifactId>imgscalr-lib</artifactId>
  896. <version>4.2</version>
  897. </dependency>
  898. <dependency>
  899. <groupId>com.github.stuxuhai</groupId>
  900. <artifactId>jpinyin</artifactId>
  901. <version>1.1.8</version>
  902. </dependency>
  903. <dependency>
  904. <groupId>com.hankcs</groupId>
  905. <artifactId>hanlp</artifactId>
  906. <version>portable-1.8.3</version>
  907. </dependency>
  908. <dependency>
  909. <groupId>com.hankcs.nlp</groupId>
  910. <artifactId>hanlp-lucene-plugin</artifactId>
  911. <version>1.1.7</version>
  912. </dependency>
  913. <dependency>
  914. <groupId>org.apache.lucene</groupId>
  915. <artifactId>lucene-core</artifactId>
  916. <version>9.4.1</version>
  917. </dependency>
  918. <dependency>
  919. <groupId>org.apache.lucene</groupId>
  920. <artifactId>lucene-queryparser</artifactId>
  921. <version>9.4.2</version>
  922. </dependency>
  923. <dependency>
  924. <groupId>org.apache.lucene</groupId>
  925. <artifactId>lucene-highlighter</artifactId>
  926. <version>9.4.2</version>
  927. </dependency>
  928. <dependency>
  929. <groupId>org.apache.lucene</groupId>
  930. <artifactId>lucene-grouping</artifactId>
  931. <version>9.4.2</version>
  932. </dependency>
  933. <dependency>
  934. <groupId>org.apache.lucene</groupId>
  935. <artifactId>lucene-luke</artifactId>
  936. <version>9.4.1</version>
  937. </dependency>
  938. <dependency>
  939. <groupId>de.vandermeer</groupId>
  940. <artifactId>asciitable</artifactId>
  941. <version>0.3.2</version>
  942. </dependency>
  943. <dependency>
  944. <groupId>com.h2database</groupId>
  945. <artifactId>h2</artifactId>
  946. <version>1.4.200</version>
  947. </dependency>
  948. <dependency>
  949. <groupId>org.mnode.ical4j</groupId>
  950. <artifactId>ical4j</artifactId>
  951. <version>3.0.9</version>
  952. </dependency>
  953. <dependency>
  954. <groupId>org.apache.xbean</groupId>
  955. <artifactId>xbean-asm8-shaded</artifactId>
  956. <version>4.17</version>
  957. </dependency>
  958. <dependency>
  959. <groupId>com.squareup</groupId>
  960. <artifactId>javapoet</artifactId>
  961. <version>1.11.1</version>
  962. </dependency>
  963. <dependency>
  964. <groupId>com.github.neuroph</groupId>
  965. <artifactId>neuroph-core</artifactId>
  966. <version>2.98</version>
  967. </dependency>
  968. <dependency>
  969. <groupId>com.github.neuroph</groupId>
  970. <artifactId>neuroph-imgrec</artifactId>
  971. <version>2.98</version>
  972. </dependency>
  973. <dependency>
  974. <groupId>com.github.neuroph</groupId>
  975. <artifactId>neuroph-ocr</artifactId>
  976. <version>2.98</version>
  977. </dependency>
  978. <dependency>
  979. <groupId>com.github.neuroph</groupId>
  980. <artifactId>neuroph-contrib</artifactId>
  981. <version>2.98</version>
  982. </dependency>
  983. <dependency>
  984. <groupId>com.alibaba</groupId>
  985. <artifactId>druid</artifactId>
  986. <version>1.2.8</version>
  987. <exclusions>
  988. <exclusion>
  989. <groupId>com.sun</groupId>
  990. <artifactId>tools</artifactId>
  991. </exclusion>
  992. <exclusion>
  993. <groupId>com.sun</groupId>
  994. <artifactId>jconsole</artifactId>
  995. </exclusion>
  996. </exclusions>
  997. </dependency>
  998. <dependency>
  999. <groupId>com.itextpdf</groupId>
  1000. <artifactId>html2pdf</artifactId>
  1001. <version>5.0.5</version>
  1002. </dependency>
  1003. <dependency>
  1004. <groupId>com.itextpdf</groupId>
  1005. <artifactId>font-asian</artifactId>
  1006. <version>8.0.5</version>
  1007. </dependency>
  1008. <dependency>
  1009. <groupId>redis.clients</groupId>
  1010. <artifactId>jedis</artifactId>
  1011. <version>3.3.0</version>
  1012. </dependency>
  1013. <dependency>
  1014. <groupId>org.apache.commons</groupId>
  1015. <artifactId>commons-email</artifactId>
  1016. <version>1.5</version>
  1017. </dependency>
  1018. <dependency>
  1019. <groupId>javax.activation</groupId>
  1020. <artifactId>activation</artifactId>
  1021. <version>1.1.1</version>
  1022. </dependency>
  1023. <dependency>
  1024. <groupId>com.github.xuwei-k</groupId>
  1025. <artifactId>html2image</artifactId>
  1026. <version>0.1.0</version>
  1027. </dependency>
  1028. <dependency>
  1029. <groupId>org.apache.logging.log4j</groupId>
  1030. <artifactId>log4j-api</artifactId>
  1031. <version>2.17.2</version>
  1032. </dependency>
  1033. <dependency>
  1034. <groupId>org.apache.logging.log4j</groupId>
  1035. <artifactId>log4j-core</artifactId>
  1036. <version>2.17.2</version>
  1037. </dependency>
  1038. <dependency>
  1039. <groupId>org.slf4j</groupId>
  1040. <artifactId>slf4j-api</artifactId>
  1041. <version>1.7.32</version>
  1042. </dependency>
  1043. <dependency>
  1044. <groupId>org.apache.logging.log4j</groupId>
  1045. <artifactId>log4j-slf4j-impl</artifactId>
  1046. <version>2.18.0</version>
  1047. </dependency>
  1048. <dependency>
  1049. <groupId>net.o2oa</groupId>
  1050. <artifactId>x_base_core_project</artifactId>
  1051. <version>9.2</version>
  1052. </dependency>
  1053. <dependency>
  1054. <groupId>net.o2oa</groupId>
  1055. <artifactId>x_attendance_core_entity</artifactId>
  1056. <version>9.2</version>
  1057. </dependency>
  1058. <dependency>
  1059. <groupId>net.o2oa</groupId>
  1060. <artifactId>x_bbs_core_entity</artifactId>
  1061. <version>9.2</version>
  1062. </dependency>
  1063. <dependency>
  1064. <groupId>net.o2oa</groupId>
  1065. <artifactId>x_calendar_core_entity</artifactId>
  1066. <version>9.2</version>
  1067. </dependency>
  1068. <dependency>
  1069. <groupId>net.o2oa</groupId>
  1070. <artifactId>x_cms_core_entity</artifactId>
  1071. <version>9.2</version>
  1072. </dependency>
  1073. <dependency>
  1074. <groupId>net.o2oa</groupId>
  1075. <artifactId>x_cms_core_express</artifactId>
  1076. <version>9.2</version>
  1077. </dependency>
  1078. <dependency>
  1079. <groupId>net.o2oa</groupId>
  1080. <artifactId>x_component_core_entity</artifactId>
  1081. <version>9.2</version>
  1082. </dependency>
  1083. <dependency>
  1084. <groupId>net.o2oa</groupId>
  1085. <artifactId>x_file_core_entity</artifactId>
  1086. <version>9.2</version>
  1087. </dependency>
  1088. <dependency>
  1089. <groupId>net.o2oa</groupId>
  1090. <artifactId>x_general_core_entity</artifactId>
  1091. <version>9.2</version>
  1092. </dependency>
  1093. <dependency>
  1094. <groupId>net.o2oa</groupId>
  1095. <artifactId>x_hotpic_core_entity</artifactId>
  1096. <version>9.2</version>
  1097. </dependency>
  1098. <dependency>
  1099. <groupId>net.o2oa</groupId>
  1100. <artifactId>x_meeting_core_entity</artifactId>
  1101. <version>9.2</version>
  1102. </dependency>
  1103. <dependency>
  1104. <groupId>net.o2oa</groupId>
  1105. <artifactId>x_message_core_entity</artifactId>
  1106. <version>9.2</version>
  1107. </dependency>
  1108. <dependency>
  1109. <groupId>net.o2oa</groupId>
  1110. <artifactId>x_mind_core_entity</artifactId>
  1111. <version>9.2</version>
  1112. </dependency>
  1113. <dependency>
  1114. <groupId>net.o2oa</groupId>
  1115. <artifactId>x_organization_core_entity</artifactId>
  1116. <version>9.2</version>
  1117. </dependency>
  1118. <dependency>
  1119. <groupId>net.o2oa</groupId>
  1120. <artifactId>x_jpush_core_entity</artifactId>
  1121. <version>9.2</version>
  1122. </dependency>
  1123. <dependency>
  1124. <groupId>net.o2oa</groupId>
  1125. <artifactId>x_organization_core_express</artifactId>
  1126. <version>9.2</version>
  1127. </dependency>
  1128. <dependency>
  1129. <groupId>net.o2oa</groupId>
  1130. <artifactId>x_portal_core_entity</artifactId>
  1131. <version>9.2</version>
  1132. </dependency>
  1133. <dependency>
  1134. <groupId>net.o2oa</groupId>
  1135. <artifactId>x_processplatform_core_entity</artifactId>
  1136. <version>9.2</version>
  1137. </dependency>
  1138. <dependency>
  1139. <groupId>net.o2oa</groupId>
  1140. <artifactId>x_processplatform_core_express</artifactId>
  1141. <version>9.2</version>
  1142. </dependency>
  1143. <dependency>
  1144. <groupId>net.o2oa</groupId>
  1145. <artifactId>x_query_core_entity</artifactId>
  1146. <version>9.2</version>
  1147. </dependency>
  1148. <dependency>
  1149. <groupId>net.o2oa</groupId>
  1150. <artifactId>x_correlation_core_entity</artifactId>
  1151. <version>9.2</version>
  1152. </dependency>
  1153. <dependency>
  1154. <groupId>net.o2oa</groupId>
  1155. <artifactId>x_correlation_core_express</artifactId>
  1156. <version>9.2</version>
  1157. </dependency>
  1158. <dependency>
  1159. <groupId>net.o2oa</groupId>
  1160. <artifactId>x_query_core_express</artifactId>
  1161. <version>9.2</version>
  1162. </dependency>
  1163. <dependency>
  1164. <groupId>net.o2oa</groupId>
  1165. <artifactId>x_program_center</artifactId>
  1166. <version>9.2</version>
  1167. </dependency>
  1168. <dependency>
  1169. <groupId>net.o2oa</groupId>
  1170. <artifactId>x_program_center_core_entity</artifactId>
  1171. <version>9.2</version>
  1172. </dependency>
  1173. <dependency>
  1174. <groupId>net.lingala.zip4j</groupId>
  1175. <artifactId>zip4j</artifactId>
  1176. <version>2.3.2</version>
  1177. </dependency>
  1178. <dependency>
  1179. <groupId>com.microsoft.playwright</groupId>
  1180. <artifactId>playwright</artifactId>
  1181. <version>1.47.0</version>
  1182. </dependency>
  1183. <dependency>
  1184. <groupId>javax.cache</groupId>
  1185. <artifactId>cache-api</artifactId>
  1186. <version>1.1.1</version>
  1187. </dependency>
  1188. <dependency>
  1189. <groupId>org.jsr107.ri</groupId>
  1190. <artifactId>cache-ri-impl</artifactId>
  1191. <version>1.1.1</version>
  1192. </dependency>
  1193. <dependency>
  1194. <groupId>com.sun.mail</groupId>
  1195. <artifactId>javax.mail</artifactId>
  1196. <version>1.6.2</version>
  1197. </dependency>
  1198. <dependency>
  1199. <groupId>io.swagger.core.v3</groupId>
  1200. <artifactId>swagger-annotations</artifactId>
  1201. <version>2.2.25</version>
  1202. </dependency>
  1203. <dependency>
  1204. <groupId>io.swagger.core.v3</groupId>
  1205. <artifactId>swagger-core</artifactId>
  1206. <version>2.2.25</version>
  1207. </dependency>
  1208. <dependency>
  1209. <groupId>io.swagger.core.v3</groupId>
  1210. <artifactId>swagger-jaxrs2</artifactId>
  1211. <version>2.2.25</version>
  1212. </dependency>
  1213. <dependency>
  1214. <groupId>org.eclipse.jgit</groupId>
  1215. <artifactId>org.eclipse.jgit</artifactId>
  1216. <version>6.2.0.202206071550-r</version>
  1217. </dependency>
  1218. <dependency>
  1219. <groupId>org.ldaptive</groupId>
  1220. <artifactId>ldaptive-jldap</artifactId>
  1221. <version>1.3.1</version>
  1222. </dependency>
  1223. <dependency>
  1224. <groupId>org.jsoup</groupId>
  1225. <artifactId>jsoup</artifactId>
  1226. <version>1.15.3</version>
  1227. </dependency>
  1228. <dependency>
  1229. <groupId>com.github.jsqlparser</groupId>
  1230. <artifactId>jsqlparser</artifactId>
  1231. <version>4.6</version>
  1232. </dependency>
  1233. <!-- tika needs -->
  1234. <dependency>
  1235. <groupId>com.zaxxer</groupId>
  1236. <artifactId>SparseBitSet</artifactId>
  1237. <version>1.2</version>
  1238. </dependency>
  1239. <dependency>
  1240. <groupId>org.junit.jupiter</groupId>
  1241. <artifactId>junit-jupiter-api</artifactId>
  1242. <version>5.10.0</version>
  1243. </dependency>
  1244. <dependency>
  1245. <groupId>org.junit.jupiter</groupId>
  1246. <artifactId>junit-jupiter-engine</artifactId>
  1247. <version>5.10.0</version>
  1248. </dependency>
  1249. <dependency>
  1250. <groupId>org.graalvm.sdk</groupId>
  1251. <artifactId>graal-sdk</artifactId>
  1252. <version>${graalvm.version}</version>
  1253. </dependency>
  1254. <dependency>
  1255. <groupId>org.graalvm.js</groupId>
  1256. <artifactId>js</artifactId>
  1257. <version>${graalvm.version}</version>
  1258. </dependency>
  1259. <dependency>
  1260. <groupId>org.graalvm.js</groupId>
  1261. <artifactId>js-scriptengine</artifactId>
  1262. <version>${graalvm.version}</version>
  1263. </dependency>
  1264. <dependency>
  1265. <groupId>org.graalvm.tools</groupId>
  1266. <artifactId>profiler</artifactId>
  1267. <version>${graalvm.version}</version>
  1268. </dependency>
  1269. <dependency>
  1270. <groupId>org.graalvm.tools</groupId>
  1271. <artifactId>chromeinspector</artifactId>
  1272. <version>${graalvm.version}</version>
  1273. </dependency>
  1274. <dependency>
  1275. <groupId>com.google.guava</groupId>
  1276. <artifactId>guava</artifactId>
  1277. <version>33.3.1-jre</version>
  1278. </dependency>
  1279. </dependencies>
  1280. </dependencyManagement>
  1281. <!-- 中心仓库发布地址-->
  1282. <!--distributionManagement>
  1283. <snapshotRepository>
  1284. <id>ossrh</id>
  1285. <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
  1286. </snapshotRepository>
  1287. <repository>
  1288. <id>ossrh</id>
  1289. <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  1290. </repository>
  1291. </distributionManagement-->
  1292. <!--repositories>
  1293. <repository>
  1294. <id>nexus-o2oa</id>
  1295. <name>nexus-o2oa</name>
  1296. <url>http://maven.o2oa.net/repository/maven-public/</url>
  1297. <releases>
  1298. <enabled>true</enabled>
  1299. </releases>
  1300. <snapshots>
  1301. <enabled>true</enabled>
  1302. </snapshots>
  1303. </repository>
  1304. </repositories-->
  1305. <distributionManagement>
  1306. <repository>
  1307. <id>o2oa-release</id>
  1308. <url>https://maven.o2oa.net/repository/o2oa-release/</url>
  1309. </repository>
  1310. </distributionManagement>
  1311. </project>