pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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 Maven Webapp</name>
  10. <url>http://maven.apache.org</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <jdk.version>11</jdk.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.junit.jupiter</groupId>
  18. <artifactId>junit-jupiter-api</artifactId>
  19. <version>5.4.0</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.6</version>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.alibaba</groupId>
  35. <artifactId>druid</artifactId>
  36. <version>1.1.14</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>log4j</groupId>
  40. <artifactId>log4j</artifactId>
  41. <version>1.2.17</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.alibaba</groupId>
  45. <artifactId>fastjson</artifactId>
  46. <version>1.2.56</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.squareup.okhttp3</groupId>
  50. <artifactId>okhttp</artifactId>
  51. <version>3.13.1</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>mysql</groupId>
  55. <artifactId>mysql-connector-java</artifactId>
  56. <version>8.0.15</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.jfinal</groupId>
  60. <artifactId>jetty-server</artifactId>
  61. <version>2019.3</version>
  62. <scope>provided</scope>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <finalName>PacsOnline_Wechat_Patient</finalName>
  67. <plugins>
  68. <plugin>
  69. <artifactId>maven-war-plugin</artifactId>
  70. <version>3.2.2</version>
  71. </plugin>
  72. <plugin>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-compiler-plugin</artifactId>
  75. <version>3.8.0</version>
  76. <configuration>
  77. <source>${jdk.version}</source>
  78. <target>${jdk.version}</target>
  79. </configuration>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. </project>