pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. <groupId>com.yihu.hos</groupId>
  7. <artifactId>hos-web-framework-dependencies</artifactId>
  8. <version>1.1.1-SNAPSHOT</version>
  9. <packaging>pom</packaging>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>1.4.1.RELEASE</version>
  14. <relativePath/> <!-- lookup parent from repository1212 -->
  15. </parent>
  16. <properties>
  17. </properties>
  18. <pluginRepositories>
  19. <pluginRepository>
  20. <id>pluginCentral</id>
  21. <name>pluginCentral</name>
  22. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  23. </pluginRepository>
  24. <pluginRepository>
  25. <id>pluginReleases</id>
  26. <name>pluginReleases</name>
  27. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  28. </pluginRepository>
  29. </pluginRepositories>
  30. <!--用于发布到服务器 对应setting的对应server表情里面的id -->
  31. <distributionManagement>
  32. <repository>
  33. <id>Releases</id>
  34. <name>Releases</name>
  35. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  36. </repository>
  37. <snapshotRepository>
  38. <id>snapshots</id>
  39. <name>Snapshots</name>
  40. <url>http://172.19.103.47:8081/nexus/content/repositories/snapshots/</url>
  41. </snapshotRepository>
  42. </distributionManagement>
  43. <repositories>
  44. <repository>
  45. <id>repositoryCentral</id>
  46. <name>repositoryCentral</name>
  47. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  48. </repository>
  49. <repository>
  50. <id>repositoryReleases</id>
  51. <name>repositoryReleases</name>
  52. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  53. </repository>
  54. </repositories>
  55. <dependencies>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-web</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.mongodb</groupId>
  66. <artifactId>mongo-java-driver</artifactId>
  67. <version>3.2.2</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>mysql</groupId>
  71. <artifactId>mysql-connector-java</artifactId>
  72. <version>5.1.37</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.oracle</groupId>
  76. <artifactId>ojdbc6</artifactId>
  77. <version>11.2.0.3.0</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.yihu.hos</groupId>
  81. <artifactId>hos-core</artifactId>
  82. <version>1.1.1-SNAPSHOT</version>
  83. </dependency>
  84. <!-- swagger start -->
  85. <dependency>
  86. <groupId>io.springfox</groupId>
  87. <artifactId>springfox-swagger2</artifactId>
  88. <version>2.4.0</version>
  89. <exclusions>
  90. <exclusion>
  91. <artifactId>classmate</artifactId>
  92. <groupId>com.fasterxml</groupId>
  93. </exclusion>
  94. </exclusions>
  95. </dependency>
  96. <dependency>
  97. <groupId>io.springfox</groupId>
  98. <artifactId>springfox-swagger-ui</artifactId>
  99. <version>2.4.0</version>
  100. </dependency>
  101. <!-- swagger end -->
  102. <!-- test start -->
  103. <dependency>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-starter-test</artifactId>
  106. <scope>test</scope>
  107. </dependency>
  108. <!-- test end -->
  109. <dependency>
  110. <groupId>javax.transaction</groupId>
  111. <artifactId>javax.transaction-api</artifactId>
  112. <version>1.2</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.yihu.core</groupId>
  116. <artifactId>ehr-dbhelper</artifactId>
  117. <version>1.1.9</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.yihu.core</groupId>
  121. <artifactId>html2image</artifactId>
  122. <version>0.9</version>
  123. </dependency>
  124. </dependencies>
  125. <build>
  126. <plugins>
  127. <plugin>
  128. <groupId>org.apache.maven.plugins</groupId>
  129. <artifactId>maven-compiler-plugin</artifactId>
  130. <configuration>
  131. <source>1.8</source>
  132. <target>1.8</target>
  133. </configuration>
  134. </plugin>
  135. </plugins>
  136. </build>
  137. </project>