pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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-empty</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.2.5.RELEASE</version>
  13. <relativePath/> <!-- lookup parent from repository -->
  14. </parent>
  15. <!-- maven 私服 start -->
  16. <repositories>
  17. <repository>
  18. <id>nexus</id>
  19. <name>Team Nexus Repository</name>
  20. <url>http://nexus.ywtinfo.com/repository/maven-public/</url>
  21. </repository>
  22. </repositories>
  23. <pluginRepositories>
  24. <pluginRepository>
  25. <id>nexus</id>
  26. <name>Team Nexus Repository</name>
  27. <url>http://nexus.ywtinfo.com/repository/maven-public/</url>
  28. </pluginRepository>
  29. </pluginRepositories>
  30. <!-- end maven 私服 -->
  31. <dependencies>
  32. <dependency>
  33. <groupId>com.ywt</groupId>
  34. <artifactId>onemini-hospital-sdk</artifactId>
  35. <version>1.0-SNAPSHOT</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.ywt</groupId>
  39. <artifactId>onemini-alipay-sdk</artifactId>
  40. <version>1.0-SNAPSHOT</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-web</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-aop</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>redis.clients</groupId>
  52. <artifactId>jedis</artifactId>
  53. <version>2.7.3</version>
  54. </dependency>
  55. <!--阿里 FastJson依赖-->
  56. <dependency>
  57. <groupId>com.alibaba</groupId>
  58. <artifactId>fastjson</artifactId>
  59. <version>1.2.58</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.google.guava</groupId>
  63. <artifactId>guava</artifactId>
  64. <version>23.0</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.alipay.ptc</groupId>
  68. <artifactId>onemini-sdk</artifactId>
  69. <scope>system</scope>
  70. <version>1.1</version>
  71. <systemPath>${project.basedir}/src/lib/onemini-sdk-1.1.jar</systemPath>
  72. </dependency>
  73. <dependency>
  74. <groupId>ywt</groupId>
  75. <artifactId>ywt-rpc-core</artifactId>
  76. <version>1.0-SNAPSHOT</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.alipay.sdk</groupId>
  80. <artifactId>alipay-easysdk</artifactId>
  81. <version>2.2.2</version>
  82. </dependency>
  83. </dependencies>
  84. <build>
  85. <finalName>alipay-mp-service-1.0-SNAPSHOT</finalName>
  86. <plugins>
  87. <!-- 编译:指定JDK1.8 -->
  88. <plugin>
  89. <groupId>org.apache.maven.plugins</groupId>
  90. <artifactId>maven-compiler-plugin</artifactId>
  91. <configuration>
  92. <source>8</source>
  93. <target>8</target>
  94. <encoding>UTF-8</encoding>
  95. </configuration>
  96. </plugin>
  97. <plugin>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-maven-plugin</artifactId>
  100. <configuration>
  101. <fork>true</fork>
  102. <includeSystemScope>true</includeSystemScope>
  103. </configuration>
  104. </plugin>
  105. </plugins>
  106. </build>
  107. </project>