pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.ywt</groupId>
  8. <artifactId>ywt-parent</artifactId>
  9. <!--<relativePath>../ywt-parent/pom.xml</relativePath>-->
  10. <version>1.0.0-SNAPSHOT</version>
  11. </parent>
  12. <artifactId>ywt-biz-common</artifactId>
  13. <name>ywt-biz-common</name>
  14. <description>医务通-业务公共工程</description>
  15. <packaging>jar</packaging>
  16. <!-- 公共属性 -->
  17. <properties>
  18. <java.version>1.8</java.version>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. </properties>
  21. <repositories>
  22. <repository>
  23. <id>nexus</id>
  24. <name>Team Nexus Repository</name>
  25. <url>http://nexus.ywtinfo.com/repository/maven-public/</url>
  26. </repository>
  27. </repositories>
  28. <pluginRepositories>
  29. <pluginRepository>
  30. <id>nexus</id>
  31. <name>Team Nexus Repository</name>
  32. <url>http://nexus.ywtinfo.com/repository/maven-public/</url>
  33. </pluginRepository>
  34. </pluginRepositories>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-data-jpa</artifactId>
  39. <exclusions>
  40. <exclusion>
  41. <groupId>org.slf4j</groupId>
  42. <artifactId>jcl-over-slf4j</artifactId>
  43. </exclusion>
  44. <exclusion>
  45. <groupId>org.slf4j</groupId>
  46. <artifactId>jul-to-slf4j</artifactId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <dependency>
  51. <groupId>javax.validation</groupId>
  52. <artifactId>validation-api</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework</groupId>
  56. <artifactId>spring-jdbc</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.fasterxml.jackson.core</groupId>
  60. <artifactId>jackson-databind</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.fasterxml.jackson.datatype</groupId>
  64. <artifactId>jackson-datatype-jsr310</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.commons</groupId>
  68. <artifactId>commons-lang3</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.slf4j</groupId>
  72. <artifactId>slf4j-api</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.zaxxer</groupId>
  76. <artifactId>HikariCP</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-autoconfigure</artifactId>
  81. <scope>provided</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-data-redis</artifactId>
  86. <scope>provided</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-starter-data-redis</artifactId>
  91. <scope>provided</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.redisson</groupId>
  95. <artifactId>redisson</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>io.springfox</groupId>
  99. <artifactId>springfox-swagger2</artifactId>
  100. <scope>provided</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework</groupId>
  104. <artifactId>spring-web</artifactId>
  105. <scope>provided</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springframework</groupId>
  109. <artifactId>spring-tx</artifactId>
  110. <scope>provided</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework</groupId>
  114. <artifactId>spring-jdbc</artifactId>
  115. <scope>provided</scope>
  116. </dependency>
  117. <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
  118. <dependency>
  119. <groupId>javax.servlet</groupId>
  120. <artifactId>javax.servlet-api</artifactId>
  121. <version>4.0.1</version>
  122. <scope>provided</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.projectlombok</groupId>
  126. <artifactId>lombok</artifactId>
  127. <scope>provided</scope>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.belerweb</groupId>
  131. <artifactId>pinyin4j</artifactId>
  132. <version>2.5.1</version>
  133. </dependency>
  134. <!-- <dependency>-->
  135. <!-- <groupId>com.google.guava</groupId>-->
  136. <!-- <artifactId>guava</artifactId>-->
  137. <!-- </dependency>-->
  138. <dependency>
  139. <groupId>org.springframework.kafka</groupId>
  140. <artifactId>spring-kafka</artifactId>
  141. <scope>provided</scope>
  142. </dependency>
  143. </dependencies>
  144. <build>
  145. <plugins>
  146. <plugin>
  147. <groupId>org.apache.maven.plugins</groupId>
  148. <artifactId>maven-deploy-plugin</artifactId>
  149. <version>3.0.0-M1</version>
  150. </plugin>
  151. </plugins>
  152. </build>
  153. <distributionManagement>
  154. <snapshotRepository>
  155. <id>snapshots</id>
  156. <name>Nexus Snapshot Repository</name>
  157. <url>http://nexus.ywtinfo.com/repository/maven-snapshots/</url>
  158. </snapshotRepository>
  159. <repository>
  160. <id>releases</id>
  161. <name>Nexus Release Repository</name>
  162. <url>http://nexus.ywtinfo.com/repository/maven-releases/</url>
  163. </repository>
  164. </distributionManagement>
  165. </project>