02.uml 156 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <Diagram>
  3. <ID>MAVEN</ID>
  4. <OriginalElement>org.jeeplus:jeeplus-gencode-vue:8.0</OriginalElement>
  5. <nodes>
  6. <node x="8908.159134656296" y="1750.0">org.jeeplus:jeeplus-gencode-vue:8.0</node>
  7. <node x="8242.530894750218" y="1490.0">org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE</node>
  8. <node x="7616.2875" y="920.0">org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE</node>
  9. <node x="7675.120833333334" y="770.0">org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE</node>
  10. <node x="7957.3055932090065" y="560.0">org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE/ch.qos.logback:logback-classic:jar:1.2.3</node>
  11. <node x="7932.0555932090065" y="400.0">org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE/ch.qos.logback:logback-classic:jar:1.2.3/ch.qos.logback:logback-core:jar:1.2.3</node>
  12. <node x="8106.3055932090065" y="560.0">org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE/org.apache.logging.log4j:log4j-to-slf4j:jar:2.11.2</node>
  13. <node x="8091.0555932090065" y="400.0">org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE/org.apache.logging.log4j:log4j-to-slf4j:jar:2.11.2/org.apache.logging.log4j:log4j-api:jar:2.11.2</node>
  14. <node x="8627.788926542338" y="560.0">org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE/org.slf4j:jul-to-slf4j:jar:1.7.25</node>
  15. <node x="8178.8055932090065" y="80.0">org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE</node>
  16. <node x="8185.8055932090065" y="0.0">org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE/org.springframework:spring-jcl:jar:5.1.5.RELEASE</node>
  17. <node x="7557.120833333334" y="770.0">org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.yaml:snakeyaml:jar:1.23</node>
  18. <node x="8242.305593209006" y="320.0">org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE</node>
  19. <node x="8291.005593209005" y="210.0">org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE/org.springframework:spring-beans:jar:5.1.5.RELEASE</node>
  20. <node x="8278.864228083552" y="1400.0">org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.aspectj:aspectjweaver:jar:1.9.2</node>
  21. <node x="7708.030894750218" y="1400.0">org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE</node>
  22. <node x="8362.43892654234" y="1090.0">org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE</node>
  23. <node x="4825.538301322964" y="400.0">org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE/org.springframework:spring-context:jar:5.1.5.RELEASE</node>
  24. <node x="8969.659134656296" y="1490.0">org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE</node>
  25. <node x="8917.420833333334" y="1400.0">org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE</node>
  26. <node x="8947.02672808355" y="920.0">org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework.data:spring-data-keyvalue:jar:2.1.5.RELEASE</node>
  27. <node x="9010.33922808355" y="560.0">org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework.data:spring-data-keyvalue:jar:2.1.5.RELEASE/org.springframework.data:spring-data-commons:jar:2.1.5.RELEASE</node>
  28. <node x="8797.780894750218" y="770.0">org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework:spring-tx:jar:5.1.5.RELEASE</node>
  29. <node x="9281.31999731432" y="320.0">org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework:spring-oxm:jar:5.1.5.RELEASE</node>
  30. <node x="9464.205593209006" y="1400.0">org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE</node>
  31. <node x="9487.528330647654" y="400.0">org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-common:jar:4.1.33.Final</node>
  32. <node x="9512.94499731432" y="1090.0">org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-handler:jar:4.1.33.Final</node>
  33. <node x="9570.778330647654" y="560.0">org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-handler:jar:4.1.33.Final/io.netty:netty-buffer:jar:4.1.33.Final</node>
  34. <node x="9520.44499731432" y="920.0">org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-handler:jar:4.1.33.Final/io.netty:netty-codec:jar:4.1.33.Final</node>
  35. <node x="9650.44499731432" y="770.0">org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-transport:jar:4.1.33.Final</node>
  36. <node x="9725.94499731432" y="560.0">org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-transport:jar:4.1.33.Final/io.netty:netty-resolver:jar:4.1.33.Final</node>
  37. <node x="9357.31999731432" y="1090.0">org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.projectreactor:reactor-core:jar:3.2.6.RELEASE</node>
  38. <node x="9344.31999731432" y="920.0">org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.projectreactor:reactor-core:jar:3.2.6.RELEASE/org.reactivestreams:reactive-streams:jar:1.0.2</node>
  39. <node x="7995.530894750218" y="1490.0">org.springframework.boot:spring-boot-starter-freemarker:jar:2.1.3.RELEASE</node>
  40. <node x="8051.447561416885" y="1400.0">org.springframework.boot:spring-boot-starter-freemarker:jar:2.1.3.RELEASE/org.freemarker:freemarker:jar:2.3.28</node>
  41. <node x="7780.947561416885" y="1090.0">org.springframework.boot:spring-boot-starter-jdbc:jar:2.1.3.RELEASE</node>
  42. <node x="9202.33922808355" y="560.0">org.springframework.boot:spring-boot-starter-jdbc:jar:2.1.3.RELEASE/com.zaxxer:HikariCP:jar:3.2.0</node>
  43. <node x="7919.679166666667" y="920.0">org.springframework.boot:spring-boot-starter-jdbc:jar:2.1.3.RELEASE/org.springframework:spring-jdbc:jar:5.1.5.RELEASE</node>
  44. <node x="7205.064228083552" y="1490.0">org.mybatis.spring.boot:mybatis-spring-boot-starter:jar:1.3.2</node>
  45. <node x="7128.6805932090065" y="920.0">org.mybatis.spring.boot:mybatis-spring-boot-starter:jar:1.3.2/org.mybatis.spring.boot:mybatis-spring-boot-autoconfigure:jar:1.3.2</node>
  46. <node x="7146.514228083552" y="1400.0">org.mybatis.spring.boot:mybatis-spring-boot-starter:jar:1.3.2/org.mybatis:mybatis:jar:3.4.6</node>
  47. <node x="7267.014228083552" y="1400.0">org.mybatis.spring.boot:mybatis-spring-boot-starter:jar:1.3.2/org.mybatis:mybatis-spring:jar:1.3.2</node>
  48. <node x="4302.914228083551" y="1490.0">org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE</node>
  49. <node x="5297.0972598756725" y="1400.0">org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE/org.apache.tomcat.embed:tomcat-embed-el:jar:9.0.16</node>
  50. <node x="3973.3389265423393" y="1090.0">org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE/org.hibernate.validator:hibernate-validator:jar:6.0.14.Final</node>
  51. <node x="4108.854166666667" y="920.0">org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE/org.hibernate.validator:hibernate-validator:jar:6.0.14.Final/javax.validation:validation-api:jar:2.0.1.Final</node>
  52. <node x="2908.297259875673" y="920.0">org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE/org.hibernate.validator:hibernate-validator:jar:6.0.14.Final/com.fasterxml:classmate:jar:1.4.0</node>
  53. <node x="4636.247561416885" y="1400.0">org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE</node>
  54. <node x="5418.172259875673" y="1090.0">org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE</node>
  55. <node x="5133.538301322964" y="920.0">org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.core:jackson-databind:jar:2.9.8</node>
  56. <node x="5501.413301322964" y="920.0">org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.9.8</node>
  57. <node x="5671.830894750218" y="770.0">org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.9.8/com.fasterxml.jackson.core:jackson-databind:jar:2.9.9</node>
  58. <node x="5294.538301322964" y="920.0">org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.9.8</node>
  59. <node x="5510.830894750218" y="770.0">org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.9.8/com.fasterxml.jackson.core:jackson-databind:jar:2.9.9</node>
  60. <node x="5799.788301322964" y="920.0">org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.9.8</node>
  61. <node x="6012.788301322964" y="770.0">org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.9.8/com.fasterxml.jackson.core:jackson-databind:jar:2.9.9</node>
  62. <node x="4522.538301322964" y="920.0">org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-web:jar:5.1.5.RELEASE</node>
  63. <node x="4974.622561416885" y="1090.0">org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-webmvc:jar:5.1.5.RELEASE</node>
  64. <node x="4647.538301322964" y="320.0">org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-webmvc:jar:5.1.5.RELEASE/org.springframework:spring-expression:jar:5.1.5.RELEASE</node>
  65. <node x="4055.9142280835517" y="1490.0">org.springframework.boot:spring-boot-starter-websocket:jar:2.1.3.RELEASE</node>
  66. <node x="3791.547259875673" y="320.0">org.springframework.boot:spring-boot-starter-websocket:jar:2.1.3.RELEASE/org.springframework:spring-messaging:jar:5.1.5.RELEASE</node>
  67. <node x="4350.254666448418" y="1090.0">org.springframework.boot:spring-boot-starter-websocket:jar:2.1.3.RELEASE/org.springframework:spring-websocket:jar:5.1.5.RELEASE</node>
  68. <node x="6756.164228083551" y="1490.0">org.springframework.boot:spring-boot-starter-mail:jar:2.1.3.RELEASE</node>
  69. <node x="6742.580894750219" y="1400.0">org.springframework.boot:spring-boot-starter-mail:jar:2.1.3.RELEASE/com.sun.mail:javax.mail:jar:1.6.2</node>
  70. <node x="6742.080894750219" y="1090.0">org.springframework.boot:spring-boot-starter-mail:jar:2.1.3.RELEASE/com.sun.mail:javax.mail:jar:1.6.2/javax.activation:activation:jar:1.1</node>
  71. <node x="8236.272259875674" y="920.0">org.springframework.boot:spring-boot-devtools:jar:2.1.3.RELEASE</node>
  72. <node x="7363.722259875673" y="560.0">org.springframework.boot:spring-boot-devtools:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot:jar:2.1.3.RELEASE</node>
  73. <node x="7107.114228083552" y="770.0">org.springframework.boot:spring-boot-devtools:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-autoconfigure:jar:2.1.3.RELEASE</node>
  74. <node x="6389.830894750218" y="1490.0">org.springframework.boot:spring-boot-starter-tomcat:jar:2.1.3.RELEASE</node>
  75. <node x="6426.330894750218" y="770.0">org.springframework.boot:spring-boot-starter-tomcat:jar:2.1.3.RELEASE/javax.annotation:javax.annotation-api:jar:1.3.2</node>
  76. <node x="6476.830894750218" y="1090.0">org.springframework.boot:spring-boot-starter-tomcat:jar:2.1.3.RELEASE/org.apache.tomcat.embed:tomcat-embed-core:jar:9.0.16</node>
  77. <node x="6526.580894750218" y="1400.0">org.springframework.boot:spring-boot-starter-tomcat:jar:2.1.3.RELEASE/org.apache.tomcat.embed:tomcat-embed-websocket:jar:9.0.16</node>
  78. <node x="8847.659134656296" y="1490.0">com.microsoft.sqlserver:mssql-jdbc:jar:6.4.0.jre8</node>
  79. <node x="11899.644249781752" y="1490.0">mysql:mysql-connector-java:jar:8.0.15</node>
  80. <node x="11148.980593209006" y="1490.0">org.postgresql:postgresql:jar:42.2.5</node>
  81. <node x="6961.164228083551" y="1490.0">com.alibaba:druid-spring-boot-starter:jar:1.1.14</node>
  82. <node x="6915.247561416885" y="1400.0">com.alibaba:druid-spring-boot-starter:jar:1.1.14/com.alibaba:druid:jar:1.1.14</node>
  83. <node x="9233.31999731432" y="400.0">com.alibaba:druid-spring-boot-starter:jar:1.1.14/org.slf4j:slf4j-api:jar:1.7.25</node>
  84. <node x="11639.644249781752" y="1490.0">cglib:cglib:jar:3.1</node>
  85. <node x="11641.644249781752" y="1400.0">cglib:cglib:jar:3.1/org.ow2.asm:asm:jar:4.2</node>
  86. <node x="10140.673061198635" y="1490.0">javax.servlet.jsp:jsp-api:jar:2.1</node>
  87. <node x="4485.247561416885" y="1400.0">commons-dbcp:commons-dbcp:jar:1.4</node>
  88. <node x="4144.338926542339" y="1090.0">commons-dbcp:commons-dbcp:jar:1.4/commons-pool:commons-pool:jar:1.6</node>
  89. <node x="10382.24951923077" y="1090.0">org.apache.shiro:shiro-core:jar:1.4.1</node>
  90. <node x="10263.830593209006" y="560.0">org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-lang:jar:1.4.1</node>
  91. <node x="9977.858653887066" y="920.0">org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-cache:jar:1.4.1</node>
  92. <node x="10279.858653887066" y="920.0">org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-crypto-hash:jar:1.4.1</node>
  93. <node x="10196.858653887066" y="770.0">org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-crypto-hash:jar:1.4.1/org.apache.shiro:shiro-crypto-core:jar:1.4.1</node>
  94. <node x="10104.858653887066" y="920.0">org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-crypto-cipher:jar:1.4.1</node>
  95. <node x="10401.608653887066" y="770.0">org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-config-core:jar:1.4.1</node>
  96. <node x="10696.108653887066" y="920.0">org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-config-ogdl:jar:1.4.1</node>
  97. <node x="10689.608653887066" y="770.0">org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-config-ogdl:jar:1.4.1/commons-beanutils:commons-beanutils:jar:1.9.3</node>
  98. <node x="10564.608653887066" y="770.0">org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-event:jar:1.4.1</node>
  99. <node x="10316.858653887066" y="1490.0">org.apache.shiro:shiro-spring:jar:1.4.1</node>
  100. <node x="12088.644249781752" y="1490.0">org.apache.shiro:shiro-cas:jar:1.4.0</node>
  101. <node x="12109.644249781752" y="1400.0">org.apache.shiro:shiro-cas:jar:1.4.0/org.apache.shiro:shiro-web:jar:1.4.0</node>
  102. <node x="11962.644249781752" y="1400.0">org.apache.shiro:shiro-cas:jar:1.4.0/org.jasig.cas.client:cas-client-core:jar:3.2.2</node>
  103. <node x="10365.358653887066" y="1400.0">org.apache.shiro:shiro-web:jar:1.4.1</node>
  104. <node x="9895.44499731432" y="1090.0">org.apache.shiro:shiro-ehcache:jar:1.4.1</node>
  105. <node x="9866.94499731432" y="560.0">org.apache.shiro:shiro-ehcache:jar:1.4.1/net.sf.ehcache:ehcache-core:jar:2.6.11</node>
  106. <node x="12389.644249781752" y="1490.0">commons-io:commons-io:jar:2.4</node>
  107. <node x="5057.122561416885" y="1490.0">com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9</node>
  108. <node x="5262.797259875673" y="770.0">com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9/com.fasterxml.jackson.core:jackson-annotations:jar:2.9.0</node>
  109. <node x="5878.788301322964" y="770.0">com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9/com.fasterxml.jackson.core:jackson-core:jar:2.9.8</node>
  110. <node x="5108.122561416885" y="1400.0">com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9/com.fasterxml.jackson.core:jackson-databind:jar:2.9.9</node>
  111. <node x="12200.644249781752" y="1490.0">com.alibaba:fastjson:jar:1.2.45</node>
  112. <node x="11050.683477865303" y="1490.0">net.sf.dozer:dozer:jar:5.5.1</node>
  113. <node x="11160.331749781752" y="1400.0">net.sf.dozer:dozer:jar:5.5.1/commons-beanutils:commons-beanutils:jar:1.9.1</node>
  114. <node x="11155.331749781752" y="1090.0">net.sf.dozer:dozer:jar:5.5.1/commons-beanutils:commons-beanutils:jar:1.9.1/commons-collections:commons-collections:jar:3.2.1</node>
  115. <node x="11006.331749781752" y="1400.0">net.sf.dozer:dozer:jar:5.5.1/org.apache.commons:commons-lang3:jar:3.8.1</node>
  116. <node x="10939.831749781752" y="560.0">net.sf.dozer:dozer:jar:5.5.1/org.slf4j:jcl-over-slf4j:jar:1.7.25</node>
  117. <node x="10576.916185897437" y="1490.0">com.google.guava:guava:jar:20.0</node>
  118. <node x="11493.644249781752" y="1490.0">commons-lang:commons-lang:jar:2.6</node>
  119. <node x="8693.659134656296" y="1490.0">org.apache.commons:commons-lang3:jar:3.5</node>
  120. <node x="11353.644249781752" y="1490.0">net.sf.json-lib:json-lib:jar:jdk15:2.4</node>
  121. <node x="11369.644249781752" y="1400.0">net.sf.json-lib:json-lib:jar:jdk15:2.4/net.sf.ezmorph:ezmorph:jar:1.0.6</node>
  122. <node x="12304.644249781752" y="1490.0">com.mchange:c3p0:jar:0.9.2.1</node>
  123. <node x="12244.144249781752" y="1400.0">com.mchange:c3p0:jar:0.9.2.1/com.mchange:mchange-commons-java:jar:0.2.3.4</node>
  124. <node x="10667.916185897437" y="1490.0">com.google.code.maven-play-plugin.com.mchange:c3p0-oracle-thin-extras:jar:0.9.5</node>
  125. <node x="10726.416185897437" y="1400.0">com.google.code.maven-play-plugin.com.mchange:c3p0-oracle-thin-extras:jar:0.9.5/com.mchange:c3p0:jar:0.9.5</node>
  126. <node x="10447.858653887066" y="1490.0">dom4j:dom4j:jar:1.6</node>
  127. <node x="2730.038301322965" y="1490.0">org.hibernate:hibernate-ehcache:jar:5.2.12.Final</node>
  128. <node x="2758.1097598756724" y="920.0">org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.jboss.logging:jboss-logging:jar:3.3.2.Final</node>
  129. <node x="2979.7883013229643" y="1400.0">org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final</node>
  130. <node x="3582.547259875673" y="1090.0">org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/javax.persistence:javax.persistence-api:jar:2.2</node>
  131. <node x="3766.547259875673" y="1090.0">org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/org.javassist:javassist:jar:3.23.1-GA</node>
  132. <node x="3210.547259875673" y="1090.0">org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/net.bytebuddy:byte-buddy:jar:1.9.10</node>
  133. <node x="3034.547259875673" y="1090.0">org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/antlr:antlr:jar:2.7.7</node>
  134. <node x="3336.547259875673" y="1090.0">org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:jar:1.1.1.Final</node>
  135. <node x="3116.547259875673" y="1090.0">org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/org.jboss:jandex:jar:2.0.5.Final</node>
  136. <node x="2275.9620326029462" y="1090.0">org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/javax.activation:javax.activation-api:jar:1.2.0</node>
  137. <node x="2942.547259875673" y="1090.0">org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/org.dom4j:dom4j:jar:2.1.1</node>
  138. <node x="2633.8597598756724" y="1090.0">org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/org.hibernate.common:hibernate-commons-annotations:jar:5.0.4.Final</node>
  139. <node x="2762.038301322965" y="1400.0">org.hibernate:hibernate-ehcache:jar:5.2.12.Final/net.sf.ehcache:ehcache:jar:2.10.6</node>
  140. <node x="4972.538301322964" y="920.0">com.fasterxml.jackson.core:jackson-databind:jar:2.9.9</node>
  141. <node x="6116.288301322964" y="1490.0">com.fasterxml.jackson.datatype:jackson-datatype-hibernate5:jar:2.9.9</node>
  142. <node x="6198.288301322964" y="1400.0">com.fasterxml.jackson.datatype:jackson-datatype-hibernate5:jar:2.9.9/javax.transaction:jta:jar:1.1</node>
  143. <node x="6037.288301322964" y="1400.0">com.fasterxml.jackson.datatype:jackson-datatype-hibernate5:jar:2.9.9/com.fasterxml.jackson.core:jackson-databind:jar:2.9.9</node>
  144. <node x="1625.0189521627044" y="1490.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0</node>
  145. <node x="2376.5036992696123" y="1400.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2</node>
  146. <node x="2141.9620326029462" y="1090.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2</node>
  147. <node x="2108.9620326029462" y="920.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2/com.baomidou:mybatis-plus-extension:jar:3.4.2</node>
  148. <node x="2046.9620326029462" y="770.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2/com.baomidou:mybatis-plus-extension:jar:3.4.2/com.baomidou:mybatis-plus-core:jar:3.4.2</node>
  149. <node x="2356.183167477492" y="560.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2/com.baomidou:mybatis-plus-extension:jar:3.4.2/com.baomidou:mybatis-plus-core:jar:3.4.2/com.baomidou:mybatis-plus-annotation:jar:3.4.2</node>
  150. <node x="2047.2120326029462" y="560.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2/com.baomidou:mybatis-plus-extension:jar:3.4.2/com.baomidou:mybatis-plus-core:jar:3.4.2/com.github.jsqlparser:jsqlparser:jar:4.0</node>
  151. <node x="1945.2120326029462" y="560.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2/com.baomidou:mybatis-plus-extension:jar:3.4.2/com.baomidou:mybatis-plus-core:jar:3.4.2/org.mybatis:mybatis:jar:3.5.6</node>
  152. <node x="2213.9620326029462" y="770.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2/com.baomidou:mybatis-plus-extension:jar:3.4.2/org.mybatis:mybatis-spring:jar:2.0.5</node>
  153. <node x="1710.7189521627051" y="1400.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0</node>
  154. <node x="1965.9620326029462" y="1090.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-beanutils:commons-beanutils:jar:1.7.0</node>
  155. <node x="188.0" y="1090.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-betwixt:commons-betwixt:jar:0.8</node>
  156. <node x="166.0" y="920.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-betwixt:commons-betwixt:jar:0.8/commons-beanutils:commons-beanutils-core:jar:1.7.0</node>
  157. <node x="99.5" y="770.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-betwixt:commons-betwixt:jar:0.8/commons-beanutils:commons-beanutils-core:jar:1.7.0/commons-logging:commons-logging:jar:1.0</node>
  158. <node x="265.5" y="770.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-betwixt:commons-betwixt:jar:0.8/commons-beanutils:commons-beanutils-core:jar:1.7.0/commons-collections:commons-collections:jar:2.0</node>
  159. <node x="1467.9620326029462" y="1090.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-codec:commons-codec:jar:1.11</node>
  160. <node x="968.9620326029462" y="1090.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-collections:commons-collections:jar:3.1</node>
  161. <node x="1624.9620326029462" y="1090.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-dbcp:commons-dbcp:jar:1.2.1</node>
  162. <node x="741.9620326029462" y="920.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-digester:commons-digester:jar:1.7</node>
  163. <node x="803.5" y="770.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-digester:commons-digester:jar:1.7/commons-beanutils:commons-beanutils:jar:1.6</node>
  164. <node x="637.5" y="770.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-digester:commons-digester:jar:1.7/commons-logging:commons-logging:jar:1.0.4</node>
  165. <node x="451.5" y="770.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-digester:commons-digester:jar:1.7/commons-collections:commons-collections:jar:2.1</node>
  166. <node x="1242.1831674774921" y="770.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-digester:commons-digester:jar:1.7/xml-apis:xml-apis:jar:1.4.01</node>
  167. <node x="1154.9620326029462" y="1090.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-lang:commons-lang:jar:2.1</node>
  168. <node x="1775.9620326029462" y="1090.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-logging:commons-logging-api:jar:1.0.4</node>
  169. <node x="0.0" y="920.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-logging:commons-logging:jar:1.0.4</node>
  170. <node x="1375.9620326029462" y="1090.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/dom4j:dom4j:jar:1.6.1</node>
  171. <node x="572.25" y="1090.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/junit:junit:jar:4.12</node>
  172. <node x="540.75" y="920.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/junit:junit:jar:4.12/org.hamcrest:hamcrest-core:jar:1.3</node>
  173. <node x="864.9620326029462" y="1090.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/stax:stax-api:jar:1.0.1</node>
  174. <node x="1300.9620326029462" y="1090.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/oro:oro:jar:2.0.8</node>
  175. <node x="1495.7189521627051" y="1400.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/javax.xml.bind:jaxb-api:jar:2.3.1</node>
  176. <node x="1598.7189521627051" y="1400.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.sun.xml.bind:jaxb-core:jar:2.3.0.1</node>
  177. <node x="1385.7189521627051" y="1400.0">org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.sun.xml.bind:jaxb-impl:jar:2.3.0.1</node>
  178. <node x="11724.644249781752" y="1490.0">jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3</node>
  179. <node x="11720.644249781752" y="1400.0">jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3/jakarta.activation:jakarta.activation-api:jar:1.2.2</node>
  180. </nodes>
  181. <notes />
  182. <edges>
  183. <edge source="com.google.code.maven-play-plugin.com.mchange:c3p0-oracle-thin-extras:jar:0.9.5" target="com.google.code.maven-play-plugin.com.mchange:c3p0-oracle-thin-extras:jar:0.9.5/com.mchange:c3p0:jar:0.9.5">
  184. <point x="0.0" y="-15.0" />
  185. <point x="0.0" y="15.0" />
  186. </edge>
  187. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-handler:jar:4.1.33.Final/io.netty:netty-codec:jar:4.1.33.Final" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-handler:jar:4.1.33.Final/io.netty:netty-buffer:jar:4.1.33.Final">
  188. <point x="0.0" y="-15.0" />
  189. <point x="9574.94499731432" y="900.0" />
  190. <point x="9562.278330647654" y="900.0" />
  191. <point x="9562.278330647654" y="750.0" />
  192. <point x="9589.111663980988" y="750.0" />
  193. <point x="-36.66666666666697" y="15.0" />
  194. </edge>
  195. <edge source="org.springframework.boot:spring-boot-starter-tomcat:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-tomcat:jar:2.1.3.RELEASE/org.apache.tomcat.embed:tomcat-embed-websocket:jar:9.0.16">
  196. <point x="76.5" y="-15.0" />
  197. <point x="6568.330894750218" y="1470.0" />
  198. <point x="6624.580894750218" y="1470.0" />
  199. <point x="0.0" y="15.0" />
  200. </edge>
  201. <edge source="org.apache.shiro:shiro-cas:jar:1.4.0" target="org.apache.shiro:shiro-cas:jar:1.4.0/org.apache.shiro:shiro-web:jar:1.4.0">
  202. <point x="23.0" y="-15.0" />
  203. <point x="0.0" y="15.0" />
  204. </edge>
  205. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE">
  206. <point x="-22.550000000000182" y="-15.0" />
  207. <point x="8967.609134656297" y="1590.0" />
  208. <point x="7806.530894750218" y="1590.0" />
  209. <point x="0.0" y="15.0" />
  210. </edge>
  211. <edge source="org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE/org.hibernate.validator:hibernate-validator:jar:6.0.14.Final">
  212. <point x="-73.33333333333303" y="-15.0" />
  213. <point x="4339.580894750219" y="1450.0" />
  214. <point x="4259.997561416885" y="1450.0" />
  215. <point x="4259.997561416885" y="1250.0" />
  216. <point x="4011.0889265423393" y="1250.0" />
  217. <point x="-37.75" y="15.0" />
  218. </edge>
  219. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-transport:jar:4.1.33.Final">
  220. <point x="40.875" y="-15.0" />
  221. <point x="9559.580593209006" y="1380.0" />
  222. <point x="9726.44499731432" y="1380.0" />
  223. <point x="9726.44499731432" y="900.0" />
  224. <point x="9758.778330647654" y="900.0" />
  225. <point x="43.333333333333485" y="15.0" />
  226. </edge>
  227. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE/ch.qos.logback:logback-classic:jar:1.2.3" target="com.alibaba:druid-spring-boot-starter:jar:1.1.14/org.slf4j:slf4j-api:jar:1.7.25">
  228. <point x="32.25" y="-15.0" />
  229. <point x="8054.0555932090065" y="500.0" />
  230. <point x="9243.012305006629" y="500.0" />
  231. <point x="-32.30769230769238" y="15.0" />
  232. </edge>
  233. <edge source="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final" target="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/org.javassist:javassist:jar:3.23.1-GA">
  234. <point x="56.81818181818198" y="-15.0" />
  235. <point x="3099.1064831411463" y="1250.0" />
  236. <point x="3810.047259875673" y="1250.0" />
  237. <point x="0.0" y="15.0" />
  238. </edge>
  239. <edge source="org.springframework.boot:spring-boot-starter-websocket:jar:2.1.3.RELEASE/org.springframework:spring-websocket:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE">
  240. <point x="-48.33333333333394" y="-15.0" />
  241. <point x="4374.421333115084" y="1070.0" />
  242. <point x="4334.172259875673" y="1070.0" />
  243. <point x="4334.172259875673" y="140.0" />
  244. <point x="8189.405593209007" y="140.0" />
  245. <point x="-42.399999999999636" y="15.0" />
  246. </edge>
  247. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-digester:commons-digester:jar:1.7" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-digester:commons-digester:jar:1.7/commons-collections:commons-collections:jar:2.1">
  248. <point x="-56.25" y="-15.0" />
  249. <point x="760.7120326029462" y="900.0" />
  250. <point x="534.5" y="900.0" />
  251. <point x="0.0" y="15.0" />
  252. </edge>
  253. <edge source="cglib:cglib:jar:3.1" target="cglib:cglib:jar:3.1/org.ow2.asm:asm:jar:4.2">
  254. <point x="0.0" y="-15.0" />
  255. <point x="0.0" y="15.0" />
  256. </edge>
  257. <edge source="org.mybatis.spring.boot:mybatis-spring-boot-starter:jar:1.3.2" target="org.mybatis.spring.boot:mybatis-spring-boot-starter:jar:1.3.2/org.mybatis:mybatis-spring:jar:1.3.2">
  258. <point x="0.0" y="-15.0" />
  259. <point x="7309.564228083552" y="1470.0" />
  260. <point x="7330.514228083552" y="1470.0" />
  261. <point x="0.0" y="15.0" />
  262. </edge>
  263. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0" target="commons-dbcp:commons-dbcp:jar:1.4/commons-pool:commons-pool:jar:1.6">
  264. <point x="36.67857142857156" y="-15.0" />
  265. <point x="1786.8975235912767" y="1260.0" />
  266. <point x="4176.088926542339" y="1260.0" />
  267. <point x="-31.75" y="15.0" />
  268. </edge>
  269. <edge source="org.springframework.boot:spring-boot-starter-mail:jar:2.1.3.RELEASE/com.sun.mail:javax.mail:jar:1.6.2" target="org.springframework.boot:spring-boot-starter-mail:jar:2.1.3.RELEASE/com.sun.mail:javax.mail:jar:1.6.2/javax.activation:activation:jar:1.1">
  270. <point x="0.0" y="-15.0" />
  271. <point x="0.0" y="15.0" />
  272. </edge>
  273. <edge source="com.alibaba:druid-spring-boot-starter:jar:1.1.14" target="com.alibaba:druid-spring-boot-starter:jar:1.1.14/org.slf4j:slf4j-api:jar:1.7.25">
  274. <point x="0.0" y="-15.0" />
  275. <point x="7057.664228083551" y="1470.0" />
  276. <point x="7047.247561416885" y="1470.0" />
  277. <point x="7047.247561416885" y="490.0" />
  278. <point x="9236.55076654509" y="490.0" />
  279. <point x="-38.769230769230944" y="15.0" />
  280. </edge>
  281. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE">
  282. <point x="-59.16666666666674" y="-15.0" />
  283. <point x="8929.254166666668" y="1370.0" />
  284. <point x="8520.81392654234" y="1370.0" />
  285. <point x="67.875" y="15.0" />
  286. </edge>
  287. <edge source="net.sf.dozer:dozer:jar:5.5.1" target="net.sf.dozer:dozer:jar:5.5.1/org.apache.commons:commons-lang3:jar:3.8.1">
  288. <point x="8.625" y="-15.0" />
  289. <point x="11093.808477865303" y="1450.0" />
  290. <point x="11073.331749781752" y="1450.0" />
  291. <point x="0.0" y="15.0" />
  292. </edge>
  293. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-betwixt:commons-betwixt:jar:0.8" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-betwixt:commons-betwixt:jar:0.8/commons-beanutils:commons-beanutils-core:jar:1.7.0">
  294. <point x="0.0" y="-15.0" />
  295. <point x="0.0" y="15.0" />
  296. </edge>
  297. <edge source="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-config-core:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-lang:jar:1.4.1">
  298. <point x="0.0" y="-15.0" />
  299. <point x="10473.108653887066" y="740.0" />
  300. <point x="10318.393093209006" y="740.0" />
  301. <point x="6.0625" y="15.0" />
  302. </edge>
  303. <edge source="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-lang:jar:1.4.1" target="com.alibaba:druid-spring-boot-starter:jar:1.1.14/org.slf4j:slf4j-api:jar:1.7.25">
  304. <point x="0.0" y="-15.0" />
  305. <point x="10312.330593209006" y="500.0" />
  306. <point x="9294.704612698937" y="500.0" />
  307. <point x="19.384615384615472" y="15.0" />
  308. </edge>
  309. <edge source="net.sf.dozer:dozer:jar:5.5.1/commons-beanutils:commons-beanutils:jar:1.9.1" target="net.sf.dozer:dozer:jar:5.5.1/commons-beanutils:commons-beanutils:jar:1.9.1/commons-collections:commons-collections:jar:3.2.1">
  310. <point x="0.0" y="-15.0" />
  311. <point x="0.0" y="15.0" />
  312. </edge>
  313. <edge source="org.hibernate:hibernate-ehcache:jar:5.2.12.Final" target="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/net.sf.ehcache:ehcache:jar:2.10.6">
  314. <point x="0.0" y="-15.0" />
  315. <point x="0.0" y="15.0" />
  316. </edge>
  317. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework.data:spring-data-keyvalue:jar:2.1.5.RELEASE/org.springframework.data:spring-data-commons:jar:2.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE">
  318. <point x="0.0" y="-15.0" />
  319. <point x="9096.33922808355" y="480.0" />
  320. <point x="9073.172561416884" y="480.0" />
  321. <point x="9073.172561416884" y="140.0" />
  322. <point x="8274.205593209006" y="140.0" />
  323. <point x="42.399999999999636" y="15.0" />
  324. </edge>
  325. <edge source="org.apache.shiro:shiro-core:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-crypto-hash:jar:1.4.1">
  326. <point x="-14.0" y="-15.0" />
  327. <point x="10417.24951923077" y="1050.0" />
  328. <point x="10353.358653887066" y="1050.0" />
  329. <point x="0.0" y="15.0" />
  330. </edge>
  331. <edge source="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-crypto-hash:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-lang:jar:1.4.1">
  332. <point x="36.75" y="-15.0" />
  333. <point x="10390.108653887066" y="900.0" />
  334. <point x="10376.608653887066" y="900.0" />
  335. <point x="10376.608653887066" y="750.0" />
  336. <point x="10306.268093209006" y="750.0" />
  337. <point x="-6.0625" y="15.0" />
  338. </edge>
  339. <edge source="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE">
  340. <point x="60.333333333333485" y="-15.0" />
  341. <point x="8513.272259875674" y="1070.0" />
  342. <point x="8463.93892654234" y="1070.0" />
  343. <point x="8463.93892654234" y="700.0" />
  344. <point x="8759.288926542338" y="700.0" />
  345. <point x="8759.288926542338" y="160.0" />
  346. <point x="8260.072259875673" y="160.0" />
  347. <point x="28.266666666666424" y="15.0" />
  348. </edge>
  349. <edge source="com.fasterxml.jackson.core:jackson-databind:jar:2.9.9" target="com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9/com.fasterxml.jackson.core:jackson-core:jar:2.9.8">
  350. <point x="35.25" y="-15.0" />
  351. <point x="5078.288301322964" y="850.0" />
  352. <point x="5888.288301322964" y="850.0" />
  353. <point x="-47.5" y="15.0" />
  354. </edge>
  355. <edge source="org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE">
  356. <point x="0.0" y="-15.0" />
  357. <point x="4412.914228083551" y="1450.0" />
  358. <point x="4381.747561416885" y="1450.0" />
  359. <point x="4381.747561416885" y="1280.0" />
  360. <point x="5615.672259875673" y="1280.0" />
  361. <point x="5615.672259875673" y="1030.0" />
  362. <point x="7639.5375" y="1030.0" />
  363. <point x="-54.25" y="15.0" />
  364. </edge>
  365. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE">
  366. <point x="-35.5" y="-15.0" />
  367. <point x="8952.920833333334" y="1360.0" />
  368. <point x="8642.772259875674" y="1360.0" />
  369. <point x="8642.772259875674" y="720.0" />
  370. <point x="8822.205593209006" y="720.0" />
  371. <point x="8822.205593209006" y="370.0" />
  372. <point x="8331.555593209006" y="370.0" />
  373. <point x="38.25" y="15.0" />
  374. </edge>
  375. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE">
  376. <point x="-61.33333333333303" y="-15.0" />
  377. <point x="8273.197561416884" y="1470.0" />
  378. <point x="8226.864228083552" y="1470.0" />
  379. <point x="8226.864228083552" y="1340.0" />
  380. <point x="8259.280894750218" y="1340.0" />
  381. <point x="8259.280894750218" y="1040.0" />
  382. <point x="7748.0375" y="1040.0" />
  383. <point x="54.25" y="15.0" />
  384. </edge>
  385. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-handler:jar:4.1.33.Final/io.netty:netty-codec:jar:4.1.33.Final" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-common:jar:4.1.33.Final">
  386. <point x="-36.333333333333485" y="-15.0" />
  387. <point x="9538.611663980988" y="900.0" />
  388. <point x="9529.778330647654" y="900.0" />
  389. <point x="9529.778330647654" y="540.0" />
  390. <point x="9539.611663980988" y="540.0" />
  391. <point x="-10.41666666666697" y="15.0" />
  392. </edge>
  393. <edge source="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE">
  394. <point x="49.25" y="-15.0" />
  395. <point x="7855.780894750218" y="1360.0" />
  396. <point x="8430.31392654234" y="1360.0" />
  397. <point x="-22.625" y="15.0" />
  398. </edge>
  399. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework.data:spring-data-keyvalue:jar:2.1.5.RELEASE/org.springframework.data:spring-data-commons:jar:2.1.5.RELEASE" target="com.alibaba:druid-spring-boot-starter:jar:1.1.14/org.slf4j:slf4j-api:jar:1.7.25">
  400. <point x="57.33333333333326" y="-15.0" />
  401. <point x="9153.672561416884" y="530.0" />
  402. <point x="9262.396920391244" y="530.0" />
  403. <point x="-12.923076923076906" y="15.0" />
  404. </edge>
  405. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.apache.commons:commons-lang3:jar:3.5">
  406. <point x="-6.149999999999636" y="-15.0" />
  407. <point x="8984.009134656297" y="1550.0" />
  408. <point x="8760.659134656296" y="1550.0" />
  409. <point x="0.0" y="15.0" />
  410. </edge>
  411. <edge source="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/org.hibernate.common:hibernate-commons-annotations:jar:5.0.4.Final" target="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.jboss.logging:jboss-logging:jar:3.3.2.Final">
  412. <point x="0.0" y="-15.0" />
  413. <point x="2752.8597598756724" y="1070.0" />
  414. <point x="2802.7347598756724" y="1070.0" />
  415. <point x="-14.875" y="15.0" />
  416. </edge>
  417. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework.data:spring-data-keyvalue:jar:2.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework.data:spring-data-keyvalue:jar:2.1.5.RELEASE/org.springframework.data:spring-data-commons:jar:2.1.5.RELEASE">
  418. <point x="20.625" y="-15.0" />
  419. <point x="9050.15172808355" y="890.0" />
  420. <point x="9096.33922808355" y="890.0" />
  421. <point x="0.0" y="15.0" />
  422. </edge>
  423. <edge source="org.springframework.boot:spring-boot-starter-websocket:jar:2.1.3.RELEASE/org.springframework:spring-websocket:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE/org.springframework:spring-context:jar:5.1.5.RELEASE">
  424. <point x="0.0" y="-15.0" />
  425. <point x="4422.754666448418" y="540.0" />
  426. <point x="4838.138301322964" y="540.0" />
  427. <point x="-50.399999999999636" y="15.0" />
  428. </edge>
  429. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE/org.springframework:spring-beans:jar:5.1.5.RELEASE">
  430. <point x="25.5" y="-15.0" />
  431. <point x="8318.805593209006" y="300.0" />
  432. <point x="8343.205593209006" y="300.0" />
  433. <point x="-5.800000000000182" y="15.0" />
  434. </edge>
  435. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2/com.baomidou:mybatis-plus-extension:jar:3.4.2">
  436. <point x="0.0" y="-15.0" />
  437. <point x="0.0" y="15.0" />
  438. </edge>
  439. <edge source="jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3" target="jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3/jakarta.activation:jakarta.activation-api:jar:1.2.2">
  440. <point x="0.0" y="-15.0" />
  441. <point x="0.0" y="15.0" />
  442. </edge>
  443. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.projectreactor:reactor-core:jar:3.2.6.RELEASE" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.projectreactor:reactor-core:jar:3.2.6.RELEASE/org.reactivestreams:reactive-streams:jar:1.0.2">
  444. <point x="0.0" y="-15.0" />
  445. <point x="0.0" y="15.0" />
  446. </edge>
  447. <edge source="org.apache.shiro:shiro-core:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-crypto-cipher:jar:1.4.1">
  448. <point x="-28.0" y="-15.0" />
  449. <point x="10403.24951923077" y="1060.0" />
  450. <point x="10182.358653887066" y="1060.0" />
  451. <point x="0.0" y="15.0" />
  452. </edge>
  453. <edge source="org.mybatis.spring.boot:mybatis-spring-boot-starter:jar:1.3.2" target="org.springframework.boot:spring-boot-starter-jdbc:jar:2.1.3.RELEASE">
  454. <point x="83.60000000000036" y="-15.0" />
  455. <point x="7393.164228083552" y="1470.0" />
  456. <point x="7686.530894750218" y="1470.0" />
  457. <point x="7686.530894750218" y="1330.0" />
  458. <point x="7874.447561416885" y="1330.0" />
  459. <point x="0.0" y="15.0" />
  460. </edge>
  461. <edge source="org.apache.shiro:shiro-core:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-config-core:jar:1.4.1">
  462. <point x="0.0" y="-15.0" />
  463. <point x="10431.24951923077" y="1070.0" />
  464. <point x="10437.358653887066" y="1070.0" />
  465. <point x="-35.75" y="15.0" />
  466. </edge>
  467. <edge source="org.apache.shiro:shiro-ehcache:jar:1.4.1" target="org.apache.shiro:shiro-ehcache:jar:1.4.1/net.sf.ehcache:ehcache-core:jar:2.6.11">
  468. <point x="-30.5" y="-15.0" />
  469. <point x="0.0" y="15.0" />
  470. </edge>
  471. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE">
  472. <point x="-74.66666666666652" y="-15.0" />
  473. <point x="9006.99246798963" y="1470.0" />
  474. <point x="8614.272259875674" y="1470.0" />
  475. <point x="8614.272259875674" y="1030.0" />
  476. <point x="7763.5375" y="1030.0" />
  477. <point x="69.75" y="15.0" />
  478. </edge>
  479. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/stax:stax-api:jar:1.0.1">
  480. <point x="-14.107142857143117" y="-15.0" />
  481. <point x="1736.111809305562" y="1200.0" />
  482. <point x="906.9620326029462" y="1200.0" />
  483. <point x="0.0" y="15.0" />
  484. </edge>
  485. <edge source="org.springframework.boot:spring-boot-starter-jdbc:jar:2.1.3.RELEASE/org.springframework:spring-jdbc:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE/org.springframework:spring-beans:jar:5.1.5.RELEASE">
  486. <point x="-35.0" y="-15.0" />
  487. <point x="7937.179166666667" y="900.0" />
  488. <point x="7909.479166666668" y="900.0" />
  489. <point x="7909.479166666668" y="660.0" />
  490. <point x="8354.805593209006" y="660.0" />
  491. <point x="5.800000000000182" y="15.0" />
  492. </edge>
  493. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-handler:jar:4.1.33.Final" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-common:jar:4.1.33.Final">
  494. <point x="-44.25" y="-15.0" />
  495. <point x="9527.69499731432" y="1070.0" />
  496. <point x="9509.94499731432" y="1070.0" />
  497. <point x="9509.94499731432" y="540.0" />
  498. <point x="9518.778330647654" y="540.0" />
  499. <point x="-31.25" y="15.0" />
  500. </edge>
  501. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-handler:jar:4.1.33.Final/io.netty:netty-buffer:jar:4.1.33.Final" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-common:jar:4.1.33.Final">
  502. <point x="0.0" y="-15.0" />
  503. <point x="9625.778330647654" y="540.0" />
  504. <point x="9560.44499731432" y="540.0" />
  505. <point x="10.416666666666742" y="15.0" />
  506. </edge>
  507. <edge source="org.springframework.boot:spring-boot-devtools:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE/org.springframework:spring-context:jar:5.1.5.RELEASE">
  508. <point x="27.0" y="-15.0" />
  509. <point x="7444.722259875673" y="470.0" />
  510. <point x="4888.538301322964" y="470.0" />
  511. <point x="0.0" y="15.0" />
  512. </edge>
  513. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="commons-io:commons-io:jar:2.4">
  514. <point x="79.94999999999982" y="-15.0" />
  515. <point x="9070.109134656297" y="1730.0" />
  516. <point x="12445.144249781752" y="1730.0" />
  517. <point x="0.0" y="15.0" />
  518. </edge>
  519. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.postgresql:postgresql:jar:42.2.5">
  520. <point x="43.05000000000018" y="-15.0" />
  521. <point x="9033.209134656297" y="1640.0" />
  522. <point x="11198.980593209006" y="1640.0" />
  523. <point x="0.0" y="15.0" />
  524. </edge>
  525. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.apache.shiro:shiro-core:jar:1.4.1">
  526. <point x="26.649999999999636" y="-15.0" />
  527. <point x="9016.809134656296" y="1600.0" />
  528. <point x="10530.358653887066" y="1600.0" />
  529. <point x="10530.358653887066" y="1380.0" />
  530. <point x="10463.916185897437" y="1380.0" />
  531. <point x="32.666666666666515" y="15.0" />
  532. </edge>
  533. <edge source="org.springframework.boot:spring-boot-starter-websocket:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-websocket:jar:2.1.3.RELEASE/org.springframework:spring-messaging:jar:5.1.5.RELEASE">
  534. <point x="-75.66666666666606" y="-15.0" />
  535. <point x="4093.7475614168857" y="1470.0" />
  536. <point x="3864.047259875673" y="1470.0" />
  537. <point x="0.0" y="15.0" />
  538. </edge>
  539. <edge source="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final" target="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:jar:1.1.1.Final">
  540. <point x="34.09090909090992" y="-15.0" />
  541. <point x="3076.3792104138743" y="1230.0" />
  542. <point x="3449.547259875673" y="1230.0" />
  543. <point x="0.0" y="15.0" />
  544. </edge>
  545. <edge source="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-crypto-hash:jar:1.4.1/org.apache.shiro:shiro-crypto-core:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-lang:jar:1.4.1">
  546. <point x="0.0" y="-15.0" />
  547. <point x="10268.858653887066" y="750.0" />
  548. <point x="10294.143093209006" y="750.0" />
  549. <point x="-18.1875" y="15.0" />
  550. </edge>
  551. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE">
  552. <point x="-14.350000000000364" y="-15.0" />
  553. <point x="8975.809134656296" y="1570.0" />
  554. <point x="8334.530894750218" y="1570.0" />
  555. <point x="0.0" y="15.0" />
  556. </edge>
  557. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="mysql:mysql-connector-java:jar:8.0.15">
  558. <point x="63.55000000000018" y="-15.0" />
  559. <point x="9053.709134656297" y="1690.0" />
  560. <point x="11984.144249781752" y="1690.0" />
  561. <point x="0.0" y="15.0" />
  562. </edge>
  563. <edge source="org.mybatis.spring.boot:mybatis-spring-boot-starter:jar:1.3.2" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE">
  564. <point x="41.80000000000018" y="-15.0" />
  565. <point x="7351.364228083552" y="1460.0" />
  566. <point x="7473.764228083552" y="1460.0" />
  567. <point x="7473.764228083552" y="1060.0" />
  568. <point x="7686.0375" y="1060.0" />
  569. <point x="-7.75" y="15.0" />
  570. </edge>
  571. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="net.sf.json-lib:json-lib:jar:jdk15:2.4">
  572. <point x="47.149999999999636" y="-15.0" />
  573. <point x="9037.309134656296" y="1650.0" />
  574. <point x="11413.644249781752" y="1650.0" />
  575. <point x="0.0" y="15.0" />
  576. </edge>
  577. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-webmvc:jar:5.1.5.RELEASE">
  578. <point x="0.0" y="-15.0" />
  579. <point x="4729.247561416885" y="1260.0" />
  580. <point x="5039.122561416885" y="1260.0" />
  581. <point x="0.0" y="15.0" />
  582. </edge>
  583. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE">
  584. <point x="74.66666666666652" y="-15.0" />
  585. <point x="9156.325801322964" y="1470.0" />
  586. <point x="9518.705593209006" y="1470.0" />
  587. <point x="0.0" y="15.0" />
  588. </edge>
  589. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE">
  590. <point x="64.58333333333348" y="-15.0" />
  591. <point x="7758.370833333334" y="900.0" />
  592. <point x="7892.620833333334" y="900.0" />
  593. <point x="7892.620833333334" y="650.0" />
  594. <point x="8231.805593209006" y="650.0" />
  595. <point x="0.0" y="15.0" />
  596. </edge>
  597. <edge source="org.hibernate:hibernate-ehcache:jar:5.2.12.Final" target="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final">
  598. <point x="49.66666666666606" y="-15.0" />
  599. <point x="2854.204967989631" y="1470.0" />
  600. <point x="3042.2883013229643" y="1470.0" />
  601. <point x="0.0" y="15.0" />
  602. </edge>
  603. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="com.fasterxml.jackson.core:jackson-databind:jar:2.9.9">
  604. <point x="-51.25" y="-15.0" />
  605. <point x="8938.909134656296" y="1660.0" />
  606. <point x="5473.122561416885" y="1660.0" />
  607. <point x="5473.122561416885" y="1240.0" />
  608. <point x="4869.713926542339" y="1240.0" />
  609. <point x="4869.713926542339" y="1070.0" />
  610. <point x="5043.038301322964" y="1070.0" />
  611. <point x="0.0" y="15.0" />
  612. </edge>
  613. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-webmvc:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE">
  614. <point x="-32.25" y="-15.0" />
  615. <point x="5006.872561416885" y="1040.0" />
  616. <point x="4637.038301322964" y="1040.0" />
  617. <point x="4637.038301322964" y="160.0" />
  618. <point x="8203.53892654234" y="160.0" />
  619. <point x="-28.266666666666424" y="15.0" />
  620. </edge>
  621. <edge source="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-config-ogdl:jar:1.4.1" target="com.alibaba:druid-spring-boot-starter:jar:1.1.14/org.slf4j:slf4j-api:jar:1.7.25">
  622. <point x="57.19999999999982" y="-15.0" />
  623. <point x="10824.808653887067" y="900.0" />
  624. <point x="10875.952403887066" y="900.0" />
  625. <point x="10875.952403887066" y="490.0" />
  626. <point x="9301.166151160474" y="490.0" />
  627. <point x="25.84615384615381" y="15.0" />
  628. </edge>
  629. <edge source="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE/org.springframework:spring-context:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE">
  630. <point x="-15.75" y="-15.0" />
  631. <point x="4872.788301322964" y="380.0" />
  632. <point x="4883.038301322964" y="380.0" />
  633. <point x="4883.038301322964" y="190.0" />
  634. <point x="8224.73892654234" y="190.0" />
  635. <point x="-7.066666666666606" y="15.0" />
  636. </edge>
  637. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE">
  638. <point x="38.75" y="-15.0" />
  639. <point x="7732.5375" y="890.0" />
  640. <point x="7778.620833333334" y="890.0" />
  641. <point x="0.0" y="15.0" />
  642. </edge>
  643. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-webmvc:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE/org.springframework:spring-context:jar:5.1.5.RELEASE">
  644. <point x="32.25" y="-15.0" />
  645. <point x="5071.372561416885" y="1010.0" />
  646. <point x="4863.338301322964" y="1010.0" />
  647. <point x="-25.199999999999818" y="15.0" />
  648. </edge>
  649. <edge source="org.apache.shiro:shiro-ehcache:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-cache:jar:1.4.1">
  650. <point x="30.5" y="-15.0" />
  651. <point x="9986.94499731432" y="1070.0" />
  652. <point x="10004.608653887066" y="1070.0" />
  653. <point x="-26.75" y="15.0" />
  654. </edge>
  655. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.springframework.boot:spring-boot-starter-websocket:jar:2.1.3.RELEASE">
  656. <point x="-71.75" y="-15.0" />
  657. <point x="8918.409134656296" y="1710.0" />
  658. <point x="4169.414228083551" y="1710.0" />
  659. <point x="0.0" y="15.0" />
  660. </edge>
  661. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework.data:spring-data-keyvalue:jar:2.1.5.RELEASE">
  662. <point x="11.833333333333258" y="-15.0" />
  663. <point x="9000.254166666668" y="1360.0" />
  664. <point x="9029.52672808355" y="1360.0" />
  665. <point x="0.0" y="15.0" />
  666. </edge>
  667. <edge source="org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE/org.apache.tomcat.embed:tomcat-embed-el:jar:9.0.16">
  668. <point x="73.33333333333303" y="-15.0" />
  669. <point x="4486.247561416885" y="1470.0" />
  670. <point x="5332.0972598756725" y="1470.0" />
  671. <point x="-35.0" y="15.0" />
  672. </edge>
  673. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/junit:junit:jar:4.12" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/junit:junit:jar:4.12/org.hamcrest:hamcrest-core:jar:1.3">
  674. <point x="0.0" y="-15.0" />
  675. <point x="0.0" y="15.0" />
  676. </edge>
  677. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/oro:oro:jar:2.0.8">
  678. <point x="2.8214285714284415" y="-15.0" />
  679. <point x="1753.0403807341336" y="1170.0" />
  680. <point x="1328.4620326029462" y="1170.0" />
  681. <point x="0.0" y="15.0" />
  682. </edge>
  683. <edge source="org.apache.shiro:shiro-core:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-cache:jar:1.4.1">
  684. <point x="-42.0" y="-15.0" />
  685. <point x="10389.24951923077" y="1070.0" />
  686. <point x="10058.108653887066" y="1070.0" />
  687. <point x="26.75" y="15.0" />
  688. </edge>
  689. <edge source="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-config-ogdl:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-lang:jar:1.4.1">
  690. <point x="28.59999999999991" y="-15.0" />
  691. <point x="10796.208653887066" y="890.0" />
  692. <point x="10856.108653887066" y="890.0" />
  693. <point x="10856.108653887066" y="720.0" />
  694. <point x="10342.643093209006" y="720.0" />
  695. <point x="30.3125" y="15.0" />
  696. </edge>
  697. <edge source="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-crypto-cipher:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-crypto-hash:jar:1.4.1/org.apache.shiro:shiro-crypto-core:jar:1.4.1">
  698. <point x="38.75" y="-15.0" />
  699. <point x="10221.108653887066" y="900.0" />
  700. <point x="10232.858653887066" y="900.0" />
  701. <point x="-36.0" y="15.0" />
  702. </edge>
  703. <edge source="org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE/org.hibernate.validator:hibernate-validator:jar:6.0.14.Final" target="org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE/org.hibernate.validator:hibernate-validator:jar:6.0.14.Final/javax.validation:validation-api:jar:2.0.1.Final">
  704. <point x="50.33333333333394" y="-15.0" />
  705. <point x="4099.172259875673" y="1070.0" />
  706. <point x="4167.354166666667" y="1070.0" />
  707. <point x="0.0" y="15.0" />
  708. </edge>
  709. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-web:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE/org.springframework:spring-beans:jar:5.1.5.RELEASE">
  710. <point x="26.0" y="-15.0" />
  711. <point x="4600.538301322964" y="880.0" />
  712. <point x="4580.038301322964" y="880.0" />
  713. <point x="4580.038301322964" y="270.0" />
  714. <point x="8308.405593209005" y="270.0" />
  715. <point x="-40.600000000000364" y="15.0" />
  716. </edge>
  717. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.springframework.boot:spring-boot-devtools:jar:2.1.3.RELEASE">
  718. <point x="-10.25" y="-15.0" />
  719. <point x="8979.909134656296" y="1560.0" />
  720. <point x="8437.030894750218" y="1560.0" />
  721. <point x="8437.030894750218" y="1330.0" />
  722. <point x="8248.280894750218" y="1330.0" />
  723. <point x="8248.280894750218" y="1070.0" />
  724. <point x="8319.772259875674" y="1070.0" />
  725. <point x="0.0" y="15.0" />
  726. </edge>
  727. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.projectreactor:reactor-core:jar:3.2.6.RELEASE">
  728. <point x="-40.875" y="-15.0" />
  729. <point x="9477.830593209006" y="1380.0" />
  730. <point x="9412.81999731432" y="1380.0" />
  731. <point x="0.0" y="15.0" />
  732. </edge>
  733. <edge source="org.springframework.boot:spring-boot-starter-jdbc:jar:2.1.3.RELEASE/com.zaxxer:HikariCP:jar:3.2.0" target="com.alibaba:druid-spring-boot-starter:jar:1.1.14/org.slf4j:slf4j-api:jar:1.7.25">
  734. <point x="0.0" y="-15.0" />
  735. <point x="9245.33922808355" y="540.0" />
  736. <point x="9268.858458852781" y="540.0" />
  737. <point x="-6.4615384615385665" y="15.0" />
  738. </edge>
  739. <edge source="org.apache.shiro:shiro-spring:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1">
  740. <point x="-27.5" y="-15.0" />
  741. <point x="10344.358653887066" y="1380.0" />
  742. <point x="10398.582852564105" y="1380.0" />
  743. <point x="-32.666666666666515" y="15.0" />
  744. </edge>
  745. <edge source="com.fasterxml.jackson.datatype:jackson-datatype-hibernate5:jar:2.9.9" target="com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9/com.fasterxml.jackson.core:jackson-core:jar:2.9.8">
  746. <point x="71.0" y="-15.0" />
  747. <point x="6293.788301322964" y="1470.0" />
  748. <point x="6351.080894750218" y="1470.0" />
  749. <point x="6351.080894750218" y="860.0" />
  750. <point x="5983.288301322964" y="860.0" />
  751. <point x="47.5" y="15.0" />
  752. </edge>
  753. <edge source="org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE/org.hibernate.validator:hibernate-validator:jar:6.0.14.Final" target="org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE/org.hibernate.validator:hibernate-validator:jar:6.0.14.Final/com.fasterxml:classmate:jar:1.4.0">
  754. <point x="0.0" y="-15.0" />
  755. <point x="4048.8389265423393" y="1050.0" />
  756. <point x="2979.547259875673" y="1050.0" />
  757. <point x="23.75" y="15.0" />
  758. </edge>
  759. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-beanutils:commons-beanutils:jar:1.7.0">
  760. <point x="31.035714285714675" y="-15.0" />
  761. <point x="1781.2546664484198" y="1240.0" />
  762. <point x="2043.9620326029462" y="1240.0" />
  763. <point x="0.0" y="15.0" />
  764. </edge>
  765. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-digester:commons-digester:jar:1.7">
  766. <point x="-19.75" y="-15.0" />
  767. <point x="1730.4689521627051" y="1210.0" />
  768. <point x="854.4620326029462" y="1210.0" />
  769. <point x="37.5" y="15.0" />
  770. </edge>
  771. <edge source="net.sf.dozer:dozer:jar:5.5.1/org.slf4j:jcl-over-slf4j:jar:1.7.25" target="com.alibaba:druid-spring-boot-starter:jar:1.1.14/org.slf4j:slf4j-api:jar:1.7.25">
  772. <point x="0.0" y="-15.0" />
  773. <point x="10995.831749781752" y="470.0" />
  774. <point x="9314.08922808355" y="470.0" />
  775. <point x="38.76923076923072" y="15.0" />
  776. </edge>
  777. <edge source="org.springframework.boot:spring-boot-starter-freemarker:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-freemarker:jar:2.1.3.RELEASE/org.freemarker:freemarker:jar:2.3.28">
  778. <point x="0.0" y="-15.0" />
  779. <point x="8109.030894750218" y="1470.0" />
  780. <point x="8101.447561416885" y="1470.0" />
  781. <point x="0.0" y="15.0" />
  782. </edge>
  783. <edge source="org.springframework.boot:spring-boot-starter-websocket:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-websocket:jar:2.1.3.RELEASE/org.springframework:spring-websocket:jar:5.1.5.RELEASE">
  784. <point x="0.0" y="-15.0" />
  785. <point x="4169.414228083551" y="1460.0" />
  786. <point x="4070.0472598756733" y="1460.0" />
  787. <point x="4070.0472598756733" y="1270.0" />
  788. <point x="4422.754666448418" y="1270.0" />
  789. <point x="0.0" y="15.0" />
  790. </edge>
  791. <edge source="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final" target="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/javax.persistence:javax.persistence-api:jar:2.2">
  792. <point x="45.45454545454595" y="-15.0" />
  793. <point x="3087.7428467775103" y="1240.0" />
  794. <point x="3664.547259875673" y="1240.0" />
  795. <point x="0.0" y="15.0" />
  796. </edge>
  797. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework.data:spring-data-keyvalue:jar:2.1.5.RELEASE/org.springframework.data:spring-data-commons:jar:2.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE/org.springframework:spring-beans:jar:5.1.5.RELEASE">
  798. <point x="-57.33333333333326" y="-15.0" />
  799. <point x="9039.005894750218" y="480.0" />
  800. <point x="9024.922561416884" y="480.0" />
  801. <point x="9024.922561416884" y="280.0" />
  802. <point x="8389.605593209006" y="280.0" />
  803. <point x="40.600000000000364" y="15.0" />
  804. </edge>
  805. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-lang:commons-lang:jar:2.1">
  806. <point x="-2.8214285714284415" y="-15.0" />
  807. <point x="1747.3975235912767" y="1180.0" />
  808. <point x="1217.9620326029462" y="1180.0" />
  809. <point x="0.0" y="15.0" />
  810. </edge>
  811. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.9.8">
  812. <point x="15.58333333333394" y="-15.0" />
  813. <point x="5527.255593209007" y="1000.0" />
  814. <point x="5587.913301322964" y="1000.0" />
  815. <point x="0.0" y="15.0" />
  816. </edge>
  817. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2">
  818. <point x="86.39999999999964" y="-15.0" />
  819. <point x="1819.418952162704" y="1470.0" />
  820. <point x="2474.5036992696123" y="1470.0" />
  821. <point x="0.0" y="15.0" />
  822. </edge>
  823. <edge source="org.springframework.boot:spring-boot-starter-jdbc:jar:2.1.3.RELEASE/org.springframework:spring-jdbc:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework:spring-tx:jar:5.1.5.RELEASE">
  824. <point x="35.0" y="-15.0" />
  825. <point x="8007.179166666667" y="900.0" />
  826. <point x="8812.947561416886" y="900.0" />
  827. <point x="-30.333333333333258" y="15.0" />
  828. </edge>
  829. <edge source="org.springframework.boot:spring-boot-starter-mail:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE">
  830. <point x="0.0" y="-15.0" />
  831. <point x="6848.664228083551" y="1470.0" />
  832. <point x="6846.580894750219" y="1470.0" />
  833. <point x="6846.580894750219" y="1050.0" />
  834. <point x="7670.5375" y="1050.0" />
  835. <point x="-23.25" y="15.0" />
  836. </edge>
  837. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9">
  838. <point x="-55.350000000000364" y="-15.0" />
  839. <point x="8934.809134656296" y="1670.0" />
  840. <point x="5178.622561416885" y="1670.0" />
  841. <point x="0.0" y="15.0" />
  842. </edge>
  843. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-transport:jar:4.1.33.Final" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-handler:jar:4.1.33.Final/io.netty:netty-buffer:jar:4.1.33.Final">
  844. <point x="-43.33333333333326" y="-15.0" />
  845. <point x="9672.111663980988" y="750.0" />
  846. <point x="9662.44499731432" y="750.0" />
  847. <point x="36.66666666666674" y="15.0" />
  848. </edge>
  849. <edge source="org.springframework.boot:spring-boot-starter-websocket:jar:2.1.3.RELEASE/org.springframework:spring-messaging:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE">
  850. <point x="-36.25" y="-15.0" />
  851. <point x="3827.797259875673" y="130.0" />
  852. <point x="8182.33892654234" y="130.0" />
  853. <point x="-49.46666666666624" y="15.0" />
  854. </edge>
  855. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.9.8" target="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.9.8/com.fasterxml.jackson.core:jackson-databind:jar:2.9.9">
  856. <point x="0.0" y="-15.0" />
  857. <point x="5386.538301322964" y="830.0" />
  858. <point x="5581.330894750218" y="830.0" />
  859. <point x="0.0" y="15.0" />
  860. </edge>
  861. <edge source="org.springframework.boot:spring-boot-starter-freemarker:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE">
  862. <point x="-75.66666666666652" y="-15.0" />
  863. <point x="8033.364228083552" y="1470.0" />
  864. <point x="8040.947561416885" y="1470.0" />
  865. <point x="8040.947561416885" y="1050.0" />
  866. <point x="7732.5375" y="1050.0" />
  867. <point x="38.75" y="15.0" />
  868. </edge>
  869. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-codec:commons-codec:jar:1.11">
  870. <point x="14.107142857143117" y="-15.0" />
  871. <point x="1764.3260950198483" y="1150.0" />
  872. <point x="1536.4620326029462" y="1150.0" />
  873. <point x="0.0" y="15.0" />
  874. </edge>
  875. <edge source="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-crypto-cipher:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-lang:jar:1.4.1">
  876. <point x="-38.75" y="-15.0" />
  877. <point x="10143.608653887066" y="900.0" />
  878. <point x="10159.108653887066" y="900.0" />
  879. <point x="10159.108653887066" y="740.0" />
  880. <point x="10282.018093209006" y="740.0" />
  881. <point x="-30.3125" y="15.0" />
  882. </edge>
  883. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.apache.shiro:shiro-ehcache:jar:1.4.1">
  884. <point x="6.149999999999636" y="-15.0" />
  885. <point x="8996.309134656296" y="1550.0" />
  886. <point x="9956.44499731432" y="1550.0" />
  887. <point x="0.0" y="15.0" />
  888. </edge>
  889. <edge source="org.springframework.boot:spring-boot-devtools:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE">
  890. <point x="-27.0" y="-15.0" />
  891. <point x="7390.722259875673" y="480.0" />
  892. <point x="4815.038301322964" y="480.0" />
  893. <point x="4815.038301322964" y="180.0" />
  894. <point x="8217.672259875673" y="180.0" />
  895. <point x="-14.133333333333212" y="15.0" />
  896. </edge>
  897. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-betwixt:commons-betwixt:jar:0.8/commons-beanutils:commons-beanutils-core:jar:1.7.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-betwixt:commons-betwixt:jar:0.8/commons-beanutils:commons-beanutils-core:jar:1.7.0/commons-logging:commons-logging:jar:1.0">
  898. <point x="-47.25" y="-15.0" />
  899. <point x="213.25" y="900.0" />
  900. <point x="172.5" y="900.0" />
  901. <point x="0.0" y="15.0" />
  902. </edge>
  903. <edge source="org.springframework.boot:spring-boot-starter-tomcat:jar:2.1.3.RELEASE/org.apache.tomcat.embed:tomcat-embed-websocket:jar:9.0.16" target="org.springframework.boot:spring-boot-starter-tomcat:jar:2.1.3.RELEASE/org.apache.tomcat.embed:tomcat-embed-core:jar:9.0.16">
  904. <point x="0.0" y="-15.0" />
  905. <point x="6624.580894750218" y="1310.0" />
  906. <point x="6594.580894750218" y="1310.0" />
  907. <point x="39.25" y="15.0" />
  908. </edge>
  909. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-digester:commons-digester:jar:1.7" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-digester:commons-digester:jar:1.7/commons-logging:commons-logging:jar:1.0.4">
  910. <point x="-18.75" y="-15.0" />
  911. <point x="798.2120326029462" y="890.0" />
  912. <point x="710.5" y="890.0" />
  913. <point x="0.0" y="15.0" />
  914. </edge>
  915. <edge source="org.springframework.boot:spring-boot-starter-jdbc:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-jdbc:jar:2.1.3.RELEASE/org.springframework:spring-jdbc:jar:5.1.5.RELEASE">
  916. <point x="0.0" y="-15.0" />
  917. <point x="7874.447561416885" y="1060.0" />
  918. <point x="7972.179166666667" y="1060.0" />
  919. <point x="0.0" y="15.0" />
  920. </edge>
  921. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.sun.xml.bind:jaxb-core:jar:2.3.0.1">
  922. <point x="0.0" y="-15.0" />
  923. <point x="1733.0189521627044" y="1450.0" />
  924. <point x="1644.7189521627051" y="1450.0" />
  925. <point x="0.0" y="15.0" />
  926. </edge>
  927. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework:spring-oxm:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE/org.springframework:spring-beans:jar:5.1.5.RELEASE">
  928. <point x="-26.25" y="-15.0" />
  929. <point x="9307.56999731432" y="270.0" />
  930. <point x="8401.205593209006" y="270.0" />
  931. <point x="52.19999999999982" y="15.0" />
  932. </edge>
  933. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="com.mchange:c3p0:jar:0.9.2.1">
  934. <point x="75.85000000000036" y="-15.0" />
  935. <point x="9066.009134656297" y="1720.0" />
  936. <point x="12337.144249781752" y="1720.0" />
  937. <point x="0.0" y="15.0" />
  938. </edge>
  939. <edge source="org.springframework.boot:spring-boot-starter-jdbc:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE">
  940. <point x="-62.333333333333485" y="-15.0" />
  941. <point x="7812.114228083552" y="1070.0" />
  942. <point x="7717.0375" y="1070.0" />
  943. <point x="23.25" y="15.0" />
  944. </edge>
  945. <edge source="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final" target="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/antlr:antlr:jar:2.7.7">
  946. <point x="0.0" y="-15.0" />
  947. <point x="3042.2883013229643" y="1200.0" />
  948. <point x="3065.547259875673" y="1200.0" />
  949. <point x="0.0" y="15.0" />
  950. </edge>
  951. <edge source="org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE/org.hibernate.validator:hibernate-validator:jar:6.0.14.Final" target="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.jboss.logging:jboss-logging:jar:3.3.2.Final">
  952. <point x="-50.33333333333394" y="-15.0" />
  953. <point x="3998.5055932090054" y="1060.0" />
  954. <point x="2862.2347598756724" y="1060.0" />
  955. <point x="44.625" y="15.0" />
  956. </edge>
  957. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-tomcat:jar:2.1.3.RELEASE/javax.annotation:javax.annotation-api:jar:1.3.2">
  958. <point x="-64.58333333333348" y="-15.0" />
  959. <point x="7629.204166666666" y="880.0" />
  960. <point x="6546.330894750218" y="880.0" />
  961. <point x="40.0" y="15.0" />
  962. </edge>
  963. <edge source="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE/org.springframework:spring-context:jar:5.1.5.RELEASE">
  964. <point x="-60.333333333333485" y="-15.0" />
  965. <point x="8392.605593209006" y="1070.0" />
  966. <point x="8423.264727865302" y="1070.0" />
  967. <point x="8423.264727865302" y="610.0" />
  968. <point x="7946.8055932090065" y="610.0" />
  969. <point x="7946.8055932090065" y="460.0" />
  970. <point x="4913.738301322964" y="460.0" />
  971. <point x="25.199999999999818" y="15.0" />
  972. </edge>
  973. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.9.8" target="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.9.8/com.fasterxml.jackson.core:jackson-databind:jar:2.9.9">
  974. <point x="-43.25" y="-15.0" />
  975. <point x="5544.663301322964" y="840.0" />
  976. <point x="5742.330894750218" y="840.0" />
  977. <point x="0.0" y="15.0" />
  978. </edge>
  979. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE">
  980. <point x="61.33333333333303" y="-15.0" />
  981. <point x="8395.864228083552" y="1470.0" />
  982. <point x="8410.364228083552" y="1470.0" />
  983. <point x="8410.364228083552" y="1380.0" />
  984. <point x="8556.295833333334" y="1380.0" />
  985. <point x="8556.295833333334" y="710.0" />
  986. <point x="8785.122259875672" y="710.0" />
  987. <point x="8785.122259875672" y="380.0" />
  988. <point x="8306.055593209006" y="380.0" />
  989. <point x="12.75" y="15.0" />
  990. </edge>
  991. <edge source="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE">
  992. <point x="-49.25" y="-15.0" />
  993. <point x="7757.280894750218" y="1310.0" />
  994. <point x="7520.139228083552" y="1310.0" />
  995. <point x="7520.139228083552" y="1070.0" />
  996. <point x="7701.5375" y="1070.0" />
  997. <point x="7.75" y="15.0" />
  998. </edge>
  999. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework.data:spring-data-keyvalue:jar:2.1.5.RELEASE" target="com.alibaba:druid-spring-boot-starter:jar:1.1.14/org.slf4j:slf4j-api:jar:1.7.25">
  1000. <point x="61.875" y="-15.0" />
  1001. <point x="9091.40172808355" y="900.0" />
  1002. <point x="9298.83922808355" y="900.0" />
  1003. <point x="9298.83922808355" y="540.0" />
  1004. <point x="9275.31999731432" y="540.0" />
  1005. <point x="0.0" y="15.0" />
  1006. </edge>
  1007. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="cglib:cglib:jar:3.1">
  1008. <point x="55.350000000000364" y="-15.0" />
  1009. <point x="9045.509134656297" y="1670.0" />
  1010. <point x="11671.144249781752" y="1670.0" />
  1011. <point x="0.0" y="15.0" />
  1012. </edge>
  1013. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE/org.hibernate.validator:hibernate-validator:jar:6.0.14.Final">
  1014. <point x="-74.39999999999964" y="-15.0" />
  1015. <point x="4654.847561416886" y="1230.0" />
  1016. <point x="4086.5889265423393" y="1230.0" />
  1017. <point x="37.75" y="15.0" />
  1018. </edge>
  1019. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-handler:jar:4.1.33.Final" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-handler:jar:4.1.33.Final/io.netty:netty-buffer:jar:4.1.33.Final">
  1020. <point x="14.75" y="-15.0" />
  1021. <point x="9586.69499731432" y="1060.0" />
  1022. <point x="9639.94499731432" y="1060.0" />
  1023. <point x="9639.94499731432" y="750.0" />
  1024. <point x="9625.778330647654" y="750.0" />
  1025. <point x="0.0" y="15.0" />
  1026. </edge>
  1027. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-transport:jar:4.1.33.Final/io.netty:netty-resolver:jar:4.1.33.Final" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-common:jar:4.1.33.Final">
  1028. <point x="0.0" y="-15.0" />
  1029. <point x="9786.44499731432" y="520.0" />
  1030. <point x="9602.111663980988" y="520.0" />
  1031. <point x="52.08333333333326" y="15.0" />
  1032. </edge>
  1033. <edge source="org.springframework.boot:spring-boot-starter-websocket:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE">
  1034. <point x="75.66666666666606" y="-15.0" />
  1035. <point x="4245.080894750217" y="1460.0" />
  1036. <point x="4682.747561416885" y="1460.0" />
  1037. <point x="-46.5" y="15.0" />
  1038. </edge>
  1039. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-web:jar:5.1.5.RELEASE">
  1040. <point x="-37.20000000000073" y="-15.0" />
  1041. <point x="4692.0475614168845" y="1250.0" />
  1042. <point x="4947.747561416885" y="1250.0" />
  1043. <point x="4947.747561416885" y="1060.0" />
  1044. <point x="4561.538301322964" y="1060.0" />
  1045. <point x="-13.0" y="15.0" />
  1046. </edge>
  1047. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="net.sf.dozer:dozer:jar:5.5.1">
  1048. <point x="38.94999999999982" y="-15.0" />
  1049. <point x="9029.109134656297" y="1630.0" />
  1050. <point x="11085.183477865303" y="1630.0" />
  1051. <point x="0.0" y="15.0" />
  1052. </edge>
  1053. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-webmvc:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE">
  1054. <point x="53.75" y="-15.0" />
  1055. <point x="5092.872561416885" y="1000.0" />
  1056. <point x="4962.038301322964" y="1000.0" />
  1057. <point x="4962.038301322964" y="380.0" />
  1058. <point x="8280.555593209006" y="380.0" />
  1059. <point x="-12.75" y="15.0" />
  1060. </edge>
  1061. <edge source="com.fasterxml.jackson.datatype:jackson-datatype-hibernate5:jar:2.9.9" target="com.fasterxml.jackson.datatype:jackson-datatype-hibernate5:jar:2.9.9/javax.transaction:jta:jar:1.1">
  1062. <point x="0.0" y="-15.0" />
  1063. <point x="0.0" y="15.0" />
  1064. </edge>
  1065. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="commons-lang:commons-lang:jar:2.6">
  1066. <point x="51.25" y="-15.0" />
  1067. <point x="9041.409134656296" y="1660.0" />
  1068. <point x="11556.644249781752" y="1660.0" />
  1069. <point x="0.0" y="15.0" />
  1070. </edge>
  1071. <edge source="net.sf.dozer:dozer:jar:5.5.1" target="com.alibaba:druid-spring-boot-starter:jar:1.1.14/org.slf4j:slf4j-api:jar:1.7.25">
  1072. <point x="-25.875" y="-15.0" />
  1073. <point x="11059.308477865303" y="1470.0" />
  1074. <point x="10929.331749781752" y="1470.0" />
  1075. <point x="10929.331749781752" y="480.0" />
  1076. <point x="9307.627689622013" y="480.0" />
  1077. <point x="32.30769230769238" y="15.0" />
  1078. </edge>
  1079. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework:spring-oxm:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE">
  1080. <point x="26.25" y="-15.0" />
  1081. <point x="9360.06999731432" y="130.0" />
  1082. <point x="8281.272259875674" y="130.0" />
  1083. <point x="49.46666666666624" y="15.0" />
  1084. </edge>
  1085. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE/org.springframework:spring-beans:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE">
  1086. <point x="0.0" y="-15.0" />
  1087. <point x="8349.005593209005" y="180.0" />
  1088. <point x="8245.93892654234" y="180.0" />
  1089. <point x="14.133333333333212" y="15.0" />
  1090. </edge>
  1091. <edge source="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-crypto-hash:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-crypto-hash:jar:1.4.1/org.apache.shiro:shiro-crypto-core:jar:1.4.1">
  1092. <point x="-36.75" y="-15.0" />
  1093. <point x="10316.608653887066" y="900.0" />
  1094. <point x="10304.858653887066" y="900.0" />
  1095. <point x="36.0" y="15.0" />
  1096. </edge>
  1097. <edge source="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final" target="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/org.jboss:jandex:jar:2.0.5.Final">
  1098. <point x="11.363636363636033" y="-15.0" />
  1099. <point x="3053.6519376866004" y="1210.0" />
  1100. <point x="3153.547259875673" y="1210.0" />
  1101. <point x="0.0" y="15.0" />
  1102. </edge>
  1103. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE/org.slf4j:jul-to-slf4j:jar:1.7.25">
  1104. <point x="69.0" y="-15.0" />
  1105. <point x="7847.620833333334" y="680.0" />
  1106. <point x="8677.288926542338" y="680.0" />
  1107. <point x="0.0" y="15.0" />
  1108. </edge>
  1109. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.hibernate:hibernate-ehcache:jar:5.2.12.Final">
  1110. <point x="-75.85000000000036" y="-15.0" />
  1111. <point x="8914.309134656296" y="1720.0" />
  1112. <point x="2804.538301322965" y="1720.0" />
  1113. <point x="0.0" y="15.0" />
  1114. </edge>
  1115. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.apache.shiro:shiro-web:jar:1.4.1">
  1116. <point x="18.449999999999818" y="-15.0" />
  1117. <point x="9008.609134656297" y="1580.0" />
  1118. <point x="10437.358653887066" y="1580.0" />
  1119. <point x="24.0" y="15.0" />
  1120. </edge>
  1121. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="com.microsoft.sqlserver:mssql-jdbc:jar:6.4.0.jre8">
  1122. <point x="-2.050000000000182" y="-15.0" />
  1123. <point x="8988.109134656297" y="1540.0" />
  1124. <point x="8898.659134656296" y="1540.0" />
  1125. <point x="0.0" y="15.0" />
  1126. </edge>
  1127. <edge source="com.fasterxml.jackson.datatype:jackson-datatype-hibernate5:jar:2.9.9" target="com.fasterxml.jackson.datatype:jackson-datatype-hibernate5:jar:2.9.9/com.fasterxml.jackson.core:jackson-databind:jar:2.9.9">
  1128. <point x="-71.0" y="-15.0" />
  1129. <point x="6151.788301322964" y="1470.0" />
  1130. <point x="6107.788301322964" y="1470.0" />
  1131. <point x="0.0" y="15.0" />
  1132. </edge>
  1133. <edge source="org.apache.shiro:shiro-web:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1">
  1134. <point x="0.0" y="-15.0" />
  1135. <point x="10413.358653887066" y="1380.0" />
  1136. <point x="10431.24951923077" y="1380.0" />
  1137. <point x="0.0" y="15.0" />
  1138. </edge>
  1139. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-devtools:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-autoconfigure:jar:2.1.3.RELEASE">
  1140. <point x="-38.75" y="-15.0" />
  1141. <point x="7655.0375" y="870.0" />
  1142. <point x="7247.814228083551" y="870.0" />
  1143. <point x="40.19999999999982" y="15.0" />
  1144. </edge>
  1145. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-logging:commons-logging:jar:1.0.4">
  1146. <point x="-36.67857142857156" y="-15.0" />
  1147. <point x="1713.5403807341336" y="1240.0" />
  1148. <point x="36.5" y="1240.0" />
  1149. <point x="-36.5" y="15.0" />
  1150. </edge>
  1151. <edge source="org.springframework.boot:spring-boot-starter-mail:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE">
  1152. <point x="61.666666666666515" y="-15.0" />
  1153. <point x="6910.330894750218" y="1470.0" />
  1154. <point x="6888.788301322964" y="1470.0" />
  1155. <point x="6888.788301322964" y="1350.0" />
  1156. <point x="8385.06392654234" y="1350.0" />
  1157. <point x="-67.875" y="15.0" />
  1158. </edge>
  1159. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2" target="org.springframework.boot:spring-boot-starter-jdbc:jar:2.1.3.RELEASE">
  1160. <point x="65.33333333333303" y="-15.0" />
  1161. <point x="2539.8370326029453" y="1320.0" />
  1162. <point x="7812.114228083552" y="1320.0" />
  1163. <point x="-62.333333333333485" y="15.0" />
  1164. </edge>
  1165. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE">
  1166. <point x="74.39999999999964" y="-15.0" />
  1167. <point x="4803.647561416885" y="1290.0" />
  1168. <point x="5626.672259875673" y="1290.0" />
  1169. <point x="5626.672259875673" y="1040.0" />
  1170. <point x="7655.0375" y="1040.0" />
  1171. <point x="-38.75" y="15.0" />
  1172. </edge>
  1173. <edge source="com.alibaba:druid-spring-boot-starter:jar:1.1.14" target="org.springframework.boot:spring-boot-devtools:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-autoconfigure:jar:2.1.3.RELEASE">
  1174. <point x="64.33333333333303" y="-15.0" />
  1175. <point x="7121.997561416885" y="1470.0" />
  1176. <point x="7087.81392654234" y="1470.0" />
  1177. <point x="7087.81392654234" y="900.0" />
  1178. <point x="7167.414228083551" y="900.0" />
  1179. <point x="-40.19999999999982" y="15.0" />
  1180. </edge>
  1181. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-webmvc:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-webmvc:jar:5.1.5.RELEASE/org.springframework:spring-expression:jar:5.1.5.RELEASE">
  1182. <point x="-10.75" y="-15.0" />
  1183. <point x="5028.372561416885" y="1030.0" />
  1184. <point x="4684.038301322964" y="1030.0" />
  1185. <point x="-36.5" y="15.0" />
  1186. </edge>
  1187. <edge source="org.springframework.boot:spring-boot-devtools:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-autoconfigure:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-devtools:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot:jar:2.1.3.RELEASE">
  1188. <point x="0.0" y="-15.0" />
  1189. <point x="7207.614228083552" y="750.0" />
  1190. <point x="7381.722259875673" y="750.0" />
  1191. <point x="-36.0" y="15.0" />
  1192. </edge>
  1193. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/dom4j:dom4j:jar:1.6.1">
  1194. <point x="8.464285714285325" y="-15.0" />
  1195. <point x="1758.6832378769905" y="1160.0" />
  1196. <point x="1411.9620326029462" y="1160.0" />
  1197. <point x="0.0" y="15.0" />
  1198. </edge>
  1199. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-common:jar:4.1.33.Final">
  1200. <point x="-13.625" y="-15.0" />
  1201. <point x="9505.080593209006" y="1380.0" />
  1202. <point x="9491.81999731432" y="1380.0" />
  1203. <point x="9491.81999731432" y="540.0" />
  1204. <point x="9497.94499731432" y="540.0" />
  1205. <point x="-52.08333333333303" y="15.0" />
  1206. </edge>
  1207. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-betwixt:commons-betwixt:jar:0.8/commons-beanutils:commons-beanutils-core:jar:1.7.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-betwixt:commons-betwixt:jar:0.8/commons-beanutils:commons-beanutils-core:jar:1.7.0/commons-collections:commons-collections:jar:2.0">
  1208. <point x="47.25" y="-15.0" />
  1209. <point x="307.75" y="900.0" />
  1210. <point x="348.5" y="900.0" />
  1211. <point x="0.0" y="15.0" />
  1212. </edge>
  1213. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="javax.servlet.jsp:jsp-api:jar:2.1">
  1214. <point x="10.25" y="-15.0" />
  1215. <point x="9000.409134656296" y="1560.0" />
  1216. <point x="10178.673061198635" y="1560.0" />
  1217. <point x="0.0" y="15.0" />
  1218. </edge>
  1219. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.9.8">
  1220. <point x="-15.58333333333394" y="-15.0" />
  1221. <point x="5496.088926542339" y="970.0" />
  1222. <point x="5386.538301322964" y="970.0" />
  1223. <point x="0.0" y="15.0" />
  1224. </edge>
  1225. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.9.8" target="com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9/com.fasterxml.jackson.core:jackson-core:jar:2.9.8">
  1226. <point x="61.33333333333394" y="-15.0" />
  1227. <point x="5447.871634656298" y="860.0" />
  1228. <point x="5907.288301322964" y="860.0" />
  1229. <point x="-28.5" y="15.0" />
  1230. </edge>
  1231. <edge source="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE/org.springframework:spring-context:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE">
  1232. <point x="47.25" y="-15.0" />
  1233. <point x="4935.788301322964" y="370.0" />
  1234. <point x="8255.055593209006" y="370.0" />
  1235. <point x="-38.25" y="15.0" />
  1236. </edge>
  1237. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="com.google.code.maven-play-plugin.com.mchange:c3p0-oracle-thin-extras:jar:0.9.5">
  1238. <point x="34.850000000000364" y="-15.0" />
  1239. <point x="9025.009134656297" y="1620.0" />
  1240. <point x="10758.916185897437" y="1620.0" />
  1241. <point x="0.0" y="15.0" />
  1242. </edge>
  1243. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2/com.baomidou:mybatis-plus-extension:jar:3.4.2/com.baomidou:mybatis-plus-core:jar:3.4.2" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2/com.baomidou:mybatis-plus-extension:jar:3.4.2/com.baomidou:mybatis-plus-core:jar:3.4.2/org.mybatis:mybatis:jar:3.5.6">
  1244. <point x="-49.0" y="-15.0" />
  1245. <point x="2071.4620326029462" y="750.0" />
  1246. <point x="1986.2120326029462" y="750.0" />
  1247. <point x="0.0" y="15.0" />
  1248. </edge>
  1249. <edge source="org.springframework.boot:spring-boot-starter-tomcat:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-tomcat:jar:2.1.3.RELEASE/org.apache.tomcat.embed:tomcat-embed-core:jar:9.0.16">
  1250. <point x="25.5" y="-15.0" />
  1251. <point x="6517.330894750218" y="1470.0" />
  1252. <point x="6516.080894750218" y="1470.0" />
  1253. <point x="-39.25" y="15.0" />
  1254. </edge>
  1255. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE">
  1256. <point x="-25.5" y="-15.0" />
  1257. <point x="8267.805593209006" y="190.0" />
  1258. <point x="8238.872259875672" y="190.0" />
  1259. <point x="7.066666666666606" y="15.0" />
  1260. </edge>
  1261. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-digester:commons-digester:jar:1.7" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-digester:commons-digester:jar:1.7/xml-apis:xml-apis:jar:1.4.01">
  1262. <point x="56.25" y="-15.0" />
  1263. <point x="873.2120326029462" y="900.0" />
  1264. <point x="1285.1831674774921" y="900.0" />
  1265. <point x="0.0" y="15.0" />
  1266. </edge>
  1267. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.sun.xml.bind:jaxb-impl:jar:2.3.0.1">
  1268. <point x="-86.39999999999964" y="-15.0" />
  1269. <point x="1646.6189521627048" y="1470.0" />
  1270. <point x="1430.7189521627051" y="1470.0" />
  1271. <point x="0.0" y="15.0" />
  1272. </edge>
  1273. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework.data:spring-data-keyvalue:jar:2.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE/org.springframework:spring-context:jar:5.1.5.RELEASE">
  1274. <point x="-20.625" y="-15.0" />
  1275. <point x="9008.90172808355" y="680.0" />
  1276. <point x="8737.288926542338" y="680.0" />
  1277. <point x="8737.288926542338" y="450.0" />
  1278. <point x="4938.9383013229635" y="450.0" />
  1279. <point x="50.399999999999636" y="15.0" />
  1280. </edge>
  1281. <edge source="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-event:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-lang:jar:1.4.1">
  1282. <point x="0.0" y="-15.0" />
  1283. <point x="10617.108653887066" y="730.0" />
  1284. <point x="10330.518093209006" y="730.0" />
  1285. <point x="18.1875" y="15.0" />
  1286. </edge>
  1287. <edge source="com.alibaba:druid-spring-boot-starter:jar:1.1.14" target="com.alibaba:druid-spring-boot-starter:jar:1.1.14/com.alibaba:druid:jar:1.1.14">
  1288. <point x="-64.33333333333303" y="-15.0" />
  1289. <point x="6993.330894750219" y="1470.0" />
  1290. <point x="6948.247561416885" y="1470.0" />
  1291. <point x="0.0" y="15.0" />
  1292. </edge>
  1293. <edge source="org.springframework.boot:spring-boot-devtools:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-devtools:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-autoconfigure:jar:2.1.3.RELEASE">
  1294. <point x="-41.75" y="-15.0" />
  1295. <point x="8278.022259875674" y="840.0" />
  1296. <point x="7288.014228083552" y="840.0" />
  1297. <point x="80.39999999999964" y="15.0" />
  1298. </edge>
  1299. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.springframework.boot:spring-boot-starter-jdbc:jar:2.1.3.RELEASE">
  1300. <point x="-26.649999999999636" y="-15.0" />
  1301. <point x="8963.509134656297" y="1600.0" />
  1302. <point x="7697.530894750218" y="1600.0" />
  1303. <point x="7697.530894750218" y="1340.0" />
  1304. <point x="7936.780894750218" y="1340.0" />
  1305. <point x="62.333333333333485" y="15.0" />
  1306. </edge>
  1307. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE">
  1308. <point x="2.050000000000182" y="-15.0" />
  1309. <point x="8992.209134656297" y="1540.0" />
  1310. <point x="9081.659134656296" y="1540.0" />
  1311. <point x="0.0" y="15.0" />
  1312. </edge>
  1313. <edge source="net.sf.dozer:dozer:jar:5.5.1" target="net.sf.dozer:dozer:jar:5.5.1/commons-beanutils:commons-beanutils:jar:1.9.1">
  1314. <point x="25.875" y="-15.0" />
  1315. <point x="11111.058477865303" y="1470.0" />
  1316. <point x="11238.331749781752" y="1470.0" />
  1317. <point x="0.0" y="15.0" />
  1318. </edge>
  1319. <edge source="org.springframework.boot:spring-boot-starter-freemarker:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE">
  1320. <point x="75.66666666666652" y="-15.0" />
  1321. <point x="8184.697561416884" y="1470.0" />
  1322. <point x="8161.947561416885" y="1470.0" />
  1323. <point x="8161.947561416885" y="1370.0" />
  1324. <point x="8475.56392654234" y="1370.0" />
  1325. <point x="22.625" y="15.0" />
  1326. </edge>
  1327. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE/org.apache.logging.log4j:log4j-to-slf4j:jar:2.11.2" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE/org.apache.logging.log4j:log4j-to-slf4j:jar:2.11.2/org.apache.logging.log4j:log4j-api:jar:2.11.2">
  1328. <point x="-28.75" y="-15.0" />
  1329. <point x="0.0" y="15.0" />
  1330. </edge>
  1331. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="com.fasterxml.jackson.datatype:jackson-datatype-hibernate5:jar:2.9.9">
  1332. <point x="-47.149999999999636" y="-15.0" />
  1333. <point x="8943.009134656297" y="1650.0" />
  1334. <point x="6222.788301322964" y="1650.0" />
  1335. <point x="0.0" y="15.0" />
  1336. </edge>
  1337. <edge source="org.mybatis.spring.boot:mybatis-spring-boot-starter:jar:1.3.2" target="org.mybatis.spring.boot:mybatis-spring-boot-starter:jar:1.3.2/org.mybatis:mybatis:jar:3.4.6">
  1338. <point x="-83.59999999999991" y="-15.0" />
  1339. <point x="7225.964228083552" y="1470.0" />
  1340. <point x="7187.514228083552" y="1470.0" />
  1341. <point x="0.0" y="15.0" />
  1342. </edge>
  1343. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-webmvc:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-web:jar:5.1.5.RELEASE">
  1344. <point x="-53.75" y="-15.0" />
  1345. <point x="4985.372561416885" y="1050.0" />
  1346. <point x="4587.538301322964" y="1050.0" />
  1347. <point x="13.0" y="15.0" />
  1348. </edge>
  1349. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-handler:jar:4.1.33.Final/io.netty:netty-codec:jar:4.1.33.Final" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-transport:jar:4.1.33.Final">
  1350. <point x="36.33333333333326" y="-15.0" />
  1351. <point x="9611.278330647654" y="900.0" />
  1352. <point x="9672.111663980988" y="900.0" />
  1353. <point x="-43.33333333333326" y="15.0" />
  1354. </edge>
  1355. <edge source="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE/org.springframework:spring-context:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE/org.springframework:spring-beans:jar:5.1.5.RELEASE">
  1356. <point x="15.75" y="-15.0" />
  1357. <point x="4904.288301322964" y="380.0" />
  1358. <point x="4894.038301322964" y="380.0" />
  1359. <point x="4894.038301322964" y="290.0" />
  1360. <point x="8331.605593209006" y="290.0" />
  1361. <point x="-17.399999999999636" y="15.0" />
  1362. </edge>
  1363. <edge source="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final" target="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/javax.activation:javax.activation-api:jar:1.2.0">
  1364. <point x="-56.81818181818198" y="-15.0" />
  1365. <point x="2985.4701195047824" y="1230.0" />
  1366. <point x="2390.7120326029462" y="1230.0" />
  1367. <point x="38.25" y="15.0" />
  1368. </edge>
  1369. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.core:jackson-databind:jar:2.9.8">
  1370. <point x="-46.75" y="-15.0" />
  1371. <point x="5464.922259875673" y="980.0" />
  1372. <point x="5204.038301322964" y="980.0" />
  1373. <point x="0.0" y="15.0" />
  1374. </edge>
  1375. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE">
  1376. <point x="-67.64999999999964" y="-15.0" />
  1377. <point x="8922.509134656297" y="1700.0" />
  1378. <point x="4412.914228083551" y="1700.0" />
  1379. <point x="0.0" y="15.0" />
  1380. </edge>
  1381. <edge source="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-config-ogdl:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-config-core:jar:1.4.1">
  1382. <point x="-57.19999999999999" y="-15.0" />
  1383. <point x="10710.408653887067" y="900.0" />
  1384. <point x="10508.858653887066" y="900.0" />
  1385. <point x="35.75" y="15.0" />
  1386. </edge>
  1387. <edge source="org.hibernate:hibernate-ehcache:jar:5.2.12.Final" target="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.jboss.logging:jboss-logging:jar:3.3.2.Final">
  1388. <point x="-49.66666666666606" y="-15.0" />
  1389. <point x="2754.8716346562987" y="1470.0" />
  1390. <point x="2621.8370326029462" y="1470.0" />
  1391. <point x="2621.8370326029462" y="1060.0" />
  1392. <point x="2772.9847598756724" y="1060.0" />
  1393. <point x="-44.625" y="15.0" />
  1394. </edge>
  1395. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/javax.xml.bind:jaxb-api:jar:2.3.1">
  1396. <point x="-43.19999999999982" y="-15.0" />
  1397. <point x="1689.8189521627046" y="1460.0" />
  1398. <point x="1537.2189521627051" y="1460.0" />
  1399. <point x="0.0" y="15.0" />
  1400. </edge>
  1401. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE/ch.qos.logback:logback-classic:jar:1.2.3" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE/ch.qos.logback:logback-classic:jar:1.2.3/ch.qos.logback:logback-core:jar:1.2.3">
  1402. <point x="-32.25" y="-15.0" />
  1403. <point x="0.0" y="15.0" />
  1404. </edge>
  1405. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework.data:spring-data-keyvalue:jar:2.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework:spring-tx:jar:5.1.5.RELEASE">
  1406. <point x="-61.875" y="-15.0" />
  1407. <point x="8967.65172808355" y="900.0" />
  1408. <point x="8873.614228083552" y="900.0" />
  1409. <point x="30.333333333333485" y="15.0" />
  1410. </edge>
  1411. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE/org.slf4j:jul-to-slf4j:jar:1.7.25" target="com.alibaba:druid-spring-boot-starter:jar:1.1.14/org.slf4j:slf4j-api:jar:1.7.25">
  1412. <point x="0.0" y="-15.0" />
  1413. <point x="8677.288926542338" y="520.0" />
  1414. <point x="9255.935381929705" y="520.0" />
  1415. <point x="-19.384615384615472" y="15.0" />
  1416. </edge>
  1417. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="dom4j:dom4j:jar:1.6">
  1418. <point x="22.550000000000182" y="-15.0" />
  1419. <point x="9012.709134656297" y="1590.0" />
  1420. <point x="10483.858653887066" y="1590.0" />
  1421. <point x="0.0" y="15.0" />
  1422. </edge>
  1423. <edge source="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE/org.springframework:spring-beans:jar:5.1.5.RELEASE">
  1424. <point x="0.0" y="-15.0" />
  1425. <point x="8452.93892654234" y="690.0" />
  1426. <point x="8748.288926542338" y="690.0" />
  1427. <point x="8748.288926542338" y="300.0" />
  1428. <point x="8366.405593209005" y="300.0" />
  1429. <point x="17.399999999999636" y="15.0" />
  1430. </edge>
  1431. <edge source="com.fasterxml.jackson.core:jackson-databind:jar:2.9.9" target="com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9/com.fasterxml.jackson.core:jackson-annotations:jar:2.9.0">
  1432. <point x="-35.25" y="-15.0" />
  1433. <point x="5007.788301322964" y="840.0" />
  1434. <point x="5289.630593209005" y="840.0" />
  1435. <point x="-53.66666666666697" y="15.0" />
  1436. </edge>
  1437. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE">
  1438. <point x="0.0" y="-15.0" />
  1439. <point x="9081.659134656296" y="1460.0" />
  1440. <point x="8988.420833333334" y="1460.0" />
  1441. <point x="0.0" y="15.0" />
  1442. </edge>
  1443. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/javax.xml.bind:jaxb-api:jar:2.3.1" target="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/javax.activation:javax.activation-api:jar:1.2.0">
  1444. <point x="0.0" y="-15.0" />
  1445. <point x="1537.2189521627051" y="1250.0" />
  1446. <point x="2314.2120326029462" y="1250.0" />
  1447. <point x="-38.25" y="15.0" />
  1448. </edge>
  1449. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE" target="com.alibaba:druid-spring-boot-starter:jar:1.1.14/org.slf4j:slf4j-api:jar:1.7.25">
  1450. <point x="35.5" y="-15.0" />
  1451. <point x="9023.920833333334" y="1370.0" />
  1452. <point x="9305.30076654509" y="1370.0" />
  1453. <point x="9305.30076654509" y="530.0" />
  1454. <point x="9281.781535775859" y="530.0" />
  1455. <point x="6.4615384615385665" y="15.0" />
  1456. </edge>
  1457. <edge source="com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9" target="com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9/com.fasterxml.jackson.core:jackson-annotations:jar:2.9.0">
  1458. <point x="-81.0" y="-15.0" />
  1459. <point x="5097.622561416885" y="1460.0" />
  1460. <point x="5072.0972598756725" y="1460.0" />
  1461. <point x="5072.0972598756725" y="1300.0" />
  1462. <point x="5691.621634656297" y="1300.0" />
  1463. <point x="5691.621634656297" y="820.0" />
  1464. <point x="5396.963926542339" y="820.0" />
  1465. <point x="53.66666666666697" y="15.0" />
  1466. </edge>
  1467. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.9.8">
  1468. <point x="46.75" y="-15.0" />
  1469. <point x="5558.422259875673" y="1010.0" />
  1470. <point x="5922.788301322964" y="1010.0" />
  1471. <point x="0.0" y="15.0" />
  1472. </edge>
  1473. <edge source="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-config-ogdl:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-event:jar:1.4.1">
  1474. <point x="-28.599999999999966" y="-15.0" />
  1475. <point x="10739.008653887067" y="890.0" />
  1476. <point x="10643.358653887066" y="890.0" />
  1477. <point x="26.25" y="15.0" />
  1478. </edge>
  1479. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-betwixt:commons-betwixt:jar:0.8">
  1480. <point x="-31.035714285714675" y="-15.0" />
  1481. <point x="1719.1832378769905" y="1230.0" />
  1482. <point x="260.5" y="1230.0" />
  1483. <point x="0.0" y="15.0" />
  1484. </edge>
  1485. <edge source="net.sf.dozer:dozer:jar:5.5.1" target="net.sf.dozer:dozer:jar:5.5.1/org.slf4j:jcl-over-slf4j:jar:1.7.25">
  1486. <point x="-8.625" y="-15.0" />
  1487. <point x="11076.558477865303" y="1460.0" />
  1488. <point x="10995.831749781752" y="1460.0" />
  1489. <point x="0.0" y="15.0" />
  1490. </edge>
  1491. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-digester:commons-digester:jar:1.7" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-digester:commons-digester:jar:1.7/commons-beanutils:commons-beanutils:jar:1.6">
  1492. <point x="18.75" y="-15.0" />
  1493. <point x="835.7120326029462" y="890.0" />
  1494. <point x="881.5" y="890.0" />
  1495. <point x="0.0" y="15.0" />
  1496. </edge>
  1497. <edge source="com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9" target="com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9/com.fasterxml.jackson.core:jackson-databind:jar:2.9.9">
  1498. <point x="0.0" y="-15.0" />
  1499. <point x="0.0" y="15.0" />
  1500. </edge>
  1501. <edge source="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-cache:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-lang:jar:1.4.1">
  1502. <point x="0.0" y="-15.0" />
  1503. <point x="10031.358653887066" y="730.0" />
  1504. <point x="10269.893093209006" y="730.0" />
  1505. <point x="-42.4375" y="15.0" />
  1506. </edge>
  1507. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-handler:jar:4.1.33.Final" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-transport:jar:4.1.33.Final">
  1508. <point x="44.25" y="-15.0" />
  1509. <point x="9616.19499731432" y="1070.0" />
  1510. <point x="9715.44499731432" y="1070.0" />
  1511. <point x="0.0" y="15.0" />
  1512. </edge>
  1513. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.9.8" target="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.9.8/com.fasterxml.jackson.core:jackson-databind:jar:2.9.9">
  1514. <point x="61.5" y="-15.0" />
  1515. <point x="5984.288301322964" y="880.0" />
  1516. <point x="6083.288301322964" y="880.0" />
  1517. <point x="0.0" y="15.0" />
  1518. </edge>
  1519. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework:spring-tx:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE/org.springframework:spring-beans:jar:5.1.5.RELEASE">
  1520. <point x="-22.75" y="-15.0" />
  1521. <point x="8820.530894750218" y="730.0" />
  1522. <point x="8988.83922808355" y="730.0" />
  1523. <point x="8988.83922808355" y="290.0" />
  1524. <point x="8378.005593209005" y="290.0" />
  1525. <point x="29.0" y="15.0" />
  1526. </edge>
  1527. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.apache.shiro:shiro-cas:jar:1.4.0">
  1528. <point x="67.64999999999964" y="-15.0" />
  1529. <point x="9057.809134656296" y="1700.0" />
  1530. <point x="12134.644249781752" y="1700.0" />
  1531. <point x="0.0" y="15.0" />
  1532. </edge>
  1533. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.springframework.boot:spring-boot-starter-mail:jar:2.1.3.RELEASE">
  1534. <point x="-38.94999999999982" y="-15.0" />
  1535. <point x="8951.209134656297" y="1630.0" />
  1536. <point x="6848.664228083551" y="1630.0" />
  1537. <point x="0.0" y="15.0" />
  1538. </edge>
  1539. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2/com.baomidou:mybatis-plus-extension:jar:3.4.2/com.baomidou:mybatis-plus-core:jar:3.4.2" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2/com.baomidou:mybatis-plus-extension:jar:3.4.2/com.baomidou:mybatis-plus-core:jar:3.4.2/com.baomidou:mybatis-plus-annotation:jar:3.4.2">
  1540. <point x="49.0" y="-15.0" />
  1541. <point x="2169.4620326029462" y="750.0" />
  1542. <point x="2449.683167477492" y="750.0" />
  1543. <point x="0.0" y="15.0" />
  1544. </edge>
  1545. <edge source="org.springframework.boot:spring-boot-starter-jdbc:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-jdbc:jar:2.1.3.RELEASE/com.zaxxer:HikariCP:jar:3.2.0">
  1546. <point x="62.333333333333485" y="-15.0" />
  1547. <point x="7936.780894750218" y="1070.0" />
  1548. <point x="8035.179166666667" y="1070.0" />
  1549. <point x="8035.179166666667" y="750.0" />
  1550. <point x="9245.33922808355" y="750.0" />
  1551. <point x="0.0" y="15.0" />
  1552. </edge>
  1553. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE/org.apache.logging.log4j:log4j-to-slf4j:jar:2.11.2" target="com.alibaba:druid-spring-boot-starter:jar:1.1.14/org.slf4j:slf4j-api:jar:1.7.25">
  1554. <point x="28.75" y="-15.0" />
  1555. <point x="8192.555593209006" y="510.0" />
  1556. <point x="9249.473843468168" y="510.0" />
  1557. <point x="-25.84615384615381" y="15.0" />
  1558. </edge>
  1559. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.apache.shiro:shiro-spring:jar:1.4.1">
  1560. <point x="14.350000000000364" y="-15.0" />
  1561. <point x="9004.509134656297" y="1570.0" />
  1562. <point x="10371.858653887066" y="1570.0" />
  1563. <point x="0.0" y="15.0" />
  1564. </edge>
  1565. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-devtools:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot:jar:2.1.3.RELEASE">
  1566. <point x="-12.916666666666515" y="-15.0" />
  1567. <point x="7680.870833333334" y="860.0" />
  1568. <point x="7494.729166666668" y="860.0" />
  1569. <point x="7494.729166666668" y="750.0" />
  1570. <point x="7417.722259875673" y="750.0" />
  1571. <point x="0.0" y="15.0" />
  1572. </edge>
  1573. <edge source="org.springframework.boot:spring-boot-starter-websocket:jar:2.1.3.RELEASE/org.springframework:spring-messaging:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE/org.springframework:spring-beans:jar:5.1.5.RELEASE">
  1574. <point x="36.25" y="-15.0" />
  1575. <point x="3900.297259875673" y="260.0" />
  1576. <point x="8296.805593209006" y="260.0" />
  1577. <point x="-52.19999999999982" y="15.0" />
  1578. </edge>
  1579. <edge source="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final" target="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/org.dom4j:dom4j:jar:2.1.1">
  1580. <point x="-11.363636363636033" y="-15.0" />
  1581. <point x="3030.9246649593283" y="1190.0" />
  1582. <point x="2978.547259875673" y="1190.0" />
  1583. <point x="0.0" y="15.0" />
  1584. </edge>
  1585. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="com.alibaba:fastjson:jar:1.2.45">
  1586. <point x="71.75" y="-15.0" />
  1587. <point x="9061.909134656296" y="1710.0" />
  1588. <point x="12242.644249781752" y="1710.0" />
  1589. <point x="0.0" y="15.0" />
  1590. </edge>
  1591. <edge source="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final" target="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.jboss.logging:jboss-logging:jar:3.3.2.Final">
  1592. <point x="-34.09090909090992" y="-15.0" />
  1593. <point x="3008.1973922320544" y="1210.0" />
  1594. <point x="2882.3597598756724" y="1210.0" />
  1595. <point x="2882.3597598756724" y="1070.0" />
  1596. <point x="2832.4847598756724" y="1070.0" />
  1597. <point x="14.875" y="15.0" />
  1598. </edge>
  1599. <edge source="org.springframework.boot:spring-boot-starter-jdbc:jar:2.1.3.RELEASE/org.springframework:spring-jdbc:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE">
  1600. <point x="0.0" y="-15.0" />
  1601. <point x="7972.179166666667" y="670.0" />
  1602. <point x="8417.505593209005" y="670.0" />
  1603. <point x="8417.505593209005" y="170.0" />
  1604. <point x="8253.005593209007" y="170.0" />
  1605. <point x="21.199999999999818" y="15.0" />
  1606. </edge>
  1607. <edge source="org.mybatis.spring.boot:mybatis-spring-boot-starter:jar:1.3.2" target="org.mybatis.spring.boot:mybatis-spring-boot-starter:jar:1.3.2/org.mybatis.spring.boot:mybatis-spring-boot-autoconfigure:jar:1.3.2">
  1608. <point x="-41.80000000000018" y="-15.0" />
  1609. <point x="7267.764228083552" y="1470.0" />
  1610. <point x="7256.1805932090065" y="1470.0" />
  1611. <point x="0.0" y="15.0" />
  1612. </edge>
  1613. <edge source="net.sf.json-lib:json-lib:jar:jdk15:2.4" target="net.sf.json-lib:json-lib:jar:jdk15:2.4/net.sf.ezmorph:ezmorph:jar:1.0.6">
  1614. <point x="0.0" y="-15.0" />
  1615. <point x="0.0" y="15.0" />
  1616. </edge>
  1617. <edge source="org.springframework.boot:spring-boot-starter-tomcat:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-tomcat:jar:2.1.3.RELEASE/javax.annotation:javax.annotation-api:jar:1.3.2">
  1618. <point x="-25.5" y="-15.0" />
  1619. <point x="-40.0" y="15.0" />
  1620. </edge>
  1621. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0">
  1622. <point x="-79.94999999999982" y="-15.0" />
  1623. <point x="8910.209134656297" y="1730.0" />
  1624. <point x="1733.0189521627044" y="1730.0" />
  1625. <point x="0.0" y="15.0" />
  1626. </edge>
  1627. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-logging:commons-logging-api:jar:1.0.4">
  1628. <point x="25.392857142856883" y="-15.0" />
  1629. <point x="1775.611809305562" y="1230.0" />
  1630. <point x="1860.9620326029462" y="1230.0" />
  1631. <point x="0.0" y="15.0" />
  1632. </edge>
  1633. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-handler:jar:4.1.33.Final" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-handler:jar:4.1.33.Final/io.netty:netty-codec:jar:4.1.33.Final">
  1634. <point x="-14.75" y="-15.0" />
  1635. <point x="9557.19499731432" y="1070.0" />
  1636. <point x="9574.94499731432" y="1070.0" />
  1637. <point x="0.0" y="15.0" />
  1638. </edge>
  1639. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="com.alibaba:druid-spring-boot-starter:jar:1.1.14">
  1640. <point x="-34.850000000000364" y="-15.0" />
  1641. <point x="8955.309134656296" y="1620.0" />
  1642. <point x="7057.664228083551" y="1620.0" />
  1643. <point x="0.0" y="15.0" />
  1644. </edge>
  1645. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.9.8" target="com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9/com.fasterxml.jackson.core:jackson-core:jar:2.9.8">
  1646. <point x="-61.5" y="-15.0" />
  1647. <point x="5861.288301322964" y="880.0" />
  1648. <point x="5945.288301322964" y="880.0" />
  1649. <point x="9.5" y="15.0" />
  1650. </edge>
  1651. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-transport:jar:4.1.33.Final" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-transport:jar:4.1.33.Final/io.netty:netty-resolver:jar:4.1.33.Final">
  1652. <point x="43.33333333333326" y="-15.0" />
  1653. <point x="9758.778330647654" y="750.0" />
  1654. <point x="9786.44499731432" y="750.0" />
  1655. <point x="0.0" y="15.0" />
  1656. </edge>
  1657. <edge source="org.apache.shiro:shiro-spring:jar:1.4.1" target="org.apache.shiro:shiro-web:jar:1.4.1">
  1658. <point x="27.5" y="-15.0" />
  1659. <point x="10399.358653887066" y="1470.0" />
  1660. <point x="10389.358653887066" y="1470.0" />
  1661. <point x="-24.0" y="15.0" />
  1662. </edge>
  1663. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="commons-dbcp:commons-dbcp:jar:1.4">
  1664. <point x="-63.55000000000018" y="-15.0" />
  1665. <point x="8926.609134656297" y="1690.0" />
  1666. <point x="4550.747561416885" y="1690.0" />
  1667. <point x="0.0" y="15.0" />
  1668. </edge>
  1669. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework:spring-tx:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE">
  1670. <point x="22.75" y="-15.0" />
  1671. <point x="8866.030894750218" y="740.0" />
  1672. <point x="8999.83922808355" y="740.0" />
  1673. <point x="8999.83922808355" y="150.0" />
  1674. <point x="8267.138926542339" y="150.0" />
  1675. <point x="35.33333333333303" y="15.0" />
  1676. </edge>
  1677. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-betwixt:commons-betwixt:jar:0.8" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-logging:commons-logging:jar:1.0.4">
  1678. <point x="-48.33333333333303" y="-15.0" />
  1679. <point x="212.16666666666697" y="1070.0" />
  1680. <point x="109.5" y="1070.0" />
  1681. <point x="36.5" y="15.0" />
  1682. </edge>
  1683. <edge source="org.mybatis.spring.boot:mybatis-spring-boot-starter:jar:1.3.2/org.mybatis.spring.boot:mybatis-spring-boot-autoconfigure:jar:1.3.2" target="org.springframework.boot:spring-boot-devtools:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-autoconfigure:jar:2.1.3.RELEASE">
  1684. <point x="0.0" y="-15.0" />
  1685. <point x="7256.1805932090065" y="900.0" />
  1686. <point x="7207.614228083552" y="900.0" />
  1687. <point x="0.0" y="15.0" />
  1688. </edge>
  1689. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE/org.springframework:spring-jcl:jar:5.1.5.RELEASE">
  1690. <point x="0.0" y="-15.0" />
  1691. <point x="0.0" y="15.0" />
  1692. </edge>
  1693. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2">
  1694. <point x="-65.33333333333303" y="-15.0" />
  1695. <point x="2409.1703659362793" y="1240.0" />
  1696. <point x="2198.9620326029462" y="1240.0" />
  1697. <point x="0.0" y="15.0" />
  1698. </edge>
  1699. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE">
  1700. <point x="77.91666666666606" y="-15.0" />
  1701. <point x="5589.588926542339" y="1020.0" />
  1702. <point x="7624.0375" y="1020.0" />
  1703. <point x="-69.75" y="15.0" />
  1704. </edge>
  1705. <edge source="commons-dbcp:commons-dbcp:jar:1.4" target="commons-dbcp:commons-dbcp:jar:1.4/commons-pool:commons-pool:jar:1.6">
  1706. <point x="0.0" y="-15.0" />
  1707. <point x="4550.747561416885" y="1240.0" />
  1708. <point x="4239.588926542339" y="1240.0" />
  1709. <point x="31.75" y="15.0" />
  1710. </edge>
  1711. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-handler:jar:4.1.33.Final">
  1712. <point x="13.625" y="-15.0" />
  1713. <point x="9532.330593209006" y="1370.0" />
  1714. <point x="9571.94499731432" y="1370.0" />
  1715. <point x="0.0" y="15.0" />
  1716. </edge>
  1717. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-transport:jar:4.1.33.Final" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/io.lettuce:lettuce-core:jar:5.1.4.RELEASE/io.netty:netty-common:jar:4.1.33.Final">
  1718. <point x="0.0" y="-15.0" />
  1719. <point x="9715.44499731432" y="530.0" />
  1720. <point x="9581.278330647654" y="530.0" />
  1721. <point x="31.25" y="15.0" />
  1722. </edge>
  1723. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.mybatis.spring.boot:mybatis-spring-boot-starter:jar:1.3.2">
  1724. <point x="-30.75" y="-15.0" />
  1725. <point x="8959.409134656296" y="1610.0" />
  1726. <point x="7309.564228083552" y="1610.0" />
  1727. <point x="0.0" y="15.0" />
  1728. </edge>
  1729. <edge source="org.springframework.boot:spring-boot-devtools:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-devtools:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot:jar:2.1.3.RELEASE">
  1730. <point x="41.75" y="-15.0" />
  1731. <point x="8361.522259875674" y="620.0" />
  1732. <point x="7453.722259875673" y="620.0" />
  1733. <point x="36.0" y="15.0" />
  1734. </edge>
  1735. <edge source="org.apache.shiro:shiro-core:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-lang:jar:1.4.1">
  1736. <point x="42.0" y="-15.0" />
  1737. <point x="10473.24951923077" y="1070.0" />
  1738. <point x="10886.952403887066" y="1070.0" />
  1739. <point x="10886.952403887066" y="710.0" />
  1740. <point x="10354.768093209006" y="710.0" />
  1741. <point x="42.4375" y="15.0" />
  1742. </edge>
  1743. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.springframework.boot:spring-boot-starter-tomcat:jar:2.1.3.RELEASE">
  1744. <point x="-43.05000000000018" y="-15.0" />
  1745. <point x="8947.109134656297" y="1640.0" />
  1746. <point x="6491.830894750218" y="1640.0" />
  1747. <point x="0.0" y="15.0" />
  1748. </edge>
  1749. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-web:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE">
  1750. <point x="-26.0" y="-15.0" />
  1751. <point x="4548.538301322964" y="880.0" />
  1752. <point x="4569.038301322964" y="880.0" />
  1753. <point x="4569.038301322964" y="150.0" />
  1754. <point x="8196.472259875674" y="150.0" />
  1755. <point x="-35.33333333333303" y="15.0" />
  1756. </edge>
  1757. <edge source="org.springframework.boot:spring-boot-starter-cache:jar:2.1.3.RELEASE/org.springframework:spring-context-support:jar:5.1.5.RELEASE/org.springframework:spring-context:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-webmvc:jar:5.1.5.RELEASE/org.springframework:spring-expression:jar:5.1.5.RELEASE">
  1758. <point x="-47.25" y="-15.0" />
  1759. <point x="4841.288301322964" y="380.0" />
  1760. <point x="4757.038301322964" y="380.0" />
  1761. <point x="36.5" y="15.0" />
  1762. </edge>
  1763. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE">
  1764. <point x="37.20000000000073" y="-15.0" />
  1765. <point x="4766.447561416886" y="1270.0" />
  1766. <point x="5511.672259875673" y="1270.0" />
  1767. <point x="0.0" y="15.0" />
  1768. </edge>
  1769. <edge source="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final" target="org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE/org.hibernate.validator:hibernate-validator:jar:6.0.14.Final/com.fasterxml:classmate:jar:1.4.0">
  1770. <point x="-22.727272727272066" y="-15.0" />
  1771. <point x="3019.5610285956923" y="1200.0" />
  1772. <point x="2932.047259875673" y="1200.0" />
  1773. <point x="-23.75" y="15.0" />
  1774. </edge>
  1775. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2/com.baomidou:mybatis-plus-extension:jar:3.4.2" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2/com.baomidou:mybatis-plus-extension:jar:3.4.2/org.mybatis:mybatis-spring:jar:2.0.5">
  1776. <point x="45.0" y="-15.0" />
  1777. <point x="2243.9620326029462" y="900.0" />
  1778. <point x="2277.4620326029462" y="900.0" />
  1779. <point x="0.0" y="15.0" />
  1780. </edge>
  1781. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.9.8" target="com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9/com.fasterxml.jackson.core:jackson-core:jar:2.9.8">
  1782. <point x="43.25" y="-15.0" />
  1783. <point x="5631.163301322964" y="870.0" />
  1784. <point x="5926.288301322964" y="870.0" />
  1785. <point x="-9.5" y="15.0" />
  1786. </edge>
  1787. <edge source="org.springframework.boot:spring-boot-starter-websocket:jar:2.1.3.RELEASE/org.springframework:spring-websocket:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-web:jar:5.1.5.RELEASE">
  1788. <point x="48.33333333333394" y="-15.0" />
  1789. <point x="4471.087999781752" y="1070.0" />
  1790. <point x="4535.538301322964" y="1070.0" />
  1791. <point x="-39.0" y="15.0" />
  1792. </edge>
  1793. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-webmvc:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework:spring-aop:jar:5.1.5.RELEASE/org.springframework:spring-beans:jar:5.1.5.RELEASE">
  1794. <point x="10.75" y="-15.0" />
  1795. <point x="5049.872561416885" y="1020.0" />
  1796. <point x="4804.038301322964" y="1020.0" />
  1797. <point x="4804.038301322964" y="280.0" />
  1798. <point x="8320.005593209005" y="280.0" />
  1799. <point x="-29.0" y="15.0" />
  1800. </edge>
  1801. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-betwixt:commons-betwixt:jar:0.8" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-digester:commons-digester:jar:1.7">
  1802. <point x="48.33333333333303" y="-15.0" />
  1803. <point x="308.83333333333303" y="1070.0" />
  1804. <point x="779.4620326029462" y="1070.0" />
  1805. <point x="-37.5" y="15.0" />
  1806. </edge>
  1807. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/junit:junit:jar:4.12">
  1808. <point x="-25.392857142856883" y="-15.0" />
  1809. <point x="1724.8260950198483" y="1220.0" />
  1810. <point x="602.75" y="1220.0" />
  1811. <point x="0.0" y="15.0" />
  1812. </edge>
  1813. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE/ch.qos.logback:logback-classic:jar:1.2.3">
  1814. <point x="-69.0" y="-15.0" />
  1815. <point x="7709.620833333334" y="630.0" />
  1816. <point x="8021.8055932090065" y="630.0" />
  1817. <point x="0.0" y="15.0" />
  1818. </edge>
  1819. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2/com.baomidou:mybatis-plus-extension:jar:3.4.2/com.baomidou:mybatis-plus-core:jar:3.4.2" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2/com.baomidou:mybatis-plus-extension:jar:3.4.2/com.baomidou:mybatis-plus-core:jar:3.4.2/com.github.jsqlparser:jsqlparser:jar:4.0">
  1820. <point x="0.0" y="-15.0" />
  1821. <point x="2120.4620326029462" y="750.0" />
  1822. <point x="2094.2120326029462" y="750.0" />
  1823. <point x="0.0" y="15.0" />
  1824. </edge>
  1825. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.springframework.boot:spring-boot-starter-freemarker:jar:2.1.3.RELEASE">
  1826. <point x="-18.449999999999818" y="-15.0" />
  1827. <point x="8971.709134656297" y="1580.0" />
  1828. <point x="8109.030894750218" y="1580.0" />
  1829. <point x="0.0" y="15.0" />
  1830. </edge>
  1831. <edge source="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-config-ogdl:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-config-ogdl:jar:1.4.1/commons-beanutils:commons-beanutils:jar:1.9.3">
  1832. <point x="0.0" y="-15.0" />
  1833. <point x="0.0" y="15.0" />
  1834. </edge>
  1835. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-dbcp:commons-dbcp:jar:1.2.1">
  1836. <point x="19.75" y="-15.0" />
  1837. <point x="1769.9689521627051" y="1140.0" />
  1838. <point x="1690.4620326029462" y="1140.0" />
  1839. <point x="0.0" y="15.0" />
  1840. </edge>
  1841. <edge source="com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9" target="com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9/com.fasterxml.jackson.core:jackson-core:jar:2.9.8">
  1842. <point x="81.0" y="-15.0" />
  1843. <point x="5259.622561416885" y="1460.0" />
  1844. <point x="5286.5972598756725" y="1460.0" />
  1845. <point x="5286.5972598756725" y="1310.0" />
  1846. <point x="6056.288301322964" y="1310.0" />
  1847. <point x="6056.288301322964" y="870.0" />
  1848. <point x="5964.288301322964" y="870.0" />
  1849. <point x="28.5" y="15.0" />
  1850. </edge>
  1851. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-logging:jar:2.1.3.RELEASE/org.apache.logging.log4j:log4j-to-slf4j:jar:2.11.2">
  1852. <point x="0.0" y="-15.0" />
  1853. <point x="7778.620833333334" y="640.0" />
  1854. <point x="8163.8055932090065" y="640.0" />
  1855. <point x="0.0" y="15.0" />
  1856. </edge>
  1857. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0/commons-collections:commons-collections:jar:3.1">
  1858. <point x="-8.464285714285325" y="-15.0" />
  1859. <point x="1741.7546664484198" y="1190.0" />
  1860. <point x="1051.9620326029462" y="1190.0" />
  1861. <point x="0.0" y="15.0" />
  1862. </edge>
  1863. <edge source="org.apache.shiro:shiro-ehcache:jar:1.4.1/net.sf.ehcache:ehcache-core:jar:2.6.11" target="com.alibaba:druid-spring-boot-starter:jar:1.1.14/org.slf4j:slf4j-api:jar:1.7.25">
  1864. <point x="0.0" y="-15.0" />
  1865. <point x="9925.94499731432" y="510.0" />
  1866. <point x="9288.243074237398" y="510.0" />
  1867. <point x="12.923076923076906" y="15.0" />
  1868. </edge>
  1869. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework:spring-tx:jar:5.1.5.RELEASE">
  1870. <point x="-11.833333333333258" y="-15.0" />
  1871. <point x="8976.587500000001" y="1350.0" />
  1872. <point x="8843.280894750218" y="1350.0" />
  1873. <point x="0.0" y="15.0" />
  1874. </edge>
  1875. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3">
  1876. <point x="59.44999999999982" y="-15.0" />
  1877. <point x="9049.609134656297" y="1680.0" />
  1878. <point x="11802.144249781752" y="1680.0" />
  1879. <point x="0.0" y="15.0" />
  1880. </edge>
  1881. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.aspectj:aspectjweaver:jar:1.9.2">
  1882. <point x="0.0" y="-15.0" />
  1883. <point x="8334.530894750218" y="1470.0" />
  1884. <point x="8339.364228083552" y="1470.0" />
  1885. <point x="0.0" y="15.0" />
  1886. </edge>
  1887. <edge source="org.springframework.boot:spring-boot-starter-tomcat:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-validation:jar:2.1.3.RELEASE/org.apache.tomcat.embed:tomcat-embed-el:jar:9.0.16">
  1888. <point x="-76.5" y="-15.0" />
  1889. <point x="6415.330894750218" y="1460.0" />
  1890. <point x="5402.0972598756725" y="1460.0" />
  1891. <point x="35.0" y="15.0" />
  1892. </edge>
  1893. <edge source="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-data-redis:jar:2.1.3.RELEASE/org.springframework.data:spring-data-redis:jar:2.1.5.RELEASE/org.springframework:spring-oxm:jar:5.1.5.RELEASE">
  1894. <point x="59.16666666666674" y="-15.0" />
  1895. <point x="9047.587500000001" y="1380.0" />
  1896. <point x="9333.81999731432" y="1380.0" />
  1897. <point x="0.0" y="15.0" />
  1898. </edge>
  1899. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE">
  1900. <point x="-59.44999999999982" y="-15.0" />
  1901. <point x="8930.709134656297" y="1680.0" />
  1902. <point x="4775.747561416885" y="1680.0" />
  1903. <point x="46.5" y="15.0" />
  1904. </edge>
  1905. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2/com.baomidou:mybatis-plus-extension:jar:3.4.2" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2/com.baomidou:mybatis-plus:jar:3.4.2/com.baomidou:mybatis-plus-extension:jar:3.4.2/com.baomidou:mybatis-plus-core:jar:3.4.2">
  1906. <point x="-45.0" y="-15.0" />
  1907. <point x="2153.9620326029462" y="900.0" />
  1908. <point x="2120.4620326029462" y="900.0" />
  1909. <point x="0.0" y="15.0" />
  1910. </edge>
  1911. <edge source="org.apache.shiro:shiro-cas:jar:1.4.0" target="org.apache.shiro:shiro-cas:jar:1.4.0/org.jasig.cas.client:cas-client-core:jar:3.2.2">
  1912. <point x="-23.0" y="-15.0" />
  1913. <point x="12111.644249781752" y="1470.0" />
  1914. <point x="12026.144249781752" y="1470.0" />
  1915. <point x="0.0" y="15.0" />
  1916. </edge>
  1917. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-webmvc:jar:5.1.5.RELEASE/org.springframework:spring-expression:jar:5.1.5.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.springframework:spring-core:jar:5.1.5.RELEASE">
  1918. <point x="0.0" y="-15.0" />
  1919. <point x="4720.538301322964" y="170.0" />
  1920. <point x="8210.605593209006" y="170.0" />
  1921. <point x="-21.199999999999818" y="15.0" />
  1922. </edge>
  1923. <edge source="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final" target="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/net.bytebuddy:byte-buddy:jar:1.9.10">
  1924. <point x="22.727272727272066" y="-15.0" />
  1925. <point x="3065.0155740502364" y="1220.0" />
  1926. <point x="3263.547259875673" y="1220.0" />
  1927. <point x="0.0" y="15.0" />
  1928. </edge>
  1929. <edge source="org.springframework.boot:spring-boot-starter-mail:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-mail:jar:2.1.3.RELEASE/com.sun.mail:javax.mail:jar:1.6.2">
  1930. <point x="-61.666666666666515" y="-15.0" />
  1931. <point x="6786.997561416885" y="1470.0" />
  1932. <point x="6789.080894750219" y="1470.0" />
  1933. <point x="0.0" y="15.0" />
  1934. </edge>
  1935. <edge source="org.apache.shiro:shiro-core:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-event:jar:1.4.1">
  1936. <point x="14.0" y="-15.0" />
  1937. <point x="10445.24951923077" y="1050.0" />
  1938. <point x="10590.858653887066" y="1050.0" />
  1939. <point x="-26.25" y="15.0" />
  1940. </edge>
  1941. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework:spring-web:jar:5.1.5.RELEASE">
  1942. <point x="-77.91666666666606" y="-15.0" />
  1943. <point x="5433.755593209007" y="990.0" />
  1944. <point x="4613.538301322964" y="990.0" />
  1945. <point x="39.0" y="15.0" />
  1946. </edge>
  1947. <edge source="com.mchange:c3p0:jar:0.9.2.1" target="com.mchange:c3p0:jar:0.9.2.1/com.mchange:mchange-commons-java:jar:0.2.3.4">
  1948. <point x="0.0" y="-15.0" />
  1949. <point x="0.0" y="15.0" />
  1950. </edge>
  1951. <edge source="org.jeeplus:jeeplus-gencode-vue:8.0" target="com.google.guava:guava:jar:20.0">
  1952. <point x="30.75" y="-15.0" />
  1953. <point x="9020.909134656296" y="1610.0" />
  1954. <point x="10612.416185897437" y="1610.0" />
  1955. <point x="0.0" y="15.0" />
  1956. </edge>
  1957. <edge source="org.apache.shiro:shiro-core:jar:1.4.1" target="org.apache.shiro:shiro-core:jar:1.4.1/org.apache.shiro:shiro-config-ogdl:jar:1.4.1">
  1958. <point x="28.0" y="-15.0" />
  1959. <point x="10459.24951923077" y="1060.0" />
  1960. <point x="10767.608653887066" y="1060.0" />
  1961. <point x="0.0" y="15.0" />
  1962. </edge>
  1963. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/com.baomidou:mybatis-plus-boot-starter:jar:3.4.2" target="org.springframework.boot:spring-boot-devtools:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-autoconfigure:jar:2.1.3.RELEASE">
  1964. <point x="0.0" y="-15.0" />
  1965. <point x="2474.5036992696123" y="1250.0" />
  1966. <point x="2562.0870326029462" y="1250.0" />
  1967. <point x="2562.0870326029462" y="890.0" />
  1968. <point x="7127.214228083552" y="890.0" />
  1969. <point x="-80.39999999999964" y="15.0" />
  1970. </edge>
  1971. <edge source="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE" target="org.springframework.boot:spring-boot-starter-aop:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter:jar:2.1.3.RELEASE/org.yaml:snakeyaml:jar:1.23">
  1972. <point x="12.916666666666515" y="-15.0" />
  1973. <point x="7706.704166666666" y="850.0" />
  1974. <point x="7606.120833333334" y="850.0" />
  1975. <point x="0.0" y="15.0" />
  1976. </edge>
  1977. <edge source="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final" target="org.hibernate:hibernate-ehcache:jar:5.2.12.Final/org.hibernate:hibernate-core:jar:5.3.7.Final/org.hibernate.common:hibernate-commons-annotations:jar:5.0.4.Final">
  1978. <point x="-45.45454545454595" y="-15.0" />
  1979. <point x="2996.8337558684184" y="1220.0" />
  1980. <point x="2752.8597598756724" y="1220.0" />
  1981. <point x="0.0" y="15.0" />
  1982. </edge>
  1983. <edge source="org.springframework.boot:spring-boot-starter-web:jar:2.1.3.RELEASE/org.springframework.boot:spring-boot-starter-json:jar:2.1.3.RELEASE/com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.9.8" target="com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.9.9/com.fasterxml.jackson.core:jackson-annotations:jar:2.9.0">
  1984. <point x="-61.33333333333394" y="-15.0" />
  1985. <point x="5325.20496798963" y="840.0" />
  1986. <point x="5343.297259875673" y="840.0" />
  1987. <point x="0.0" y="15.0" />
  1988. </edge>
  1989. <edge source="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0" target="org.jeeplus:jeeplus-mybatis-dynamic-vue:jar:8.0/org.apache.ddlutils:ddlutils:jar:1.0">
  1990. <point x="43.19999999999982" y="-15.0" />
  1991. <point x="1776.2189521627042" y="1470.0" />
  1992. <point x="1750.2189521627051" y="1470.0" />
  1993. <point x="0.0" y="15.0" />
  1994. </edge>
  1995. </edges>
  1996. <settings layout="Hierarchic Group" zoom="0.07991414183109057" x="6046.5" y="770.0" />
  1997. <SelectedNodes>
  1998. <node>jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.3/jakarta.activation:jakarta.activation-api:jar:1.2.2</node>
  1999. <node>org.jeeplus:jeeplus-gencode-vue:8.0</node>
  2000. </SelectedNodes>
  2001. <Categories />
  2002. <VISIBILITY>All</VISIBILITY>
  2003. </Diagram>