pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>eis_qnym_java</artifactId>
  7. <groupId>com.prolog.eis</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>eis-business-dismantle</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.prolog.eis</groupId>
  15. <artifactId>eis-business-facade</artifactId>
  16. <version>0.0.1-SNAPSHOT</version>
  17. <exclusions>
  18. <exclusion>
  19. <groupId>com.prolog.framework</groupId>
  20. <artifactId>plg-fx-redis-autoconfigure</artifactId>
  21. </exclusion>
  22. </exclusions>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.prolog.eis</groupId>
  26. <artifactId>eis-business-strategy</artifactId>
  27. <version>0.0.1-SNAPSHOT</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.prolog.framework</groupId>
  31. <artifactId>plg-fx-starter</artifactId>
  32. <exclusions>
  33. <exclusion>
  34. <groupId>com.prolog.framework</groupId>
  35. <artifactId>plg-fx-starter-distributedLock</artifactId>
  36. </exclusion>
  37. <exclusion>
  38. <groupId>org.apache.poi</groupId>
  39. <artifactId>poi-ooxml</artifactId>
  40. </exclusion>
  41. <exclusion>
  42. <groupId>com.prolog.framework</groupId>
  43. <artifactId>plg-fx-redis-autoconfigure</artifactId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <dependency>
  48. <groupId>javax.xml.bind</groupId>
  49. <artifactId>jaxb-api</artifactId>
  50. <version>2.3.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-test</artifactId>
  55. <exclusions>
  56. <exclusion>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-logging</artifactId>
  59. </exclusion>
  60. </exclusions>
  61. <scope>test</scope>
  62. </dependency>
  63. <!--LED6-->
  64. <dependency>
  65. <groupId>net.sf.json-lib</groupId>
  66. <artifactId>json-lib</artifactId>
  67. <version>2.4</version>
  68. <classifier>jdk15</classifier>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.3rd.led</groupId>
  72. <artifactId>bx06</artifactId>
  73. <version>0.6.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.3rd.led</groupId>
  77. <artifactId>bx06-message</artifactId>
  78. <version>0.60</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>uia</groupId>
  82. <artifactId>uia.com</artifactId>
  83. <version>0.2.2</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>uia</groupId>
  87. <artifactId>uia.message</artifactId>
  88. <version>0.6.0</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>uia</groupId>
  92. <artifactId>uia.utils</artifactId>
  93. <version>0.1.2</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.simpleframework</groupId>
  97. <artifactId>simple-xml</artifactId>
  98. <version>2.7.1</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>log4j</groupId>
  102. <artifactId>log4j</artifactId>
  103. <version>1.2.14</version>
  104. </dependency>
  105. <!--LED6-->
  106. </dependencies>
  107. <build>
  108. <plugins>
  109. <plugin>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-maven-plugin</artifactId>
  112. <version>2.3.4.RELEASE</version>
  113. <executions>
  114. <execution>
  115. <goals>
  116. <goal>repackage</goal>
  117. </goals>
  118. </execution>
  119. </executions>
  120. <configuration>
  121. <executable>true</executable>
  122. </configuration>
  123. </plugin>
  124. </plugins>
  125. </build>
  126. <distributionManagement>
  127. <repository>
  128. <id>releases</id>
  129. <url>http://192.168.0.167:8081/repository/releases/</url>
  130. </repository>
  131. <snapshotRepository>
  132. <id>snapshots</id>
  133. <url>http://192.168.0.167:8081/repository/snapshots</url>
  134. </snapshotRepository>
  135. </distributionManagement>
  136. </project>