pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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.ywt</groupId>
  7. <artifactId>onemini-hospital-sdk</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <dependencies>
  10. <dependency>
  11. <groupId>org.projectlombok</groupId>
  12. <artifactId>lombok</artifactId>
  13. <version>1.16.20</version>
  14. <scope>compile</scope>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.springframework</groupId>
  18. <artifactId>spring-web</artifactId>
  19. <version>5.1.9.RELEASE</version>
  20. <scope>provided</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>commons-lang</groupId>
  24. <artifactId>commons-lang</artifactId>
  25. <version>2.6</version>
  26. <scope>compile</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.slf4j</groupId>
  30. <artifactId>slf4j-api</artifactId>
  31. <version>1.7.28</version>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>javax.servlet</groupId>
  36. <artifactId>servlet-api</artifactId>
  37. <version>2.5</version>
  38. <scope>provided</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-context</artifactId>
  43. <version>5.0.6.RELEASE</version>
  44. <scope>compile</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.alibaba</groupId>
  48. <artifactId>fastjson</artifactId>
  49. <version>1.2.50</version>
  50. <scope>compile</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.fasterxml.jackson.dataformat</groupId>
  54. <artifactId>jackson-dataformat-yaml</artifactId>
  55. <version>2.5.4</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.fasterxml.jackson.core</groupId>
  59. <artifactId>jackson-annotations</artifactId>
  60. <version>2.5.4</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.fasterxml.jackson.core</groupId>
  64. <artifactId>jackson-databind</artifactId>
  65. <version>2.5.4</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.fasterxml.jackson.core</groupId>
  69. <artifactId>jackson-core</artifactId>
  70. <version>2.5.4</version>
  71. </dependency>
  72. </dependencies>
  73. <build>
  74. <plugins>
  75. <!-- 编译:指定JDK1.8 -->
  76. <plugin>
  77. <groupId>org.apache.maven.plugins</groupId>
  78. <artifactId>maven-compiler-plugin</artifactId>
  79. <configuration>
  80. <source>8</source>
  81. <target>8</target>
  82. <encoding>UTF-8</encoding>
  83. </configuration>
  84. </plugin>
  85. <plugin>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-maven-plugin</artifactId>
  88. <configuration>
  89. <fork>true</fork>
  90. </configuration>
  91. </plugin>
  92. </plugins>
  93. </build>
  94. </project>