data-protocol-http-biz.iml 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
  3. <component name="FacetManager">
  4. <facet type="Spring" name="Spring">
  5. <configuration />
  6. </facet>
  7. <facet type="web" name="Web">
  8. <configuration>
  9. <webroots />
  10. </configuration>
  11. </facet>
  12. </component>
  13. <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8">
  14. <output url="file://$MODULE_DIR$/target/classes" />
  15. <output-test url="file://$MODULE_DIR$/target/test-classes" />
  16. <content url="file://$MODULE_DIR$">
  17. <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
  18. <sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
  19. <excludeFolder url="file://$MODULE_DIR$/target" />
  20. </content>
  21. <orderEntry type="inheritedJdk" />
  22. <orderEntry type="sourceFolder" forTests="false" />
  23. <orderEntry type="module-library">
  24. <library>
  25. <CLASSES>
  26. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot-starter-amqp/2.6.6/spring-boot-starter-amqp-2.6.6.jar!/" />
  27. </CLASSES>
  28. <JAVADOC />
  29. <SOURCES />
  30. </library>
  31. </orderEntry>
  32. <orderEntry type="module-library">
  33. <library>
  34. <CLASSES>
  35. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot-starter/2.6.6/spring-boot-starter-2.6.6.jar!/" />
  36. </CLASSES>
  37. <JAVADOC />
  38. <SOURCES />
  39. </library>
  40. </orderEntry>
  41. <orderEntry type="module-library">
  42. <library>
  43. <CLASSES>
  44. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot/2.6.6/spring-boot-2.6.6.jar!/" />
  45. </CLASSES>
  46. <JAVADOC />
  47. <SOURCES />
  48. </library>
  49. </orderEntry>
  50. <orderEntry type="module-library">
  51. <library>
  52. <CLASSES>
  53. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/spring-core/5.3.18/spring-core-5.3.18.jar!/" />
  54. </CLASSES>
  55. <JAVADOC />
  56. <SOURCES />
  57. </library>
  58. </orderEntry>
  59. <orderEntry type="module-library">
  60. <library>
  61. <CLASSES>
  62. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/spring-jcl/5.3.18/spring-jcl-5.3.18.jar!/" />
  63. </CLASSES>
  64. <JAVADOC />
  65. <SOURCES />
  66. </library>
  67. </orderEntry>
  68. <orderEntry type="module-library">
  69. <library>
  70. <CLASSES>
  71. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/spring-context/5.3.18/spring-context-5.3.18.jar!/" />
  72. </CLASSES>
  73. <JAVADOC />
  74. <SOURCES />
  75. </library>
  76. </orderEntry>
  77. <orderEntry type="module-library">
  78. <library>
  79. <CLASSES>
  80. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/spring-aop/5.3.18/spring-aop-5.3.18.jar!/" />
  81. </CLASSES>
  82. <JAVADOC />
  83. <SOURCES />
  84. </library>
  85. </orderEntry>
  86. <orderEntry type="module-library">
  87. <library>
  88. <CLASSES>
  89. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/spring-beans/5.3.18/spring-beans-5.3.18.jar!/" />
  90. </CLASSES>
  91. <JAVADOC />
  92. <SOURCES />
  93. </library>
  94. </orderEntry>
  95. <orderEntry type="module-library">
  96. <library>
  97. <CLASSES>
  98. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/spring-expression/5.3.18/spring-expression-5.3.18.jar!/" />
  99. </CLASSES>
  100. <JAVADOC />
  101. <SOURCES />
  102. </library>
  103. </orderEntry>
  104. <orderEntry type="module-library">
  105. <library>
  106. <CLASSES>
  107. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot-autoconfigure/2.6.6/spring-boot-autoconfigure-2.6.6.jar!/" />
  108. </CLASSES>
  109. <JAVADOC />
  110. <SOURCES />
  111. </library>
  112. </orderEntry>
  113. <orderEntry type="module-library">
  114. <library>
  115. <CLASSES>
  116. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot-starter-logging/2.6.6/spring-boot-starter-logging-2.6.6.jar!/" />
  117. </CLASSES>
  118. <JAVADOC />
  119. <SOURCES />
  120. </library>
  121. </orderEntry>
  122. <orderEntry type="module-library">
  123. <library>
  124. <CLASSES>
  125. <root url="jar://$MAVEN_REPOSITORY$/ch/qos/logback/logback-classic/1.2.11/logback-classic-1.2.11.jar!/" />
  126. </CLASSES>
  127. <JAVADOC />
  128. <SOURCES />
  129. </library>
  130. </orderEntry>
  131. <orderEntry type="module-library">
  132. <library>
  133. <CLASSES>
  134. <root url="jar://$MAVEN_REPOSITORY$/ch/qos/logback/logback-core/1.2.11/logback-core-1.2.11.jar!/" />
  135. </CLASSES>
  136. <JAVADOC />
  137. <SOURCES />
  138. </library>
  139. </orderEntry>
  140. <orderEntry type="module-library">
  141. <library>
  142. <CLASSES>
  143. <root url="jar://$MAVEN_REPOSITORY$/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar!/" />
  144. </CLASSES>
  145. <JAVADOC />
  146. <SOURCES />
  147. </library>
  148. </orderEntry>
  149. <orderEntry type="module-library">
  150. <library>
  151. <CLASSES>
  152. <root url="jar://$MAVEN_REPOSITORY$/org/apache/logging/log4j/log4j-to-slf4j/2.17.2/log4j-to-slf4j-2.17.2.jar!/" />
  153. </CLASSES>
  154. <JAVADOC />
  155. <SOURCES />
  156. </library>
  157. </orderEntry>
  158. <orderEntry type="module-library">
  159. <library>
  160. <CLASSES>
  161. <root url="jar://$MAVEN_REPOSITORY$/org/apache/logging/log4j/log4j-api/2.17.2/log4j-api-2.17.2.jar!/" />
  162. </CLASSES>
  163. <JAVADOC />
  164. <SOURCES />
  165. </library>
  166. </orderEntry>
  167. <orderEntry type="module-library">
  168. <library>
  169. <CLASSES>
  170. <root url="jar://$MAVEN_REPOSITORY$/org/slf4j/jul-to-slf4j/1.7.36/jul-to-slf4j-1.7.36.jar!/" />
  171. </CLASSES>
  172. <JAVADOC />
  173. <SOURCES />
  174. </library>
  175. </orderEntry>
  176. <orderEntry type="module-library">
  177. <library>
  178. <CLASSES>
  179. <root url="jar://$MAVEN_REPOSITORY$/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar!/" />
  180. </CLASSES>
  181. <JAVADOC />
  182. <SOURCES />
  183. </library>
  184. </orderEntry>
  185. <orderEntry type="module-library">
  186. <library>
  187. <CLASSES>
  188. <root url="jar://$MAVEN_REPOSITORY$/org/yaml/snakeyaml/1.29/snakeyaml-1.29.jar!/" />
  189. </CLASSES>
  190. <JAVADOC />
  191. <SOURCES />
  192. </library>
  193. </orderEntry>
  194. <orderEntry type="module-library">
  195. <library>
  196. <CLASSES>
  197. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/spring-messaging/5.3.18/spring-messaging-5.3.18.jar!/" />
  198. </CLASSES>
  199. <JAVADOC />
  200. <SOURCES />
  201. </library>
  202. </orderEntry>
  203. <orderEntry type="module-library">
  204. <library>
  205. <CLASSES>
  206. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/amqp/spring-rabbit/2.4.3/spring-rabbit-2.4.3.jar!/" />
  207. </CLASSES>
  208. <JAVADOC />
  209. <SOURCES />
  210. </library>
  211. </orderEntry>
  212. <orderEntry type="module-library">
  213. <library>
  214. <CLASSES>
  215. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/amqp/spring-amqp/2.4.3/spring-amqp-2.4.3.jar!/" />
  216. </CLASSES>
  217. <JAVADOC />
  218. <SOURCES />
  219. </library>
  220. </orderEntry>
  221. <orderEntry type="module-library">
  222. <library>
  223. <CLASSES>
  224. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/retry/spring-retry/1.3.1/spring-retry-1.3.1.jar!/" />
  225. </CLASSES>
  226. <JAVADOC />
  227. <SOURCES />
  228. </library>
  229. </orderEntry>
  230. <orderEntry type="module-library">
  231. <library>
  232. <CLASSES>
  233. <root url="jar://$MAVEN_REPOSITORY$/com/rabbitmq/amqp-client/5.13.1/amqp-client-5.13.1.jar!/" />
  234. </CLASSES>
  235. <JAVADOC />
  236. <SOURCES />
  237. </library>
  238. </orderEntry>
  239. <orderEntry type="module-library">
  240. <library>
  241. <CLASSES>
  242. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/spring-tx/5.3.18/spring-tx-5.3.18.jar!/" />
  243. </CLASSES>
  244. <JAVADOC />
  245. <SOURCES />
  246. </library>
  247. </orderEntry>
  248. <orderEntry type="module-library">
  249. <library>
  250. <CLASSES>
  251. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot-starter-test/2.6.6/spring-boot-starter-test-2.6.6.jar!/" />
  252. </CLASSES>
  253. <JAVADOC />
  254. <SOURCES />
  255. </library>
  256. </orderEntry>
  257. <orderEntry type="module-library">
  258. <library>
  259. <CLASSES>
  260. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot-test/2.6.6/spring-boot-test-2.6.6.jar!/" />
  261. </CLASSES>
  262. <JAVADOC />
  263. <SOURCES />
  264. </library>
  265. </orderEntry>
  266. <orderEntry type="module-library">
  267. <library>
  268. <CLASSES>
  269. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot-test-autoconfigure/2.6.6/spring-boot-test-autoconfigure-2.6.6.jar!/" />
  270. </CLASSES>
  271. <JAVADOC />
  272. <SOURCES />
  273. </library>
  274. </orderEntry>
  275. <orderEntry type="module-library">
  276. <library>
  277. <CLASSES>
  278. <root url="jar://$MAVEN_REPOSITORY$/com/jayway/jsonpath/json-path/2.6.0/json-path-2.6.0.jar!/" />
  279. </CLASSES>
  280. <JAVADOC />
  281. <SOURCES />
  282. </library>
  283. </orderEntry>
  284. <orderEntry type="module-library">
  285. <library>
  286. <CLASSES>
  287. <root url="jar://$MAVEN_REPOSITORY$/net/minidev/json-smart/2.4.8/json-smart-2.4.8.jar!/" />
  288. </CLASSES>
  289. <JAVADOC />
  290. <SOURCES />
  291. </library>
  292. </orderEntry>
  293. <orderEntry type="module-library">
  294. <library>
  295. <CLASSES>
  296. <root url="jar://$MAVEN_REPOSITORY$/net/minidev/accessors-smart/2.4.8/accessors-smart-2.4.8.jar!/" />
  297. </CLASSES>
  298. <JAVADOC />
  299. <SOURCES />
  300. </library>
  301. </orderEntry>
  302. <orderEntry type="module-library">
  303. <library>
  304. <CLASSES>
  305. <root url="jar://$MAVEN_REPOSITORY$/org/ow2/asm/asm/9.1/asm-9.1.jar!/" />
  306. </CLASSES>
  307. <JAVADOC />
  308. <SOURCES />
  309. </library>
  310. </orderEntry>
  311. <orderEntry type="module-library">
  312. <library>
  313. <CLASSES>
  314. <root url="jar://$MAVEN_REPOSITORY$/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar!/" />
  315. </CLASSES>
  316. <JAVADOC />
  317. <SOURCES />
  318. </library>
  319. </orderEntry>
  320. <orderEntry type="module-library">
  321. <library>
  322. <CLASSES>
  323. <root url="jar://$MAVEN_REPOSITORY$/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar!/" />
  324. </CLASSES>
  325. <JAVADOC />
  326. <SOURCES />
  327. </library>
  328. </orderEntry>
  329. <orderEntry type="module-library">
  330. <library>
  331. <CLASSES>
  332. <root url="jar://$MAVEN_REPOSITORY$/org/assertj/assertj-core/3.21.0/assertj-core-3.21.0.jar!/" />
  333. </CLASSES>
  334. <JAVADOC />
  335. <SOURCES />
  336. </library>
  337. </orderEntry>
  338. <orderEntry type="module-library">
  339. <library>
  340. <CLASSES>
  341. <root url="jar://$MAVEN_REPOSITORY$/org/hamcrest/hamcrest/2.2/hamcrest-2.2.jar!/" />
  342. </CLASSES>
  343. <JAVADOC />
  344. <SOURCES />
  345. </library>
  346. </orderEntry>
  347. <orderEntry type="module-library">
  348. <library>
  349. <CLASSES>
  350. <root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter/5.8.2/junit-jupiter-5.8.2.jar!/" />
  351. </CLASSES>
  352. <JAVADOC />
  353. <SOURCES />
  354. </library>
  355. </orderEntry>
  356. <orderEntry type="module-library">
  357. <library>
  358. <CLASSES>
  359. <root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar!/" />
  360. </CLASSES>
  361. <JAVADOC />
  362. <SOURCES />
  363. </library>
  364. </orderEntry>
  365. <orderEntry type="module-library">
  366. <library>
  367. <CLASSES>
  368. <root url="jar://$MAVEN_REPOSITORY$/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar!/" />
  369. </CLASSES>
  370. <JAVADOC />
  371. <SOURCES />
  372. </library>
  373. </orderEntry>
  374. <orderEntry type="module-library">
  375. <library>
  376. <CLASSES>
  377. <root url="jar://$MAVEN_REPOSITORY$/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar!/" />
  378. </CLASSES>
  379. <JAVADOC />
  380. <SOURCES />
  381. </library>
  382. </orderEntry>
  383. <orderEntry type="module-library">
  384. <library>
  385. <CLASSES>
  386. <root url="jar://$MAVEN_REPOSITORY$/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar!/" />
  387. </CLASSES>
  388. <JAVADOC />
  389. <SOURCES />
  390. </library>
  391. </orderEntry>
  392. <orderEntry type="module-library">
  393. <library>
  394. <CLASSES>
  395. <root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-params/5.8.2/junit-jupiter-params-5.8.2.jar!/" />
  396. </CLASSES>
  397. <JAVADOC />
  398. <SOURCES />
  399. </library>
  400. </orderEntry>
  401. <orderEntry type="module-library">
  402. <library>
  403. <CLASSES>
  404. <root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-engine/5.8.2/junit-jupiter-engine-5.8.2.jar!/" />
  405. </CLASSES>
  406. <JAVADOC />
  407. <SOURCES />
  408. </library>
  409. </orderEntry>
  410. <orderEntry type="module-library">
  411. <library>
  412. <CLASSES>
  413. <root url="jar://$MAVEN_REPOSITORY$/org/junit/platform/junit-platform-engine/1.8.2/junit-platform-engine-1.8.2.jar!/" />
  414. </CLASSES>
  415. <JAVADOC />
  416. <SOURCES />
  417. </library>
  418. </orderEntry>
  419. <orderEntry type="module-library">
  420. <library>
  421. <CLASSES>
  422. <root url="jar://$MAVEN_REPOSITORY$/org/mockito/mockito-core/4.0.0/mockito-core-4.0.0.jar!/" />
  423. </CLASSES>
  424. <JAVADOC />
  425. <SOURCES />
  426. </library>
  427. </orderEntry>
  428. <orderEntry type="module-library">
  429. <library>
  430. <CLASSES>
  431. <root url="jar://$MAVEN_REPOSITORY$/net/bytebuddy/byte-buddy/1.11.22/byte-buddy-1.11.22.jar!/" />
  432. </CLASSES>
  433. <JAVADOC />
  434. <SOURCES />
  435. </library>
  436. </orderEntry>
  437. <orderEntry type="module-library">
  438. <library>
  439. <CLASSES>
  440. <root url="jar://$MAVEN_REPOSITORY$/net/bytebuddy/byte-buddy-agent/1.11.22/byte-buddy-agent-1.11.22.jar!/" />
  441. </CLASSES>
  442. <JAVADOC />
  443. <SOURCES />
  444. </library>
  445. </orderEntry>
  446. <orderEntry type="module-library">
  447. <library>
  448. <CLASSES>
  449. <root url="jar://$MAVEN_REPOSITORY$/org/objenesis/objenesis/3.2/objenesis-3.2.jar!/" />
  450. </CLASSES>
  451. <JAVADOC />
  452. <SOURCES />
  453. </library>
  454. </orderEntry>
  455. <orderEntry type="module-library">
  456. <library>
  457. <CLASSES>
  458. <root url="jar://$MAVEN_REPOSITORY$/org/mockito/mockito-junit-jupiter/4.0.0/mockito-junit-jupiter-4.0.0.jar!/" />
  459. </CLASSES>
  460. <JAVADOC />
  461. <SOURCES />
  462. </library>
  463. </orderEntry>
  464. <orderEntry type="module-library">
  465. <library>
  466. <CLASSES>
  467. <root url="jar://$MAVEN_REPOSITORY$/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.jar!/" />
  468. </CLASSES>
  469. <JAVADOC />
  470. <SOURCES />
  471. </library>
  472. </orderEntry>
  473. <orderEntry type="module-library">
  474. <library>
  475. <CLASSES>
  476. <root url="jar://$MAVEN_REPOSITORY$/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar!/" />
  477. </CLASSES>
  478. <JAVADOC />
  479. <SOURCES />
  480. </library>
  481. </orderEntry>
  482. <orderEntry type="module-library">
  483. <library>
  484. <CLASSES>
  485. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/spring-test/5.3.18/spring-test-5.3.18.jar!/" />
  486. </CLASSES>
  487. <JAVADOC />
  488. <SOURCES />
  489. </library>
  490. </orderEntry>
  491. <orderEntry type="module-library">
  492. <library>
  493. <CLASSES>
  494. <root url="jar://$MAVEN_REPOSITORY$/org/xmlunit/xmlunit-core/2.8.4/xmlunit-core-2.8.4.jar!/" />
  495. </CLASSES>
  496. <JAVADOC />
  497. <SOURCES />
  498. </library>
  499. </orderEntry>
  500. <orderEntry type="module-library">
  501. <library>
  502. <CLASSES>
  503. <root url="jar://$MAVEN_REPOSITORY$/com/usky/common-cloud-starter/0.0.1/common-cloud-starter-0.0.1.jar!/" />
  504. </CLASSES>
  505. <JAVADOC />
  506. <SOURCES />
  507. </library>
  508. </orderEntry>
  509. <orderEntry type="module-library">
  510. <library>
  511. <CLASSES>
  512. <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/cloud/spring-cloud-starter-alibaba-nacos-discovery/2021.1/spring-cloud-starter-alibaba-nacos-discovery-2021.1.jar!/" />
  513. </CLASSES>
  514. <JAVADOC />
  515. <SOURCES />
  516. </library>
  517. </orderEntry>
  518. <orderEntry type="module-library">
  519. <library>
  520. <CLASSES>
  521. <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/cloud/spring-cloud-alibaba-commons/2021.1/spring-cloud-alibaba-commons-2021.1.jar!/" />
  522. </CLASSES>
  523. <JAVADOC />
  524. <SOURCES />
  525. </library>
  526. </orderEntry>
  527. <orderEntry type="module-library">
  528. <library>
  529. <CLASSES>
  530. <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/nacos/nacos-client/2.0.4/nacos-client-2.0.4.jar!/" />
  531. </CLASSES>
  532. <JAVADOC />
  533. <SOURCES />
  534. </library>
  535. </orderEntry>
  536. <orderEntry type="module-library">
  537. <library>
  538. <CLASSES>
  539. <root url="jar://$MAVEN_REPOSITORY$/commons-codec/commons-codec/1.15/commons-codec-1.15.jar!/" />
  540. </CLASSES>
  541. <JAVADOC />
  542. <SOURCES />
  543. </library>
  544. </orderEntry>
  545. <orderEntry type="module-library">
  546. <library>
  547. <CLASSES>
  548. <root url="jar://$MAVEN_REPOSITORY$/com/fasterxml/jackson/core/jackson-core/2.13.2/jackson-core-2.13.2.jar!/" />
  549. </CLASSES>
  550. <JAVADOC />
  551. <SOURCES />
  552. </library>
  553. </orderEntry>
  554. <orderEntry type="module-library">
  555. <library>
  556. <CLASSES>
  557. <root url="jar://$MAVEN_REPOSITORY$/com/fasterxml/jackson/core/jackson-databind/2.13.2.2/jackson-databind-2.13.2.2.jar!/" />
  558. </CLASSES>
  559. <JAVADOC />
  560. <SOURCES />
  561. </library>
  562. </orderEntry>
  563. <orderEntry type="module-library">
  564. <library>
  565. <CLASSES>
  566. <root url="jar://$MAVEN_REPOSITORY$/com/fasterxml/jackson/core/jackson-annotations/2.13.2/jackson-annotations-2.13.2.jar!/" />
  567. </CLASSES>
  568. <JAVADOC />
  569. <SOURCES />
  570. </library>
  571. </orderEntry>
  572. <orderEntry type="module-library">
  573. <library>
  574. <CLASSES>
  575. <root url="jar://$MAVEN_REPOSITORY$/org/apache/httpcomponents/httpasyncclient/4.1.5/httpasyncclient-4.1.5.jar!/" />
  576. </CLASSES>
  577. <JAVADOC />
  578. <SOURCES />
  579. </library>
  580. </orderEntry>
  581. <orderEntry type="module-library">
  582. <library>
  583. <CLASSES>
  584. <root url="jar://$MAVEN_REPOSITORY$/org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.jar!/" />
  585. </CLASSES>
  586. <JAVADOC />
  587. <SOURCES />
  588. </library>
  589. </orderEntry>
  590. <orderEntry type="module-library">
  591. <library>
  592. <CLASSES>
  593. <root url="jar://$MAVEN_REPOSITORY$/org/apache/httpcomponents/httpcore-nio/4.4.15/httpcore-nio-4.4.15.jar!/" />
  594. </CLASSES>
  595. <JAVADOC />
  596. <SOURCES />
  597. </library>
  598. </orderEntry>
  599. <orderEntry type="module-library">
  600. <library>
  601. <CLASSES>
  602. <root url="jar://$MAVEN_REPOSITORY$/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar!/" />
  603. </CLASSES>
  604. <JAVADOC />
  605. <SOURCES />
  606. </library>
  607. </orderEntry>
  608. <orderEntry type="module-library">
  609. <library>
  610. <CLASSES>
  611. <root url="jar://$MAVEN_REPOSITORY$/commons-logging/commons-logging/1.2/commons-logging-1.2.jar!/" />
  612. </CLASSES>
  613. <JAVADOC />
  614. <SOURCES />
  615. </library>
  616. </orderEntry>
  617. <orderEntry type="module-library">
  618. <library>
  619. <CLASSES>
  620. <root url="jar://$MAVEN_REPOSITORY$/org/reflections/reflections/0.9.11/reflections-0.9.11.jar!/" />
  621. </CLASSES>
  622. <JAVADOC />
  623. <SOURCES />
  624. </library>
  625. </orderEntry>
  626. <orderEntry type="module-library">
  627. <library>
  628. <CLASSES>
  629. <root url="jar://$MAVEN_REPOSITORY$/com/google/guava/guava/29.0-jre/guava-29.0-jre.jar!/" />
  630. </CLASSES>
  631. <JAVADOC />
  632. <SOURCES />
  633. </library>
  634. </orderEntry>
  635. <orderEntry type="module-library">
  636. <library>
  637. <CLASSES>
  638. <root url="jar://$MAVEN_REPOSITORY$/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar!/" />
  639. </CLASSES>
  640. <JAVADOC />
  641. <SOURCES />
  642. </library>
  643. </orderEntry>
  644. <orderEntry type="module-library">
  645. <library>
  646. <CLASSES>
  647. <root url="jar://$MAVEN_REPOSITORY$/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar!/" />
  648. </CLASSES>
  649. <JAVADOC />
  650. <SOURCES />
  651. </library>
  652. </orderEntry>
  653. <orderEntry type="module-library">
  654. <library>
  655. <CLASSES>
  656. <root url="jar://$MAVEN_REPOSITORY$/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar!/" />
  657. </CLASSES>
  658. <JAVADOC />
  659. <SOURCES />
  660. </library>
  661. </orderEntry>
  662. <orderEntry type="module-library">
  663. <library>
  664. <CLASSES>
  665. <root url="jar://$MAVEN_REPOSITORY$/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.jar!/" />
  666. </CLASSES>
  667. <JAVADOC />
  668. <SOURCES />
  669. </library>
  670. </orderEntry>
  671. <orderEntry type="module-library">
  672. <library>
  673. <CLASSES>
  674. <root url="jar://$MAVEN_REPOSITORY$/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar!/" />
  675. </CLASSES>
  676. <JAVADOC />
  677. <SOURCES />
  678. </library>
  679. </orderEntry>
  680. <orderEntry type="module-library">
  681. <library>
  682. <CLASSES>
  683. <root url="jar://$MAVEN_REPOSITORY$/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar!/" />
  684. </CLASSES>
  685. <JAVADOC />
  686. <SOURCES />
  687. </library>
  688. </orderEntry>
  689. <orderEntry type="module-library">
  690. <library>
  691. <CLASSES>
  692. <root url="jar://$MAVEN_REPOSITORY$/org/javassist/javassist/3.21.0-GA/javassist-3.21.0-GA.jar!/" />
  693. </CLASSES>
  694. <JAVADOC />
  695. <SOURCES />
  696. </library>
  697. </orderEntry>
  698. <orderEntry type="module-library">
  699. <library>
  700. <CLASSES>
  701. <root url="jar://$MAVEN_REPOSITORY$/io/prometheus/simpleclient/0.12.0/simpleclient-0.12.0.jar!/" />
  702. </CLASSES>
  703. <JAVADOC />
  704. <SOURCES />
  705. </library>
  706. </orderEntry>
  707. <orderEntry type="module-library">
  708. <library>
  709. <CLASSES>
  710. <root url="jar://$MAVEN_REPOSITORY$/io/prometheus/simpleclient_tracer_otel/0.12.0/simpleclient_tracer_otel-0.12.0.jar!/" />
  711. </CLASSES>
  712. <JAVADOC />
  713. <SOURCES />
  714. </library>
  715. </orderEntry>
  716. <orderEntry type="module-library">
  717. <library>
  718. <CLASSES>
  719. <root url="jar://$MAVEN_REPOSITORY$/io/prometheus/simpleclient_tracer_common/0.12.0/simpleclient_tracer_common-0.12.0.jar!/" />
  720. </CLASSES>
  721. <JAVADOC />
  722. <SOURCES />
  723. </library>
  724. </orderEntry>
  725. <orderEntry type="module-library">
  726. <library>
  727. <CLASSES>
  728. <root url="jar://$MAVEN_REPOSITORY$/io/prometheus/simpleclient_tracer_otel_agent/0.12.0/simpleclient_tracer_otel_agent-0.12.0.jar!/" />
  729. </CLASSES>
  730. <JAVADOC />
  731. <SOURCES />
  732. </library>
  733. </orderEntry>
  734. <orderEntry type="module-library">
  735. <library>
  736. <CLASSES>
  737. <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/spring/spring-context-support/1.0.10/spring-context-support-1.0.10.jar!/" />
  738. </CLASSES>
  739. <JAVADOC />
  740. <SOURCES />
  741. </library>
  742. </orderEntry>
  743. <orderEntry type="module-library">
  744. <library>
  745. <CLASSES>
  746. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/cloud/spring-cloud-commons/3.1.1/spring-cloud-commons-3.1.1.jar!/" />
  747. </CLASSES>
  748. <JAVADOC />
  749. <SOURCES />
  750. </library>
  751. </orderEntry>
  752. <orderEntry type="module-library">
  753. <library>
  754. <CLASSES>
  755. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/security/spring-security-crypto/5.6.2/spring-security-crypto-5.6.2.jar!/" />
  756. </CLASSES>
  757. <JAVADOC />
  758. <SOURCES />
  759. </library>
  760. </orderEntry>
  761. <orderEntry type="module-library">
  762. <library>
  763. <CLASSES>
  764. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/cloud/spring-cloud-context/3.1.1/spring-cloud-context-3.1.1.jar!/" />
  765. </CLASSES>
  766. <JAVADOC />
  767. <SOURCES />
  768. </library>
  769. </orderEntry>
  770. <orderEntry type="module-library">
  771. <library>
  772. <CLASSES>
  773. <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/cloud/spring-cloud-starter-alibaba-nacos-config/2021.1/spring-cloud-starter-alibaba-nacos-config-2021.1.jar!/" />
  774. </CLASSES>
  775. <JAVADOC />
  776. <SOURCES />
  777. </library>
  778. </orderEntry>
  779. <orderEntry type="module-library">
  780. <library>
  781. <CLASSES>
  782. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot-starter-actuator/2.6.6/spring-boot-starter-actuator-2.6.6.jar!/" />
  783. </CLASSES>
  784. <JAVADOC />
  785. <SOURCES />
  786. </library>
  787. </orderEntry>
  788. <orderEntry type="module-library">
  789. <library>
  790. <CLASSES>
  791. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot-actuator-autoconfigure/2.6.6/spring-boot-actuator-autoconfigure-2.6.6.jar!/" />
  792. </CLASSES>
  793. <JAVADOC />
  794. <SOURCES />
  795. </library>
  796. </orderEntry>
  797. <orderEntry type="module-library">
  798. <library>
  799. <CLASSES>
  800. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot-actuator/2.6.6/spring-boot-actuator-2.6.6.jar!/" />
  801. </CLASSES>
  802. <JAVADOC />
  803. <SOURCES />
  804. </library>
  805. </orderEntry>
  806. <orderEntry type="module-library">
  807. <library>
  808. <CLASSES>
  809. <root url="jar://$MAVEN_REPOSITORY$/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.2/jackson-datatype-jsr310-2.13.2.jar!/" />
  810. </CLASSES>
  811. <JAVADOC />
  812. <SOURCES />
  813. </library>
  814. </orderEntry>
  815. <orderEntry type="module-library">
  816. <library>
  817. <CLASSES>
  818. <root url="jar://$MAVEN_REPOSITORY$/io/micrometer/micrometer-core/1.8.4/micrometer-core-1.8.4.jar!/" />
  819. </CLASSES>
  820. <JAVADOC />
  821. <SOURCES />
  822. </library>
  823. </orderEntry>
  824. <orderEntry type="module-library">
  825. <library>
  826. <CLASSES>
  827. <root url="jar://$MAVEN_REPOSITORY$/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.jar!/" />
  828. </CLASSES>
  829. <JAVADOC />
  830. <SOURCES />
  831. </library>
  832. </orderEntry>
  833. <orderEntry type="module-library">
  834. <library>
  835. <CLASSES>
  836. <root url="jar://$MAVEN_REPOSITORY$/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar!/" />
  837. </CLASSES>
  838. <JAVADOC />
  839. <SOURCES />
  840. </library>
  841. </orderEntry>
  842. <orderEntry type="module-library">
  843. <library>
  844. <CLASSES>
  845. <root url="jar://$MAVEN_REPOSITORY$/mysql/mysql-connector-java/8.0.28/mysql-connector-java-8.0.28.jar!/" />
  846. </CLASSES>
  847. <JAVADOC />
  848. <SOURCES />
  849. </library>
  850. </orderEntry>
  851. <orderEntry type="module-library">
  852. <library>
  853. <CLASSES>
  854. <root url="jar://$MAVEN_REPOSITORY$/com/baomidou/mybatis-plus-generator/3.4.0/mybatis-plus-generator-3.4.0.jar!/" />
  855. </CLASSES>
  856. <JAVADOC />
  857. <SOURCES />
  858. </library>
  859. </orderEntry>
  860. <orderEntry type="module-library">
  861. <library>
  862. <CLASSES>
  863. <root url="jar://$MAVEN_REPOSITORY$/com/baomidou/mybatis-plus-extension/3.4.0/mybatis-plus-extension-3.4.0.jar!/" />
  864. </CLASSES>
  865. <JAVADOC />
  866. <SOURCES />
  867. </library>
  868. </orderEntry>
  869. <orderEntry type="module-library">
  870. <library>
  871. <CLASSES>
  872. <root url="jar://$MAVEN_REPOSITORY$/com/baomidou/mybatis-plus-core/3.4.0/mybatis-plus-core-3.4.0.jar!/" />
  873. </CLASSES>
  874. <JAVADOC />
  875. <SOURCES />
  876. </library>
  877. </orderEntry>
  878. <orderEntry type="module-library">
  879. <library>
  880. <CLASSES>
  881. <root url="jar://$MAVEN_REPOSITORY$/com/baomidou/mybatis-plus-annotation/3.4.0/mybatis-plus-annotation-3.4.0.jar!/" />
  882. </CLASSES>
  883. <JAVADOC />
  884. <SOURCES />
  885. </library>
  886. </orderEntry>
  887. <orderEntry type="module-library">
  888. <library>
  889. <CLASSES>
  890. <root url="jar://$MAVEN_REPOSITORY$/com/github/jsqlparser/jsqlparser/4.2/jsqlparser-4.2.jar!/" />
  891. </CLASSES>
  892. <JAVADOC />
  893. <SOURCES />
  894. </library>
  895. </orderEntry>
  896. <orderEntry type="module-library">
  897. <library>
  898. <CLASSES>
  899. <root url="jar://$MAVEN_REPOSITORY$/org/mybatis/mybatis/3.5.9/mybatis-3.5.9.jar!/" />
  900. </CLASSES>
  901. <JAVADOC />
  902. <SOURCES />
  903. </library>
  904. </orderEntry>
  905. <orderEntry type="module-library">
  906. <library>
  907. <CLASSES>
  908. <root url="jar://$MAVEN_REPOSITORY$/org/mybatis/mybatis-spring/2.0.7/mybatis-spring-2.0.7.jar!/" />
  909. </CLASSES>
  910. <JAVADOC />
  911. <SOURCES />
  912. </library>
  913. </orderEntry>
  914. <orderEntry type="module-library">
  915. <library>
  916. <CLASSES>
  917. <root url="jar://$MAVEN_REPOSITORY$/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.jar!/" />
  918. </CLASSES>
  919. <JAVADOC />
  920. <SOURCES />
  921. </library>
  922. </orderEntry>
  923. <orderEntry type="module-library">
  924. <library>
  925. <CLASSES>
  926. <root url="jar://$MAVEN_REPOSITORY$/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar!/" />
  927. </CLASSES>
  928. <JAVADOC />
  929. <SOURCES />
  930. </library>
  931. </orderEntry>
  932. <orderEntry type="module-library">
  933. <library>
  934. <CLASSES>
  935. <root url="jar://$MAVEN_REPOSITORY$/com/usky/service-system-api/0.0.1/service-system-api-0.0.1.jar!/" />
  936. </CLASSES>
  937. <JAVADOC />
  938. <SOURCES />
  939. </library>
  940. </orderEntry>
  941. <orderEntry type="module-library">
  942. <library>
  943. <CLASSES>
  944. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/cloud/spring-cloud-starter-openfeign/3.1.1/spring-cloud-starter-openfeign-3.1.1.jar!/" />
  945. </CLASSES>
  946. <JAVADOC />
  947. <SOURCES />
  948. </library>
  949. </orderEntry>
  950. <orderEntry type="module-library">
  951. <library>
  952. <CLASSES>
  953. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/cloud/spring-cloud-starter/3.1.1/spring-cloud-starter-3.1.1.jar!/" />
  954. </CLASSES>
  955. <JAVADOC />
  956. <SOURCES />
  957. </library>
  958. </orderEntry>
  959. <orderEntry type="module-library">
  960. <library>
  961. <CLASSES>
  962. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/security/spring-security-rsa/1.0.10.RELEASE/spring-security-rsa-1.0.10.RELEASE.jar!/" />
  963. </CLASSES>
  964. <JAVADOC />
  965. <SOURCES />
  966. </library>
  967. </orderEntry>
  968. <orderEntry type="module-library">
  969. <library>
  970. <CLASSES>
  971. <root url="jar://$MAVEN_REPOSITORY$/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar!/" />
  972. </CLASSES>
  973. <JAVADOC />
  974. <SOURCES />
  975. </library>
  976. </orderEntry>
  977. <orderEntry type="module-library">
  978. <library>
  979. <CLASSES>
  980. <root url="jar://$MAVEN_REPOSITORY$/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar!/" />
  981. </CLASSES>
  982. <JAVADOC />
  983. <SOURCES />
  984. </library>
  985. </orderEntry>
  986. <orderEntry type="module-library">
  987. <library>
  988. <CLASSES>
  989. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/cloud/spring-cloud-openfeign-core/3.1.1/spring-cloud-openfeign-core-3.1.1.jar!/" />
  990. </CLASSES>
  991. <JAVADOC />
  992. <SOURCES />
  993. </library>
  994. </orderEntry>
  995. <orderEntry type="module-library">
  996. <library>
  997. <CLASSES>
  998. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot-starter-aop/2.6.6/spring-boot-starter-aop-2.6.6.jar!/" />
  999. </CLASSES>
  1000. <JAVADOC />
  1001. <SOURCES />
  1002. </library>
  1003. </orderEntry>
  1004. <orderEntry type="module-library">
  1005. <library>
  1006. <CLASSES>
  1007. <root url="jar://$MAVEN_REPOSITORY$/org/aspectj/aspectjweaver/1.9.7/aspectjweaver-1.9.7.jar!/" />
  1008. </CLASSES>
  1009. <JAVADOC />
  1010. <SOURCES />
  1011. </library>
  1012. </orderEntry>
  1013. <orderEntry type="module-library">
  1014. <library>
  1015. <CLASSES>
  1016. <root url="jar://$MAVEN_REPOSITORY$/io/github/openfeign/form/feign-form-spring/3.8.0/feign-form-spring-3.8.0.jar!/" />
  1017. </CLASSES>
  1018. <JAVADOC />
  1019. <SOURCES />
  1020. </library>
  1021. </orderEntry>
  1022. <orderEntry type="module-library">
  1023. <library>
  1024. <CLASSES>
  1025. <root url="jar://$MAVEN_REPOSITORY$/io/github/openfeign/form/feign-form/3.8.0/feign-form-3.8.0.jar!/" />
  1026. </CLASSES>
  1027. <JAVADOC />
  1028. <SOURCES />
  1029. </library>
  1030. </orderEntry>
  1031. <orderEntry type="module-library">
  1032. <library>
  1033. <CLASSES>
  1034. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/spring-web/5.3.18/spring-web-5.3.18.jar!/" />
  1035. </CLASSES>
  1036. <JAVADOC />
  1037. <SOURCES />
  1038. </library>
  1039. </orderEntry>
  1040. <orderEntry type="module-library">
  1041. <library>
  1042. <CLASSES>
  1043. <root url="jar://$MAVEN_REPOSITORY$/commons-fileupload/commons-fileupload/1.4/commons-fileupload-1.4.jar!/" />
  1044. </CLASSES>
  1045. <JAVADOC />
  1046. <SOURCES />
  1047. </library>
  1048. </orderEntry>
  1049. <orderEntry type="module-library">
  1050. <library>
  1051. <CLASSES>
  1052. <root url="jar://$MAVEN_REPOSITORY$/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar!/" />
  1053. </CLASSES>
  1054. <JAVADOC />
  1055. <SOURCES />
  1056. </library>
  1057. </orderEntry>
  1058. <orderEntry type="module-library">
  1059. <library>
  1060. <CLASSES>
  1061. <root url="jar://$MAVEN_REPOSITORY$/io/github/openfeign/feign-core/11.8/feign-core-11.8.jar!/" />
  1062. </CLASSES>
  1063. <JAVADOC />
  1064. <SOURCES />
  1065. </library>
  1066. </orderEntry>
  1067. <orderEntry type="module-library">
  1068. <library>
  1069. <CLASSES>
  1070. <root url="jar://$MAVEN_REPOSITORY$/io/github/openfeign/feign-slf4j/11.8/feign-slf4j-11.8.jar!/" />
  1071. </CLASSES>
  1072. <JAVADOC />
  1073. <SOURCES />
  1074. </library>
  1075. </orderEntry>
  1076. <orderEntry type="module-library">
  1077. <library>
  1078. <CLASSES>
  1079. <root url="jar://$MAVEN_REPOSITORY$/com/usky/usky-common-core/0.0.1/usky-common-core-0.0.1.jar!/" />
  1080. </CLASSES>
  1081. <JAVADOC />
  1082. <SOURCES />
  1083. </library>
  1084. </orderEntry>
  1085. <orderEntry type="module-library">
  1086. <library>
  1087. <CLASSES>
  1088. <root url="jar://$MAVEN_REPOSITORY$/ma/glasnost/orika/orika-core/1.5.4/orika-core-1.5.4.jar!/" />
  1089. </CLASSES>
  1090. <JAVADOC />
  1091. <SOURCES />
  1092. </library>
  1093. </orderEntry>
  1094. <orderEntry type="module-library">
  1095. <library>
  1096. <CLASSES>
  1097. <root url="jar://$MAVEN_REPOSITORY$/com/thoughtworks/paranamer/paranamer/2.8/paranamer-2.8.jar!/" />
  1098. </CLASSES>
  1099. <JAVADOC />
  1100. <SOURCES />
  1101. </library>
  1102. </orderEntry>
  1103. <orderEntry type="module-library">
  1104. <library>
  1105. <CLASSES>
  1106. <root url="jar://$MAVEN_REPOSITORY$/com/carrotsearch/java-sizeof/0.0.5/java-sizeof-0.0.5.jar!/" />
  1107. </CLASSES>
  1108. <JAVADOC />
  1109. <SOURCES />
  1110. </library>
  1111. </orderEntry>
  1112. <orderEntry type="module-library">
  1113. <library>
  1114. <CLASSES>
  1115. <root url="jar://$MAVEN_REPOSITORY$/org/codehaus/janino/janino/3.1.6/janino-3.1.6.jar!/" />
  1116. </CLASSES>
  1117. <JAVADOC />
  1118. <SOURCES />
  1119. </library>
  1120. </orderEntry>
  1121. <orderEntry type="module-library">
  1122. <library>
  1123. <CLASSES>
  1124. <root url="jar://$MAVEN_REPOSITORY$/org/codehaus/janino/commons-compiler/3.1.6/commons-compiler-3.1.6.jar!/" />
  1125. </CLASSES>
  1126. <JAVADOC />
  1127. <SOURCES />
  1128. </library>
  1129. </orderEntry>
  1130. <orderEntry type="module-library">
  1131. <library>
  1132. <CLASSES>
  1133. <root url="jar://$MAVEN_REPOSITORY$/com/squareup/okhttp3/okhttp/3.14.9/okhttp-3.14.9.jar!/" />
  1134. </CLASSES>
  1135. <JAVADOC />
  1136. <SOURCES />
  1137. </library>
  1138. </orderEntry>
  1139. <orderEntry type="module-library">
  1140. <library>
  1141. <CLASSES>
  1142. <root url="jar://$MAVEN_REPOSITORY$/com/squareup/okio/okio/1.17.2/okio-1.17.2.jar!/" />
  1143. </CLASSES>
  1144. <JAVADOC />
  1145. <SOURCES />
  1146. </library>
  1147. </orderEntry>
  1148. <orderEntry type="module-library">
  1149. <library>
  1150. <CLASSES>
  1151. <root url="jar://$MAVEN_REPOSITORY$/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar!/" />
  1152. </CLASSES>
  1153. <JAVADOC />
  1154. <SOURCES />
  1155. </library>
  1156. </orderEntry>
  1157. <orderEntry type="module-library">
  1158. <library>
  1159. <CLASSES>
  1160. <root url="jar://$MAVEN_REPOSITORY$/io/swagger/swagger-annotations/1.6.2/swagger-annotations-1.6.2.jar!/" />
  1161. </CLASSES>
  1162. <JAVADOC />
  1163. <SOURCES />
  1164. </library>
  1165. </orderEntry>
  1166. <orderEntry type="module-library">
  1167. <library>
  1168. <CLASSES>
  1169. <root url="jar://$MAVEN_REPOSITORY$/javax/servlet/javax.servlet-api/4.0.1/javax.servlet-api-4.0.1.jar!/" />
  1170. </CLASSES>
  1171. <JAVADOC />
  1172. <SOURCES />
  1173. </library>
  1174. </orderEntry>
  1175. <orderEntry type="module-library">
  1176. <library>
  1177. <CLASSES>
  1178. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/cloud/spring-cloud-starter-loadbalancer/3.1.1/spring-cloud-starter-loadbalancer-3.1.1.jar!/" />
  1179. </CLASSES>
  1180. <JAVADOC />
  1181. <SOURCES />
  1182. </library>
  1183. </orderEntry>
  1184. <orderEntry type="module-library">
  1185. <library>
  1186. <CLASSES>
  1187. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/cloud/spring-cloud-loadbalancer/3.1.1/spring-cloud-loadbalancer-3.1.1.jar!/" />
  1188. </CLASSES>
  1189. <JAVADOC />
  1190. <SOURCES />
  1191. </library>
  1192. </orderEntry>
  1193. <orderEntry type="module-library">
  1194. <library>
  1195. <CLASSES>
  1196. <root url="jar://$MAVEN_REPOSITORY$/io/projectreactor/reactor-core/3.4.16/reactor-core-3.4.16.jar!/" />
  1197. </CLASSES>
  1198. <JAVADOC />
  1199. <SOURCES />
  1200. </library>
  1201. </orderEntry>
  1202. <orderEntry type="module-library">
  1203. <library>
  1204. <CLASSES>
  1205. <root url="jar://$MAVEN_REPOSITORY$/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar!/" />
  1206. </CLASSES>
  1207. <JAVADOC />
  1208. <SOURCES />
  1209. </library>
  1210. </orderEntry>
  1211. <orderEntry type="module-library">
  1212. <library>
  1213. <CLASSES>
  1214. <root url="jar://$MAVEN_REPOSITORY$/io/projectreactor/addons/reactor-extra/3.4.7/reactor-extra-3.4.7.jar!/" />
  1215. </CLASSES>
  1216. <JAVADOC />
  1217. <SOURCES />
  1218. </library>
  1219. </orderEntry>
  1220. <orderEntry type="module-library">
  1221. <library>
  1222. <CLASSES>
  1223. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot-starter-cache/2.6.6/spring-boot-starter-cache-2.6.6.jar!/" />
  1224. </CLASSES>
  1225. <JAVADOC />
  1226. <SOURCES />
  1227. </library>
  1228. </orderEntry>
  1229. <orderEntry type="module-library">
  1230. <library>
  1231. <CLASSES>
  1232. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/spring-context-support/5.3.18/spring-context-support-5.3.18.jar!/" />
  1233. </CLASSES>
  1234. <JAVADOC />
  1235. <SOURCES />
  1236. </library>
  1237. </orderEntry>
  1238. <orderEntry type="module-library">
  1239. <library>
  1240. <CLASSES>
  1241. <root url="jar://$MAVEN_REPOSITORY$/com/stoyanr/evictor/1.0.0/evictor-1.0.0.jar!/" />
  1242. </CLASSES>
  1243. <JAVADOC />
  1244. <SOURCES />
  1245. </library>
  1246. </orderEntry>
  1247. <orderEntry type="module-library">
  1248. <library>
  1249. <CLASSES>
  1250. <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/fastjson/1.2.28/fastjson-1.2.28.jar!/" />
  1251. </CLASSES>
  1252. <JAVADOC />
  1253. <SOURCES />
  1254. </library>
  1255. </orderEntry>
  1256. <orderEntry type="module-library">
  1257. <library>
  1258. <CLASSES>
  1259. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot-starter-web/2.6.6/spring-boot-starter-web-2.6.6.jar!/" />
  1260. </CLASSES>
  1261. <JAVADOC />
  1262. <SOURCES />
  1263. </library>
  1264. </orderEntry>
  1265. <orderEntry type="module-library">
  1266. <library>
  1267. <CLASSES>
  1268. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot-starter-json/2.6.6/spring-boot-starter-json-2.6.6.jar!/" />
  1269. </CLASSES>
  1270. <JAVADOC />
  1271. <SOURCES />
  1272. </library>
  1273. </orderEntry>
  1274. <orderEntry type="module-library">
  1275. <library>
  1276. <CLASSES>
  1277. <root url="jar://$MAVEN_REPOSITORY$/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.13.2/jackson-datatype-jdk8-2.13.2.jar!/" />
  1278. </CLASSES>
  1279. <JAVADOC />
  1280. <SOURCES />
  1281. </library>
  1282. </orderEntry>
  1283. <orderEntry type="module-library">
  1284. <library>
  1285. <CLASSES>
  1286. <root url="jar://$MAVEN_REPOSITORY$/com/fasterxml/jackson/module/jackson-module-parameter-names/2.13.2/jackson-module-parameter-names-2.13.2.jar!/" />
  1287. </CLASSES>
  1288. <JAVADOC />
  1289. <SOURCES />
  1290. </library>
  1291. </orderEntry>
  1292. <orderEntry type="module-library">
  1293. <library>
  1294. <CLASSES>
  1295. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot-starter-tomcat/2.6.6/spring-boot-starter-tomcat-2.6.6.jar!/" />
  1296. </CLASSES>
  1297. <JAVADOC />
  1298. <SOURCES />
  1299. </library>
  1300. </orderEntry>
  1301. <orderEntry type="module-library">
  1302. <library>
  1303. <CLASSES>
  1304. <root url="jar://$MAVEN_REPOSITORY$/org/apache/tomcat/embed/tomcat-embed-core/9.0.60/tomcat-embed-core-9.0.60.jar!/" />
  1305. </CLASSES>
  1306. <JAVADOC />
  1307. <SOURCES />
  1308. </library>
  1309. </orderEntry>
  1310. <orderEntry type="module-library">
  1311. <library>
  1312. <CLASSES>
  1313. <root url="jar://$MAVEN_REPOSITORY$/org/apache/tomcat/embed/tomcat-embed-el/9.0.60/tomcat-embed-el-9.0.60.jar!/" />
  1314. </CLASSES>
  1315. <JAVADOC />
  1316. <SOURCES />
  1317. </library>
  1318. </orderEntry>
  1319. <orderEntry type="module-library">
  1320. <library>
  1321. <CLASSES>
  1322. <root url="jar://$MAVEN_REPOSITORY$/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.60/tomcat-embed-websocket-9.0.60.jar!/" />
  1323. </CLASSES>
  1324. <JAVADOC />
  1325. <SOURCES />
  1326. </library>
  1327. </orderEntry>
  1328. <orderEntry type="module-library">
  1329. <library>
  1330. <CLASSES>
  1331. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/spring-webmvc/5.3.18/spring-webmvc-5.3.18.jar!/" />
  1332. </CLASSES>
  1333. <JAVADOC />
  1334. <SOURCES />
  1335. </library>
  1336. </orderEntry>
  1337. <orderEntry type="module-library">
  1338. <library>
  1339. <CLASSES>
  1340. <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/transmittable-thread-local/2.12.2/transmittable-thread-local-2.12.2.jar!/" />
  1341. </CLASSES>
  1342. <JAVADOC />
  1343. <SOURCES />
  1344. </library>
  1345. </orderEntry>
  1346. <orderEntry type="module-library">
  1347. <library>
  1348. <CLASSES>
  1349. <root url="jar://$MAVEN_REPOSITORY$/io/jsonwebtoken/jjwt/0.9.1/jjwt-0.9.1.jar!/" />
  1350. </CLASSES>
  1351. <JAVADOC />
  1352. <SOURCES />
  1353. </library>
  1354. </orderEntry>
  1355. <orderEntry type="module-library">
  1356. <library>
  1357. <CLASSES>
  1358. <root url="jar://$MAVEN_REPOSITORY$/cn/hutool/hutool-all/5.6.1/hutool-all-5.6.1.jar!/" />
  1359. </CLASSES>
  1360. <JAVADOC />
  1361. <SOURCES />
  1362. </library>
  1363. </orderEntry>
  1364. <orderEntry type="module-library">
  1365. <library>
  1366. <CLASSES>
  1367. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/cloud/spring-cloud-starter-netflix-hystrix/2.2.10.RELEASE/spring-cloud-starter-netflix-hystrix-2.2.10.RELEASE.jar!/" />
  1368. </CLASSES>
  1369. <JAVADOC />
  1370. <SOURCES />
  1371. </library>
  1372. </orderEntry>
  1373. <orderEntry type="module-library">
  1374. <library>
  1375. <CLASSES>
  1376. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/cloud/spring-cloud-netflix-hystrix/2.2.10.RELEASE/spring-cloud-netflix-hystrix-2.2.10.RELEASE.jar!/" />
  1377. </CLASSES>
  1378. <JAVADOC />
  1379. <SOURCES />
  1380. </library>
  1381. </orderEntry>
  1382. <orderEntry type="module-library">
  1383. <library>
  1384. <CLASSES>
  1385. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/cloud/spring-cloud-netflix-ribbon/2.2.10.RELEASE/spring-cloud-netflix-ribbon-2.2.10.RELEASE.jar!/" />
  1386. </CLASSES>
  1387. <JAVADOC />
  1388. <SOURCES />
  1389. </library>
  1390. </orderEntry>
  1391. <orderEntry type="module-library">
  1392. <library>
  1393. <CLASSES>
  1394. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/cloud/spring-cloud-netflix-archaius/2.2.10.RELEASE/spring-cloud-netflix-archaius-2.2.10.RELEASE.jar!/" />
  1395. </CLASSES>
  1396. <JAVADOC />
  1397. <SOURCES />
  1398. </library>
  1399. </orderEntry>
  1400. <orderEntry type="module-library">
  1401. <library>
  1402. <CLASSES>
  1403. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/cloud/spring-cloud-starter-netflix-archaius/2.2.10.RELEASE/spring-cloud-starter-netflix-archaius-2.2.10.RELEASE.jar!/" />
  1404. </CLASSES>
  1405. <JAVADOC />
  1406. <SOURCES />
  1407. </library>
  1408. </orderEntry>
  1409. <orderEntry type="module-library">
  1410. <library>
  1411. <CLASSES>
  1412. <root url="jar://$MAVEN_REPOSITORY$/com/netflix/archaius/archaius-core/0.7.7/archaius-core-0.7.7.jar!/" />
  1413. </CLASSES>
  1414. <JAVADOC />
  1415. <SOURCES />
  1416. </library>
  1417. </orderEntry>
  1418. <orderEntry type="module-library">
  1419. <library>
  1420. <CLASSES>
  1421. <root url="jar://$MAVEN_REPOSITORY$/commons-configuration/commons-configuration/1.8/commons-configuration-1.8.jar!/" />
  1422. </CLASSES>
  1423. <JAVADOC />
  1424. <SOURCES />
  1425. </library>
  1426. </orderEntry>
  1427. <orderEntry type="module-library">
  1428. <library>
  1429. <CLASSES>
  1430. <root url="jar://$MAVEN_REPOSITORY$/commons-lang/commons-lang/2.6/commons-lang-2.6.jar!/" />
  1431. </CLASSES>
  1432. <JAVADOC />
  1433. <SOURCES />
  1434. </library>
  1435. </orderEntry>
  1436. <orderEntry type="module-library">
  1437. <library>
  1438. <CLASSES>
  1439. <root url="jar://$MAVEN_REPOSITORY$/com/netflix/hystrix/hystrix-core/1.5.18/hystrix-core-1.5.18.jar!/" />
  1440. </CLASSES>
  1441. <JAVADOC />
  1442. <SOURCES />
  1443. </library>
  1444. </orderEntry>
  1445. <orderEntry type="module-library">
  1446. <library>
  1447. <CLASSES>
  1448. <root url="jar://$MAVEN_REPOSITORY$/io/reactivex/rxjava/1.3.8/rxjava-1.3.8.jar!/" />
  1449. </CLASSES>
  1450. <JAVADOC />
  1451. <SOURCES />
  1452. </library>
  1453. </orderEntry>
  1454. <orderEntry type="module-library">
  1455. <library>
  1456. <CLASSES>
  1457. <root url="jar://$MAVEN_REPOSITORY$/com/netflix/hystrix/hystrix-serialization/1.5.18/hystrix-serialization-1.5.18.jar!/" />
  1458. </CLASSES>
  1459. <JAVADOC />
  1460. <SOURCES />
  1461. </library>
  1462. </orderEntry>
  1463. <orderEntry type="module-library">
  1464. <library>
  1465. <CLASSES>
  1466. <root url="jar://$MAVEN_REPOSITORY$/com/fasterxml/jackson/module/jackson-module-afterburner/2.13.2/jackson-module-afterburner-2.13.2.jar!/" />
  1467. </CLASSES>
  1468. <JAVADOC />
  1469. <SOURCES />
  1470. </library>
  1471. </orderEntry>
  1472. <orderEntry type="module-library">
  1473. <library>
  1474. <CLASSES>
  1475. <root url="jar://$MAVEN_REPOSITORY$/com/netflix/hystrix/hystrix-metrics-event-stream/1.5.18/hystrix-metrics-event-stream-1.5.18.jar!/" />
  1476. </CLASSES>
  1477. <JAVADOC />
  1478. <SOURCES />
  1479. </library>
  1480. </orderEntry>
  1481. <orderEntry type="module-library">
  1482. <library>
  1483. <CLASSES>
  1484. <root url="jar://$MAVEN_REPOSITORY$/com/netflix/hystrix/hystrix-javanica/1.5.18/hystrix-javanica-1.5.18.jar!/" />
  1485. </CLASSES>
  1486. <JAVADOC />
  1487. <SOURCES />
  1488. </library>
  1489. </orderEntry>
  1490. <orderEntry type="module-library">
  1491. <library>
  1492. <CLASSES>
  1493. <root url="jar://$MAVEN_REPOSITORY$/io/reactivex/rxjava-reactive-streams/1.2.1/rxjava-reactive-streams-1.2.1.jar!/" />
  1494. </CLASSES>
  1495. <JAVADOC />
  1496. <SOURCES />
  1497. </library>
  1498. </orderEntry>
  1499. <orderEntry type="module-library">
  1500. <library>
  1501. <CLASSES>
  1502. <root url="jar://$MAVEN_REPOSITORY$/org/apache/poi/poi-ooxml/4.1.2/poi-ooxml-4.1.2.jar!/" />
  1503. </CLASSES>
  1504. <JAVADOC />
  1505. <SOURCES />
  1506. </library>
  1507. </orderEntry>
  1508. <orderEntry type="module-library">
  1509. <library>
  1510. <CLASSES>
  1511. <root url="jar://$MAVEN_REPOSITORY$/org/apache/poi/poi/4.1.2/poi-4.1.2.jar!/" />
  1512. </CLASSES>
  1513. <JAVADOC />
  1514. <SOURCES />
  1515. </library>
  1516. </orderEntry>
  1517. <orderEntry type="module-library">
  1518. <library>
  1519. <CLASSES>
  1520. <root url="jar://$MAVEN_REPOSITORY$/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.jar!/" />
  1521. </CLASSES>
  1522. <JAVADOC />
  1523. <SOURCES />
  1524. </library>
  1525. </orderEntry>
  1526. <orderEntry type="module-library">
  1527. <library>
  1528. <CLASSES>
  1529. <root url="jar://$MAVEN_REPOSITORY$/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar!/" />
  1530. </CLASSES>
  1531. <JAVADOC />
  1532. <SOURCES />
  1533. </library>
  1534. </orderEntry>
  1535. <orderEntry type="module-library">
  1536. <library>
  1537. <CLASSES>
  1538. <root url="jar://$MAVEN_REPOSITORY$/com/zaxxer/SparseBitSet/1.2/SparseBitSet-1.2.jar!/" />
  1539. </CLASSES>
  1540. <JAVADOC />
  1541. <SOURCES />
  1542. </library>
  1543. </orderEntry>
  1544. <orderEntry type="module-library">
  1545. <library>
  1546. <CLASSES>
  1547. <root url="jar://$MAVEN_REPOSITORY$/org/apache/poi/poi-ooxml-schemas/4.1.2/poi-ooxml-schemas-4.1.2.jar!/" />
  1548. </CLASSES>
  1549. <JAVADOC />
  1550. <SOURCES />
  1551. </library>
  1552. </orderEntry>
  1553. <orderEntry type="module-library">
  1554. <library>
  1555. <CLASSES>
  1556. <root url="jar://$MAVEN_REPOSITORY$/org/apache/xmlbeans/xmlbeans/3.1.0/xmlbeans-3.1.0.jar!/" />
  1557. </CLASSES>
  1558. <JAVADOC />
  1559. <SOURCES />
  1560. </library>
  1561. </orderEntry>
  1562. <orderEntry type="module-library">
  1563. <library>
  1564. <CLASSES>
  1565. <root url="jar://$MAVEN_REPOSITORY$/org/apache/commons/commons-compress/1.19/commons-compress-1.19.jar!/" />
  1566. </CLASSES>
  1567. <JAVADOC />
  1568. <SOURCES />
  1569. </library>
  1570. </orderEntry>
  1571. <orderEntry type="module-library">
  1572. <library>
  1573. <CLASSES>
  1574. <root url="jar://$MAVEN_REPOSITORY$/com/github/virtuald/curvesapi/1.06/curvesapi-1.06.jar!/" />
  1575. </CLASSES>
  1576. <JAVADOC />
  1577. <SOURCES />
  1578. </library>
  1579. </orderEntry>
  1580. <orderEntry type="module-library">
  1581. <library>
  1582. <CLASSES>
  1583. <root url="jar://$MAVEN_REPOSITORY$/com/github/pagehelper/pagehelper-spring-boot-starter/1.4.1/pagehelper-spring-boot-starter-1.4.1.jar!/" />
  1584. </CLASSES>
  1585. <JAVADOC />
  1586. <SOURCES />
  1587. </library>
  1588. </orderEntry>
  1589. <orderEntry type="module-library">
  1590. <library>
  1591. <CLASSES>
  1592. <root url="jar://$MAVEN_REPOSITORY$/org/mybatis/spring/boot/mybatis-spring-boot-starter/2.2.2/mybatis-spring-boot-starter-2.2.2.jar!/" />
  1593. </CLASSES>
  1594. <JAVADOC />
  1595. <SOURCES />
  1596. </library>
  1597. </orderEntry>
  1598. <orderEntry type="module-library">
  1599. <library>
  1600. <CLASSES>
  1601. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot-starter-jdbc/2.6.6/spring-boot-starter-jdbc-2.6.6.jar!/" />
  1602. </CLASSES>
  1603. <JAVADOC />
  1604. <SOURCES />
  1605. </library>
  1606. </orderEntry>
  1607. <orderEntry type="module-library">
  1608. <library>
  1609. <CLASSES>
  1610. <root url="jar://$MAVEN_REPOSITORY$/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar!/" />
  1611. </CLASSES>
  1612. <JAVADOC />
  1613. <SOURCES />
  1614. </library>
  1615. </orderEntry>
  1616. <orderEntry type="module-library">
  1617. <library>
  1618. <CLASSES>
  1619. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/spring-jdbc/5.3.18/spring-jdbc-5.3.18.jar!/" />
  1620. </CLASSES>
  1621. <JAVADOC />
  1622. <SOURCES />
  1623. </library>
  1624. </orderEntry>
  1625. <orderEntry type="module-library">
  1626. <library>
  1627. <CLASSES>
  1628. <root url="jar://$MAVEN_REPOSITORY$/org/mybatis/spring/boot/mybatis-spring-boot-autoconfigure/2.2.2/mybatis-spring-boot-autoconfigure-2.2.2.jar!/" />
  1629. </CLASSES>
  1630. <JAVADOC />
  1631. <SOURCES />
  1632. </library>
  1633. </orderEntry>
  1634. <orderEntry type="module-library">
  1635. <library>
  1636. <CLASSES>
  1637. <root url="jar://$MAVEN_REPOSITORY$/com/github/pagehelper/pagehelper-spring-boot-autoconfigure/1.4.1/pagehelper-spring-boot-autoconfigure-1.4.1.jar!/" />
  1638. </CLASSES>
  1639. <JAVADOC />
  1640. <SOURCES />
  1641. </library>
  1642. </orderEntry>
  1643. <orderEntry type="module-library">
  1644. <library>
  1645. <CLASSES>
  1646. <root url="jar://$MAVEN_REPOSITORY$/com/github/pagehelper/pagehelper/5.3.0/pagehelper-5.3.0.jar!/" />
  1647. </CLASSES>
  1648. <JAVADOC />
  1649. <SOURCES />
  1650. </library>
  1651. </orderEntry>
  1652. <orderEntry type="module-library">
  1653. <library>
  1654. <CLASSES>
  1655. <root url="jar://$MAVEN_REPOSITORY$/org/influxdb/influxdb-java/2.22/influxdb-java-2.22.jar!/" />
  1656. </CLASSES>
  1657. <JAVADOC />
  1658. <SOURCES />
  1659. </library>
  1660. </orderEntry>
  1661. <orderEntry type="module-library">
  1662. <library>
  1663. <CLASSES>
  1664. <root url="jar://$MAVEN_REPOSITORY$/com/squareup/retrofit2/retrofit/2.9.0/retrofit-2.9.0.jar!/" />
  1665. </CLASSES>
  1666. <JAVADOC />
  1667. <SOURCES />
  1668. </library>
  1669. </orderEntry>
  1670. <orderEntry type="module-library">
  1671. <library>
  1672. <CLASSES>
  1673. <root url="jar://$MAVEN_REPOSITORY$/com/squareup/retrofit2/converter-moshi/2.9.0/converter-moshi-2.9.0.jar!/" />
  1674. </CLASSES>
  1675. <JAVADOC />
  1676. <SOURCES />
  1677. </library>
  1678. </orderEntry>
  1679. <orderEntry type="module-library">
  1680. <library>
  1681. <CLASSES>
  1682. <root url="jar://$MAVEN_REPOSITORY$/com/squareup/moshi/moshi/1.8.0/moshi-1.8.0.jar!/" />
  1683. </CLASSES>
  1684. <JAVADOC />
  1685. <SOURCES />
  1686. </library>
  1687. </orderEntry>
  1688. <orderEntry type="module-library">
  1689. <library>
  1690. <CLASSES>
  1691. <root url="jar://$MAVEN_REPOSITORY$/org/msgpack/msgpack-core/0.9.0/msgpack-core-0.9.0.jar!/" />
  1692. </CLASSES>
  1693. <JAVADOC />
  1694. <SOURCES />
  1695. </library>
  1696. </orderEntry>
  1697. <orderEntry type="module-library">
  1698. <library>
  1699. <CLASSES>
  1700. <root url="jar://$MAVEN_REPOSITORY$/com/squareup/okhttp3/logging-interceptor/3.14.9/logging-interceptor-3.14.9.jar!/" />
  1701. </CLASSES>
  1702. <JAVADOC />
  1703. <SOURCES />
  1704. </library>
  1705. </orderEntry>
  1706. <orderEntry type="module-library">
  1707. <library>
  1708. <CLASSES>
  1709. <root url="jar://$MAVEN_REPOSITORY$/org/projectlombok/lombok/1.18.22/lombok-1.18.22.jar!/" />
  1710. </CLASSES>
  1711. <JAVADOC />
  1712. <SOURCES />
  1713. </library>
  1714. </orderEntry>
  1715. <orderEntry type="module-library">
  1716. <library>
  1717. <CLASSES>
  1718. <root url="jar://$MAVEN_REPOSITORY$/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar!/" />
  1719. </CLASSES>
  1720. <JAVADOC />
  1721. <SOURCES />
  1722. </library>
  1723. </orderEntry>
  1724. <orderEntry type="module-library">
  1725. <library>
  1726. <CLASSES>
  1727. <root url="jar://$MAVEN_REPOSITORY$/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar!/" />
  1728. </CLASSES>
  1729. <JAVADOC />
  1730. <SOURCES />
  1731. </library>
  1732. </orderEntry>
  1733. <orderEntry type="module-library">
  1734. <library>
  1735. <CLASSES>
  1736. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/cloud/spring-cloud-starter-bootstrap/3.1.1/spring-cloud-starter-bootstrap-3.1.1.jar!/" />
  1737. </CLASSES>
  1738. <JAVADOC />
  1739. <SOURCES />
  1740. </library>
  1741. </orderEntry>
  1742. <orderEntry type="module-library">
  1743. <library>
  1744. <CLASSES>
  1745. <root url="jar://$MAVEN_REPOSITORY$/org/hibernate/validator/hibernate-validator/6.2.3.Final/hibernate-validator-6.2.3.Final.jar!/" />
  1746. </CLASSES>
  1747. <JAVADOC />
  1748. <SOURCES />
  1749. </library>
  1750. </orderEntry>
  1751. <orderEntry type="module-library">
  1752. <library>
  1753. <CLASSES>
  1754. <root url="jar://$MAVEN_REPOSITORY$/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar!/" />
  1755. </CLASSES>
  1756. <JAVADOC />
  1757. <SOURCES />
  1758. </library>
  1759. </orderEntry>
  1760. <orderEntry type="module-library">
  1761. <library>
  1762. <CLASSES>
  1763. <root url="jar://$MAVEN_REPOSITORY$/org/jboss/logging/jboss-logging/3.4.3.Final/jboss-logging-3.4.3.Final.jar!/" />
  1764. </CLASSES>
  1765. <JAVADOC />
  1766. <SOURCES />
  1767. </library>
  1768. </orderEntry>
  1769. <orderEntry type="module-library">
  1770. <library>
  1771. <CLASSES>
  1772. <root url="jar://$MAVEN_REPOSITORY$/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar!/" />
  1773. </CLASSES>
  1774. <JAVADOC />
  1775. <SOURCES />
  1776. </library>
  1777. </orderEntry>
  1778. <orderEntry type="module-library">
  1779. <library>
  1780. <CLASSES>
  1781. <root url="jar://$MAVEN_REPOSITORY$/com/usky/usky-common-security/0.0.1/usky-common-security-0.0.1.jar!/" />
  1782. </CLASSES>
  1783. <JAVADOC />
  1784. <SOURCES />
  1785. </library>
  1786. </orderEntry>
  1787. <orderEntry type="module-library">
  1788. <library>
  1789. <CLASSES>
  1790. <root url="jar://$MAVEN_REPOSITORY$/com/usky/usky-common-redis/0.0.1/usky-common-redis-0.0.1.jar!/" />
  1791. </CLASSES>
  1792. <JAVADOC />
  1793. <SOURCES />
  1794. </library>
  1795. </orderEntry>
  1796. <orderEntry type="module-library">
  1797. <library>
  1798. <CLASSES>
  1799. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/boot/spring-boot-starter-data-redis/2.6.6/spring-boot-starter-data-redis-2.6.6.jar!/" />
  1800. </CLASSES>
  1801. <JAVADOC />
  1802. <SOURCES />
  1803. </library>
  1804. </orderEntry>
  1805. <orderEntry type="module-library">
  1806. <library>
  1807. <CLASSES>
  1808. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/data/spring-data-redis/2.6.3/spring-data-redis-2.6.3.jar!/" />
  1809. </CLASSES>
  1810. <JAVADOC />
  1811. <SOURCES />
  1812. </library>
  1813. </orderEntry>
  1814. <orderEntry type="module-library">
  1815. <library>
  1816. <CLASSES>
  1817. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/data/spring-data-keyvalue/2.6.3/spring-data-keyvalue-2.6.3.jar!/" />
  1818. </CLASSES>
  1819. <JAVADOC />
  1820. <SOURCES />
  1821. </library>
  1822. </orderEntry>
  1823. <orderEntry type="module-library">
  1824. <library>
  1825. <CLASSES>
  1826. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/data/spring-data-commons/2.6.3/spring-data-commons-2.6.3.jar!/" />
  1827. </CLASSES>
  1828. <JAVADOC />
  1829. <SOURCES />
  1830. </library>
  1831. </orderEntry>
  1832. <orderEntry type="module-library">
  1833. <library>
  1834. <CLASSES>
  1835. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/spring-oxm/5.3.18/spring-oxm-5.3.18.jar!/" />
  1836. </CLASSES>
  1837. <JAVADOC />
  1838. <SOURCES />
  1839. </library>
  1840. </orderEntry>
  1841. <orderEntry type="module-library">
  1842. <library>
  1843. <CLASSES>
  1844. <root url="jar://$MAVEN_REPOSITORY$/io/lettuce/lettuce-core/6.1.8.RELEASE/lettuce-core-6.1.8.RELEASE.jar!/" />
  1845. </CLASSES>
  1846. <JAVADOC />
  1847. <SOURCES />
  1848. </library>
  1849. </orderEntry>
  1850. <orderEntry type="module-library">
  1851. <library>
  1852. <CLASSES>
  1853. <root url="jar://$MAVEN_REPOSITORY$/io/netty/netty-common/4.1.75.Final/netty-common-4.1.75.Final.jar!/" />
  1854. </CLASSES>
  1855. <JAVADOC />
  1856. <SOURCES />
  1857. </library>
  1858. </orderEntry>
  1859. <orderEntry type="module-library">
  1860. <library>
  1861. <CLASSES>
  1862. <root url="jar://$MAVEN_REPOSITORY$/io/netty/netty-handler/4.1.75.Final/netty-handler-4.1.75.Final.jar!/" />
  1863. </CLASSES>
  1864. <JAVADOC />
  1865. <SOURCES />
  1866. </library>
  1867. </orderEntry>
  1868. <orderEntry type="module-library">
  1869. <library>
  1870. <CLASSES>
  1871. <root url="jar://$MAVEN_REPOSITORY$/io/netty/netty-resolver/4.1.75.Final/netty-resolver-4.1.75.Final.jar!/" />
  1872. </CLASSES>
  1873. <JAVADOC />
  1874. <SOURCES />
  1875. </library>
  1876. </orderEntry>
  1877. <orderEntry type="module-library">
  1878. <library>
  1879. <CLASSES>
  1880. <root url="jar://$MAVEN_REPOSITORY$/io/netty/netty-buffer/4.1.75.Final/netty-buffer-4.1.75.Final.jar!/" />
  1881. </CLASSES>
  1882. <JAVADOC />
  1883. <SOURCES />
  1884. </library>
  1885. </orderEntry>
  1886. <orderEntry type="module-library">
  1887. <library>
  1888. <CLASSES>
  1889. <root url="jar://$MAVEN_REPOSITORY$/io/netty/netty-transport/4.1.75.Final/netty-transport-4.1.75.Final.jar!/" />
  1890. </CLASSES>
  1891. <JAVADOC />
  1892. <SOURCES />
  1893. </library>
  1894. </orderEntry>
  1895. <orderEntry type="module-library">
  1896. <library>
  1897. <CLASSES>
  1898. <root url="jar://$MAVEN_REPOSITORY$/io/netty/netty-codec/4.1.75.Final/netty-codec-4.1.75.Final.jar!/" />
  1899. </CLASSES>
  1900. <JAVADOC />
  1901. <SOURCES />
  1902. </library>
  1903. </orderEntry>
  1904. <orderEntry type="module-library">
  1905. <library>
  1906. <CLASSES>
  1907. <root url="jar://$MAVEN_REPOSITORY$/net/sf/ehcache/ehcache/2.10.9.2/ehcache-2.10.9.2.jar!/" />
  1908. </CLASSES>
  1909. <JAVADOC />
  1910. <SOURCES />
  1911. </library>
  1912. </orderEntry>
  1913. <orderEntry type="module-library">
  1914. <library>
  1915. <CLASSES>
  1916. <root url="jar://$MAVEN_REPOSITORY$/com/usky/usky-common-mybatis/0.0.1/usky-common-mybatis-0.0.1.jar!/" />
  1917. </CLASSES>
  1918. <JAVADOC />
  1919. <SOURCES />
  1920. </library>
  1921. </orderEntry>
  1922. <orderEntry type="module-library">
  1923. <library>
  1924. <CLASSES>
  1925. <root url="jar://$MAVEN_REPOSITORY$/com/baomidou/mybatis-plus-boot-starter/3.4.0/mybatis-plus-boot-starter-3.4.0.jar!/" />
  1926. </CLASSES>
  1927. <JAVADOC />
  1928. <SOURCES />
  1929. </library>
  1930. </orderEntry>
  1931. <orderEntry type="module-library">
  1932. <library>
  1933. <CLASSES>
  1934. <root url="jar://$MAVEN_REPOSITORY$/com/baomidou/mybatis-plus/3.4.0/mybatis-plus-3.4.0.jar!/" />
  1935. </CLASSES>
  1936. <JAVADOC />
  1937. <SOURCES />
  1938. </library>
  1939. </orderEntry>
  1940. <orderEntry type="module-library">
  1941. <library>
  1942. <CLASSES>
  1943. <root url="jar://$MAVEN_REPOSITORY$/com/baomidou/dynamic-datasource-spring-boot-starter/3.5.0/dynamic-datasource-spring-boot-starter-3.5.0.jar!/" />
  1944. </CLASSES>
  1945. <JAVADOC />
  1946. <SOURCES />
  1947. </library>
  1948. </orderEntry>
  1949. <orderEntry type="module-library">
  1950. <library>
  1951. <CLASSES>
  1952. <root url="jar://$MAVEN_REPOSITORY$/com/usky/usky-common-log/0.0.1/usky-common-log-0.0.1.jar!/" />
  1953. </CLASSES>
  1954. <JAVADOC />
  1955. <SOURCES />
  1956. </library>
  1957. </orderEntry>
  1958. <orderEntry type="module-library">
  1959. <library>
  1960. <CLASSES>
  1961. <root url="jar://$MAVEN_REPOSITORY$/com/usky/ruoyi-common-datascope/0.0.1/ruoyi-common-datascope-0.0.1.jar!/" />
  1962. </CLASSES>
  1963. <JAVADOC />
  1964. <SOURCES />
  1965. </library>
  1966. </orderEntry>
  1967. <orderEntry type="module-library">
  1968. <library>
  1969. <CLASSES>
  1970. <root url="jar://$MAVEN_REPOSITORY$/com/usky/ruoyi-common-swagger/0.0.1/ruoyi-common-swagger-0.0.1.jar!/" />
  1971. </CLASSES>
  1972. <JAVADOC />
  1973. <SOURCES />
  1974. </library>
  1975. </orderEntry>
  1976. <orderEntry type="module-library">
  1977. <library>
  1978. <CLASSES>
  1979. <root url="jar://$MAVEN_REPOSITORY$/io/springfox/springfox-swagger2/3.0.0/springfox-swagger2-3.0.0.jar!/" />
  1980. </CLASSES>
  1981. <JAVADOC />
  1982. <SOURCES />
  1983. </library>
  1984. </orderEntry>
  1985. <orderEntry type="module-library">
  1986. <library>
  1987. <CLASSES>
  1988. <root url="jar://$MAVEN_REPOSITORY$/io/springfox/springfox-spi/3.0.0/springfox-spi-3.0.0.jar!/" />
  1989. </CLASSES>
  1990. <JAVADOC />
  1991. <SOURCES />
  1992. </library>
  1993. </orderEntry>
  1994. <orderEntry type="module-library">
  1995. <library>
  1996. <CLASSES>
  1997. <root url="jar://$MAVEN_REPOSITORY$/io/springfox/springfox-core/3.0.0/springfox-core-3.0.0.jar!/" />
  1998. </CLASSES>
  1999. <JAVADOC />
  2000. <SOURCES />
  2001. </library>
  2002. </orderEntry>
  2003. <orderEntry type="module-library">
  2004. <library>
  2005. <CLASSES>
  2006. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/plugin/spring-plugin-core/2.0.0.RELEASE/spring-plugin-core-2.0.0.RELEASE.jar!/" />
  2007. </CLASSES>
  2008. <JAVADOC />
  2009. <SOURCES />
  2010. </library>
  2011. </orderEntry>
  2012. <orderEntry type="module-library">
  2013. <library>
  2014. <CLASSES>
  2015. <root url="jar://$MAVEN_REPOSITORY$/org/springframework/plugin/spring-plugin-metadata/2.0.0.RELEASE/spring-plugin-metadata-2.0.0.RELEASE.jar!/" />
  2016. </CLASSES>
  2017. <JAVADOC />
  2018. <SOURCES />
  2019. </library>
  2020. </orderEntry>
  2021. <orderEntry type="module-library">
  2022. <library>
  2023. <CLASSES>
  2024. <root url="jar://$MAVEN_REPOSITORY$/io/springfox/springfox-schema/3.0.0/springfox-schema-3.0.0.jar!/" />
  2025. </CLASSES>
  2026. <JAVADOC />
  2027. <SOURCES />
  2028. </library>
  2029. </orderEntry>
  2030. <orderEntry type="module-library">
  2031. <library>
  2032. <CLASSES>
  2033. <root url="jar://$MAVEN_REPOSITORY$/io/springfox/springfox-swagger-common/3.0.0/springfox-swagger-common-3.0.0.jar!/" />
  2034. </CLASSES>
  2035. <JAVADOC />
  2036. <SOURCES />
  2037. </library>
  2038. </orderEntry>
  2039. <orderEntry type="module-library">
  2040. <library>
  2041. <CLASSES>
  2042. <root url="jar://$MAVEN_REPOSITORY$/io/springfox/springfox-spring-web/3.0.0/springfox-spring-web-3.0.0.jar!/" />
  2043. </CLASSES>
  2044. <JAVADOC />
  2045. <SOURCES />
  2046. </library>
  2047. </orderEntry>
  2048. <orderEntry type="module-library">
  2049. <library>
  2050. <CLASSES>
  2051. <root url="jar://$MAVEN_REPOSITORY$/io/github/classgraph/classgraph/4.8.83/classgraph-4.8.83.jar!/" />
  2052. </CLASSES>
  2053. <JAVADOC />
  2054. <SOURCES />
  2055. </library>
  2056. </orderEntry>
  2057. <orderEntry type="module-library">
  2058. <library>
  2059. <CLASSES>
  2060. <root url="jar://$MAVEN_REPOSITORY$/io/springfox/springfox-spring-webmvc/3.0.0/springfox-spring-webmvc-3.0.0.jar!/" />
  2061. </CLASSES>
  2062. <JAVADOC />
  2063. <SOURCES />
  2064. </library>
  2065. </orderEntry>
  2066. <orderEntry type="module-library">
  2067. <library>
  2068. <CLASSES>
  2069. <root url="jar://$MAVEN_REPOSITORY$/io/swagger/swagger-models/1.6.2/swagger-models-1.6.2.jar!/" />
  2070. </CLASSES>
  2071. <JAVADOC />
  2072. <SOURCES />
  2073. </library>
  2074. </orderEntry>
  2075. <orderEntry type="module-library">
  2076. <library>
  2077. <CLASSES>
  2078. <root url="jar://$MAVEN_REPOSITORY$/io/swagger/core/v3/swagger-annotations/2.1.2/swagger-annotations-2.1.2.jar!/" />
  2079. </CLASSES>
  2080. <JAVADOC />
  2081. <SOURCES />
  2082. </library>
  2083. </orderEntry>
  2084. <orderEntry type="module-library">
  2085. <library>
  2086. <CLASSES>
  2087. <root url="jar://$MAVEN_REPOSITORY$/io/springfox/springfox-spring-webflux/3.0.0/springfox-spring-webflux-3.0.0.jar!/" />
  2088. </CLASSES>
  2089. <JAVADOC />
  2090. <SOURCES />
  2091. </library>
  2092. </orderEntry>
  2093. <orderEntry type="module-library">
  2094. <library>
  2095. <CLASSES>
  2096. <root url="jar://$MAVEN_REPOSITORY$/org/mapstruct/mapstruct/1.3.1.Final/mapstruct-1.3.1.Final.jar!/" />
  2097. </CLASSES>
  2098. <JAVADOC />
  2099. <SOURCES />
  2100. </library>
  2101. </orderEntry>
  2102. <orderEntry type="module-library">
  2103. <library>
  2104. <CLASSES>
  2105. <root url="jar://$MAVEN_REPOSITORY$/io/springfox/springfox-swagger-ui/3.0.0/springfox-swagger-ui-3.0.0.jar!/" />
  2106. </CLASSES>
  2107. <JAVADOC />
  2108. <SOURCES />
  2109. </library>
  2110. </orderEntry>
  2111. <orderEntry type="library" name="ag-sdk-biz-322286.tar.gz-20240530.143937-SNAPSHOT" level="project" />
  2112. <orderEntry type="module-library">
  2113. <library>
  2114. <CLASSES>
  2115. <root url="jar://$MODULE_DIR$/../../../../电信平台对接/lib/ag-sdk-biz-322286.tar.gz-20240530.143937-SNAPSHOT.jar!/" />
  2116. </CLASSES>
  2117. <JAVADOC />
  2118. <SOURCES />
  2119. </library>
  2120. </orderEntry>
  2121. <orderEntry type="module-library">
  2122. <library>
  2123. <CLASSES>
  2124. <root url="jar://$MODULE_DIR$/../../../../电信平台对接/lib/ctg-ag-sdk-core-2.8.0-20230508.100604-1.jar!/" />
  2125. </CLASSES>
  2126. <JAVADOC />
  2127. <SOURCES />
  2128. </library>
  2129. </orderEntry>
  2130. <orderEntry type="library" name="Maven: com.usky:common-cloud-starter:0.0.1" level="project" />
  2131. <orderEntry type="library" name="Maven: com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-discovery:2021.1" level="project" />
  2132. <orderEntry type="library" name="Maven: com.alibaba.cloud:spring-cloud-alibaba-commons:2021.1" level="project" />
  2133. <orderEntry type="library" name="Maven: com.alibaba.nacos:nacos-client:2.0.4" level="project" />
  2134. <orderEntry type="library" name="Maven: commons-codec:commons-codec:1.15" level="project" />
  2135. <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-core:2.13.2" level="project" />
  2136. <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-databind:2.13.2.2" level="project" />
  2137. <orderEntry type="library" name="Maven: org.apache.httpcomponents:httpasyncclient:4.1.5" level="project" />
  2138. <orderEntry type="library" name="Maven: org.apache.httpcomponents:httpcore:4.4.15" level="project" />
  2139. <orderEntry type="library" name="Maven: org.apache.httpcomponents:httpcore-nio:4.4.15" level="project" />
  2140. <orderEntry type="library" name="Maven: org.apache.httpcomponents:httpclient:4.5.13" level="project" />
  2141. <orderEntry type="library" name="Maven: org.reflections:reflections:0.9.11" level="project" />
  2142. <orderEntry type="library" name="Maven: org.javassist:javassist:3.21.0-GA" level="project" />
  2143. <orderEntry type="library" name="Maven: io.prometheus:simpleclient:0.12.0" level="project" />
  2144. <orderEntry type="library" name="Maven: io.prometheus:simpleclient_tracer_otel:0.12.0" level="project" />
  2145. <orderEntry type="library" name="Maven: io.prometheus:simpleclient_tracer_common:0.12.0" level="project" />
  2146. <orderEntry type="library" name="Maven: io.prometheus:simpleclient_tracer_otel_agent:0.12.0" level="project" />
  2147. <orderEntry type="library" name="Maven: com.alibaba.spring:spring-context-support:1.0.10" level="project" />
  2148. <orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-commons:3.1.1" level="project" />
  2149. <orderEntry type="library" name="Maven: org.springframework.security:spring-security-crypto:5.6.2" level="project" />
  2150. <orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-context:3.1.1" level="project" />
  2151. <orderEntry type="library" name="Maven: com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-config:2021.1" level="project" />
  2152. <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-actuator:2.6.6" level="project" />
  2153. <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-actuator-autoconfigure:2.6.6" level="project" />
  2154. <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-actuator:2.6.6" level="project" />
  2155. <orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.2" level="project" />
  2156. <orderEntry type="library" name="Maven: io.micrometer:micrometer-core:1.8.4" level="project" />
  2157. <orderEntry type="library" name="Maven: org.hdrhistogram:HdrHistogram:2.1.12" level="project" />
  2158. <orderEntry type="library" scope="RUNTIME" name="Maven: org.latencyutils:LatencyUtils:2.0.3" level="project" />
  2159. <orderEntry type="library" name="Maven: mysql:mysql-connector-java:8.0.28" level="project" />
  2160. <orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-generator:3.4.0" level="project" />
  2161. <orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-extension:3.4.0" level="project" />
  2162. <orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-core:3.4.0" level="project" />
  2163. <orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-annotation:3.4.0" level="project" />
  2164. <orderEntry type="library" name="Maven: org.apache.velocity:velocity-engine-core:2.3" level="project" />
  2165. <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.36" level="project" />
  2166. <orderEntry type="library" name="Maven: com.usky:service-system-api:0.0.1" level="project" />
  2167. <orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-openfeign:3.1.1" level="project" />
  2168. <orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-openfeign-core:3.1.1" level="project" />
  2169. <orderEntry type="library" name="Maven: io.github.openfeign.form:feign-form-spring:3.8.0" level="project" />
  2170. <orderEntry type="library" name="Maven: io.github.openfeign.form:feign-form:3.8.0" level="project" />
  2171. <orderEntry type="library" name="Maven: io.github.openfeign:feign-core:11.8" level="project" />
  2172. <orderEntry type="library" name="Maven: io.github.openfeign:feign-slf4j:11.8" level="project" />
  2173. <orderEntry type="library" name="Maven: com.usky:usky-common-core:0.0.1" level="project" />
  2174. <orderEntry type="library" name="Maven: ma.glasnost.orika:orika-core:1.5.4" level="project" />
  2175. <orderEntry type="library" name="Maven: com.thoughtworks.paranamer:paranamer:2.8" level="project" />
  2176. <orderEntry type="library" name="Maven: com.carrotsearch:java-sizeof:0.0.5" level="project" />
  2177. <orderEntry type="library" name="Maven: org.codehaus.janino:janino:3.1.6" level="project" />
  2178. <orderEntry type="library" name="Maven: org.codehaus.janino:commons-compiler:3.1.6" level="project" />
  2179. <orderEntry type="library" name="Maven: com.squareup.okhttp3:okhttp:3.14.9" level="project" />
  2180. <orderEntry type="library" name="Maven: com.squareup.okio:okio:1.17.2" level="project" />
  2181. <orderEntry type="library" name="Maven: javax.validation:validation-api:2.0.1.Final" level="project" />
  2182. <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-annotations:2.13.2" level="project" />
  2183. <orderEntry type="library" name="Maven: javax.servlet:javax.servlet-api:4.0.1" level="project" />
  2184. <orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-loadbalancer:3.1.1" level="project" />
  2185. <orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-loadbalancer:3.1.1" level="project" />
  2186. <orderEntry type="library" name="Maven: io.projectreactor:reactor-core:3.4.16" level="project" />
  2187. <orderEntry type="library" name="Maven: io.projectreactor.addons:reactor-extra:3.4.7" level="project" />
  2188. <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-cache:2.6.6" level="project" />
  2189. <orderEntry type="library" name="Maven: org.springframework:spring-context-support:5.3.18" level="project" />
  2190. <orderEntry type="library" name="Maven: com.stoyanr:evictor:1.0.0" level="project" />
  2191. <orderEntry type="library" name="Maven: com.alibaba:transmittable-thread-local:2.12.2" level="project" />
  2192. <orderEntry type="library" name="Maven: io.jsonwebtoken:jjwt:0.9.1" level="project" />
  2193. <orderEntry type="library" name="Maven: cn.hutool:hutool-all:5.6.1" level="project" />
  2194. <orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-netflix-hystrix:2.2.10.RELEASE" level="project" />
  2195. <orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-hystrix:2.2.10.RELEASE" level="project" />
  2196. <orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-ribbon:2.2.10.RELEASE" level="project" />
  2197. <orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-netflix-archaius:2.2.10.RELEASE" level="project" />
  2198. <orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-netflix-archaius:2.2.10.RELEASE" level="project" />
  2199. <orderEntry type="library" name="Maven: com.netflix.archaius:archaius-core:0.7.7" level="project" />
  2200. <orderEntry type="library" name="Maven: commons-configuration:commons-configuration:1.8" level="project" />
  2201. <orderEntry type="library" name="Maven: commons-lang:commons-lang:2.6" level="project" />
  2202. <orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-core:1.5.18" level="project" />
  2203. <orderEntry type="library" name="Maven: io.reactivex:rxjava:1.3.8" level="project" />
  2204. <orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-serialization:1.5.18" level="project" />
  2205. <orderEntry type="library" scope="RUNTIME" name="Maven: com.fasterxml.jackson.module:jackson-module-afterburner:2.13.2" level="project" />
  2206. <orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-metrics-event-stream:1.5.18" level="project" />
  2207. <orderEntry type="library" name="Maven: com.netflix.hystrix:hystrix-javanica:1.5.18" level="project" />
  2208. <orderEntry type="library" name="Maven: io.reactivex:rxjava-reactive-streams:1.2.1" level="project" />
  2209. <orderEntry type="library" name="Maven: org.reactivestreams:reactive-streams:1.0.3" level="project" />
  2210. <orderEntry type="library" name="Maven: org.apache.poi:poi-ooxml:4.1.2" level="project" />
  2211. <orderEntry type="library" name="Maven: org.apache.poi:poi:4.1.2" level="project" />
  2212. <orderEntry type="library" name="Maven: org.apache.commons:commons-collections4:4.4" level="project" />
  2213. <orderEntry type="library" name="Maven: org.apache.commons:commons-math3:3.6.1" level="project" />
  2214. <orderEntry type="library" name="Maven: com.zaxxer:SparseBitSet:1.2" level="project" />
  2215. <orderEntry type="library" name="Maven: org.apache.poi:poi-ooxml-schemas:4.1.2" level="project" />
  2216. <orderEntry type="library" name="Maven: org.apache.xmlbeans:xmlbeans:3.1.0" level="project" />
  2217. <orderEntry type="library" name="Maven: org.apache.commons:commons-compress:1.19" level="project" />
  2218. <orderEntry type="library" name="Maven: com.github.virtuald:curvesapi:1.06" level="project" />
  2219. <orderEntry type="library" name="Maven: commons-fileupload:commons-fileupload:1.4" level="project" />
  2220. <orderEntry type="library" name="Maven: org.influxdb:influxdb-java:2.22" level="project" />
  2221. <orderEntry type="library" name="Maven: com.squareup.retrofit2:retrofit:2.9.0" level="project" />
  2222. <orderEntry type="library" name="Maven: com.squareup.retrofit2:converter-moshi:2.9.0" level="project" />
  2223. <orderEntry type="library" name="Maven: com.squareup.moshi:moshi:1.8.0" level="project" />
  2224. <orderEntry type="library" name="Maven: org.msgpack:msgpack-core:0.9.0" level="project" />
  2225. <orderEntry type="library" name="Maven: com.squareup.okhttp3:logging-interceptor:3.14.9" level="project" />
  2226. <orderEntry type="library" name="Maven: org.hibernate.validator:hibernate-validator:6.2.3.Final" level="project" />
  2227. <orderEntry type="library" name="Maven: jakarta.validation:jakarta.validation-api:2.0.2" level="project" />
  2228. <orderEntry type="library" name="Maven: org.jboss.logging:jboss-logging:3.4.3.Final" level="project" />
  2229. <orderEntry type="library" name="Maven: com.fasterxml:classmate:1.5.1" level="project" />
  2230. <orderEntry type="library" name="Maven: com.usky:usky-common-security:0.0.1" level="project" />
  2231. <orderEntry type="library" name="Maven: org.springframework:spring-webmvc:5.3.18" level="project" />
  2232. <orderEntry type="library" name="Maven: org.springframework:spring-aop:5.3.18" level="project" />
  2233. <orderEntry type="library" name="Maven: org.springframework:spring-expression:5.3.18" level="project" />
  2234. <orderEntry type="library" name="Maven: com.usky:usky-common-redis:0.0.1" level="project" />
  2235. <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-data-redis:2.6.6" level="project" />
  2236. <orderEntry type="library" name="Maven: org.springframework.data:spring-data-redis:2.6.3" level="project" />
  2237. <orderEntry type="library" name="Maven: org.springframework.data:spring-data-keyvalue:2.6.3" level="project" />
  2238. <orderEntry type="library" name="Maven: org.springframework.data:spring-data-commons:2.6.3" level="project" />
  2239. <orderEntry type="library" name="Maven: org.springframework:spring-oxm:5.3.18" level="project" />
  2240. <orderEntry type="library" name="Maven: io.lettuce:lettuce-core:6.1.8.RELEASE" level="project" />
  2241. <orderEntry type="library" name="Maven: io.netty:netty-common:4.1.75.Final" level="project" />
  2242. <orderEntry type="library" name="Maven: io.netty:netty-handler:4.1.75.Final" level="project" />
  2243. <orderEntry type="library" name="Maven: io.netty:netty-resolver:4.1.75.Final" level="project" />
  2244. <orderEntry type="library" name="Maven: io.netty:netty-buffer:4.1.75.Final" level="project" />
  2245. <orderEntry type="library" name="Maven: io.netty:netty-codec:4.1.75.Final" level="project" />
  2246. <orderEntry type="library" name="Maven: io.netty:netty-transport:4.1.75.Final" level="project" />
  2247. <orderEntry type="library" name="Maven: net.sf.ehcache:ehcache:2.10.9.2" level="project" />
  2248. <orderEntry type="library" name="Maven: com.usky:usky-common-mybatis:0.0.1" level="project" />
  2249. <orderEntry type="library" name="Maven: com.baomidou:mybatis-plus-boot-starter:3.4.0" level="project" />
  2250. <orderEntry type="library" name="Maven: com.baomidou:mybatis-plus:3.4.0" level="project" />
  2251. <orderEntry type="library" name="Maven: com.baomidou:dynamic-datasource-spring-boot-starter:3.5.0" level="project" />
  2252. <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-aop:2.6.6" level="project" />
  2253. <orderEntry type="library" name="Maven: org.aspectj:aspectjweaver:1.9.7" level="project" />
  2254. <orderEntry type="library" name="Maven: com.usky:usky-common-log:0.0.1" level="project" />
  2255. <orderEntry type="library" name="Maven: com.usky:ruoyi-common-datascope:0.0.1" level="project" />
  2256. <orderEntry type="library" name="Maven: org.apache.commons:commons-lang3:3.12.0" level="project" />
  2257. <orderEntry type="library" name="Maven: commons-io:commons-io:2.11.0" level="project" />
  2258. <orderEntry type="library" name="Maven: commons-beanutils:commons-beanutils:1.9.4" level="project" />
  2259. <orderEntry type="library" name="Maven: commons-logging:commons-logging:1.2" level="project" />
  2260. <orderEntry type="library" name="Maven: commons-collections:commons-collections:3.2.2" level="project" />
  2261. <orderEntry type="library" name="Maven: com.google.guava:guava:29.0-jre" level="project" />
  2262. <orderEntry type="library" name="Maven: com.google.guava:failureaccess:1.0.1" level="project" />
  2263. <orderEntry type="library" name="Maven: com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava" level="project" />
  2264. <orderEntry type="library" name="Maven: com.google.code.findbugs:jsr305:3.0.2" level="project" />
  2265. <orderEntry type="library" name="Maven: org.checkerframework:checker-qual:2.11.1" level="project" />
  2266. <orderEntry type="library" name="Maven: com.google.errorprone:error_prone_annotations:2.3.4" level="project" />
  2267. <orderEntry type="library" name="Maven: com.google.j2objc:j2objc-annotations:1.3" level="project" />
  2268. <orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-starter-test:2.6.6" level="project" />
  2269. <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter:2.6.6" level="project" />
  2270. <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot:2.6.6" level="project" />
  2271. <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-autoconfigure:2.6.6" level="project" />
  2272. <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-logging:2.6.6" level="project" />
  2273. <orderEntry type="library" name="Maven: ch.qos.logback:logback-classic:1.2.11" level="project" />
  2274. <orderEntry type="library" name="Maven: ch.qos.logback:logback-core:1.2.11" level="project" />
  2275. <orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-to-slf4j:2.17.2" level="project" />
  2276. <orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-api:2.17.2" level="project" />
  2277. <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.36" level="project" />
  2278. <orderEntry type="library" name="Maven: jakarta.annotation:jakarta.annotation-api:1.3.5" level="project" />
  2279. <orderEntry type="library" name="Maven: org.yaml:snakeyaml:1.29" level="project" />
  2280. <orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-test:2.6.6" level="project" />
  2281. <orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-test-autoconfigure:2.6.6" level="project" />
  2282. <orderEntry type="library" scope="TEST" name="Maven: com.jayway.jsonpath:json-path:2.6.0" level="project" />
  2283. <orderEntry type="library" scope="TEST" name="Maven: net.minidev:json-smart:2.4.8" level="project" />
  2284. <orderEntry type="library" scope="TEST" name="Maven: net.minidev:accessors-smart:2.4.8" level="project" />
  2285. <orderEntry type="library" scope="RUNTIME" name="Maven: org.ow2.asm:asm:9.1" level="project" />
  2286. <orderEntry type="library" scope="TEST" name="Maven: jakarta.xml.bind:jakarta.xml.bind-api:2.3.3" level="project" />
  2287. <orderEntry type="library" scope="TEST" name="Maven: jakarta.activation:jakarta.activation-api:1.2.2" level="project" />
  2288. <orderEntry type="library" scope="TEST" name="Maven: org.assertj:assertj-core:3.21.0" level="project" />
  2289. <orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest:2.2" level="project" />
  2290. <orderEntry type="library" scope="TEST" name="Maven: org.junit.jupiter:junit-jupiter:5.8.2" level="project" />
  2291. <orderEntry type="library" scope="TEST" name="Maven: org.junit.jupiter:junit-jupiter-api:5.8.2" level="project" />
  2292. <orderEntry type="library" scope="TEST" name="Maven: org.opentest4j:opentest4j:1.2.0" level="project" />
  2293. <orderEntry type="library" scope="TEST" name="Maven: org.junit.platform:junit-platform-commons:1.8.2" level="project" />
  2294. <orderEntry type="library" scope="TEST" name="Maven: org.apiguardian:apiguardian-api:1.1.2" level="project" />
  2295. <orderEntry type="library" scope="TEST" name="Maven: org.junit.jupiter:junit-jupiter-params:5.8.2" level="project" />
  2296. <orderEntry type="library" scope="TEST" name="Maven: org.junit.jupiter:junit-jupiter-engine:5.8.2" level="project" />
  2297. <orderEntry type="library" scope="TEST" name="Maven: org.junit.platform:junit-platform-engine:1.8.2" level="project" />
  2298. <orderEntry type="library" scope="TEST" name="Maven: org.mockito:mockito-core:4.0.0" level="project" />
  2299. <orderEntry type="library" name="Maven: net.bytebuddy:byte-buddy:1.11.22" level="project" />
  2300. <orderEntry type="library" scope="TEST" name="Maven: net.bytebuddy:byte-buddy-agent:1.11.22" level="project" />
  2301. <orderEntry type="library" scope="TEST" name="Maven: org.objenesis:objenesis:3.2" level="project" />
  2302. <orderEntry type="library" scope="TEST" name="Maven: org.mockito:mockito-junit-jupiter:4.0.0" level="project" />
  2303. <orderEntry type="library" scope="TEST" name="Maven: org.skyscreamer:jsonassert:1.5.0" level="project" />
  2304. <orderEntry type="library" scope="TEST" name="Maven: com.vaadin.external.google:android-json:0.0.20131108.vaadin1" level="project" />
  2305. <orderEntry type="library" name="Maven: org.springframework:spring-core:5.3.18" level="project" />
  2306. <orderEntry type="library" name="Maven: org.springframework:spring-jcl:5.3.18" level="project" />
  2307. <orderEntry type="library" scope="TEST" name="Maven: org.springframework:spring-test:5.3.18" level="project" />
  2308. <orderEntry type="library" scope="TEST" name="Maven: org.xmlunit:xmlunit-core:2.8.4" level="project" />
  2309. <orderEntry type="library" name="Maven: com.github.pagehelper:pagehelper-spring-boot-starter:1.4.1" level="project" />
  2310. <orderEntry type="library" name="Maven: org.mybatis.spring.boot:mybatis-spring-boot-starter:2.2.2" level="project" />
  2311. <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-jdbc:2.6.6" level="project" />
  2312. <orderEntry type="library" name="Maven: com.zaxxer:HikariCP:4.0.3" level="project" />
  2313. <orderEntry type="library" name="Maven: org.springframework:spring-jdbc:5.3.18" level="project" />
  2314. <orderEntry type="library" name="Maven: org.mybatis.spring.boot:mybatis-spring-boot-autoconfigure:2.2.2" level="project" />
  2315. <orderEntry type="library" name="Maven: org.mybatis:mybatis:3.5.9" level="project" />
  2316. <orderEntry type="library" name="Maven: org.mybatis:mybatis-spring:2.0.7" level="project" />
  2317. <orderEntry type="library" name="Maven: com.github.pagehelper:pagehelper-spring-boot-autoconfigure:1.4.1" level="project" />
  2318. <orderEntry type="library" name="Maven: com.github.pagehelper:pagehelper:5.3.0" level="project" />
  2319. <orderEntry type="library" name="Maven: com.github.jsqlparser:jsqlparser:4.2" level="project" />
  2320. <orderEntry type="library" name="Maven: com.usky:ruoyi-common-swagger:0.0.1" level="project" />
  2321. <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-web:2.6.6" level="project" />
  2322. <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-json:2.6.6" level="project" />
  2323. <orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.2" level="project" />
  2324. <orderEntry type="library" name="Maven: com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.2" level="project" />
  2325. <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-tomcat:2.6.6" level="project" />
  2326. <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-core:9.0.60" level="project" />
  2327. <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-el:9.0.60" level="project" />
  2328. <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-websocket:9.0.60" level="project" />
  2329. <orderEntry type="library" name="Maven: org.springframework:spring-web:5.3.18" level="project" />
  2330. <orderEntry type="library" name="Maven: io.springfox:springfox-swagger2:3.0.0" level="project" />
  2331. <orderEntry type="library" name="Maven: io.springfox:springfox-spi:3.0.0" level="project" />
  2332. <orderEntry type="library" name="Maven: io.springfox:springfox-core:3.0.0" level="project" />
  2333. <orderEntry type="library" name="Maven: io.springfox:springfox-schema:3.0.0" level="project" />
  2334. <orderEntry type="library" name="Maven: io.springfox:springfox-swagger-common:3.0.0" level="project" />
  2335. <orderEntry type="library" name="Maven: io.swagger.core.v3:swagger-annotations:2.1.2" level="project" />
  2336. <orderEntry type="library" name="Maven: io.springfox:springfox-spring-web:3.0.0" level="project" />
  2337. <orderEntry type="library" name="Maven: io.github.classgraph:classgraph:4.8.83" level="project" />
  2338. <orderEntry type="library" name="Maven: io.springfox:springfox-spring-webmvc:3.0.0" level="project" />
  2339. <orderEntry type="library" name="Maven: io.springfox:springfox-spring-webflux:3.0.0" level="project" />
  2340. <orderEntry type="library" name="Maven: org.springframework.plugin:spring-plugin-core:2.0.0.RELEASE" level="project" />
  2341. <orderEntry type="library" name="Maven: org.springframework.plugin:spring-plugin-metadata:2.0.0.RELEASE" level="project" />
  2342. <orderEntry type="library" name="Maven: io.swagger:swagger-annotations:1.6.2" level="project" />
  2343. <orderEntry type="library" name="Maven: io.swagger:swagger-models:1.6.2" level="project" />
  2344. <orderEntry type="library" scope="RUNTIME" name="Maven: org.mapstruct:mapstruct:1.3.1.Final" level="project" />
  2345. <orderEntry type="library" name="Maven: io.springfox:springfox-swagger-ui:3.0.0" level="project" />
  2346. <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-amqp:2.6.6" level="project" />
  2347. <orderEntry type="library" name="Maven: org.springframework:spring-messaging:5.3.18" level="project" />
  2348. <orderEntry type="library" name="Maven: org.springframework:spring-beans:5.3.18" level="project" />
  2349. <orderEntry type="library" name="Maven: org.springframework.amqp:spring-rabbit:2.4.3" level="project" />
  2350. <orderEntry type="library" name="Maven: org.springframework.amqp:spring-amqp:2.4.3" level="project" />
  2351. <orderEntry type="library" name="Maven: org.springframework.retry:spring-retry:1.3.1" level="project" />
  2352. <orderEntry type="library" name="Maven: javax.annotation:javax.annotation-api:1.3.2" level="project" />
  2353. <orderEntry type="library" name="Maven: com.rabbitmq:amqp-client:5.13.1" level="project" />
  2354. <orderEntry type="library" name="Maven: org.springframework:spring-context:5.3.18" level="project" />
  2355. <orderEntry type="library" name="Maven: org.springframework:spring-tx:5.3.18" level="project" />
  2356. <orderEntry type="library" name="Maven: com.alibaba:fastjson:1.2.28" level="project" />
  2357. <orderEntry type="library" name="Maven: org.projectlombok:lombok:1.18.22" level="project" />
  2358. <orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter-bootstrap:3.1.1" level="project" />
  2359. <orderEntry type="library" name="Maven: org.springframework.cloud:spring-cloud-starter:3.1.1" level="project" />
  2360. <orderEntry type="library" name="Maven: org.springframework.security:spring-security-rsa:1.0.10.RELEASE" level="project" />
  2361. <orderEntry type="library" name="Maven: org.bouncycastle:bcpkix-jdk15on:1.68" level="project" />
  2362. <orderEntry type="library" name="Maven: org.bouncycastle:bcprov-jdk15on:1.68" level="project" />
  2363. </component>
  2364. </module>