pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.zskk</groupId>
  6. <artifactId>PacsOnline_Wechat_Patient</artifactId>
  7. <packaging>war</packaging>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <name>PacsOnline_Wechat_Patient</name>
  10. <url>http://maven.apache.org</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <jdk.version>1.8</jdk.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.junit.jupiter</groupId>
  18. <artifactId>junit-jupiter-api</artifactId>
  19. <version>5.4.1</version>
  20. <scope>test</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.jfinal</groupId>
  24. <artifactId>jfinal-weixin</artifactId>
  25. <version>2.3</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.jfinal</groupId>
  29. <artifactId>jfinal</artifactId>
  30. <version>3.7</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.alibaba</groupId>
  34. <artifactId>druid</artifactId>
  35. <version>1.1.14</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>log4j</groupId>
  39. <artifactId>log4j</artifactId>
  40. <version>1.2.17</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.alibaba</groupId>
  44. <artifactId>fastjson</artifactId>
  45. <version>1.2.56</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.squareup.okhttp3</groupId>
  49. <artifactId>okhttp</artifactId>
  50. <version>3.14.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. <version>8.0.15</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>redis.clients</groupId>
  59. <artifactId>jedis</artifactId>
  60. <version>2.7.2</version>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <finalName>wx_patient</finalName>
  65. <plugins>
  66. <plugin>
  67. <artifactId>maven-war-plugin</artifactId>
  68. <version>3.2.2</version>
  69. </plugin>
  70. <plugin>
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-compiler-plugin</artifactId>
  73. <version>3.8.0</version>
  74. <configuration>
  75. <source>${jdk.version}</source>
  76. <target>${jdk.version}</target>
  77. </configuration>
  78. </plugin>
  79. </plugins>
  80. </build>
  81. </project>