pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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>ZSKK_DicomServer</artifactId>
  7. <packaging>war</packaging>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <name>ZSKK_DicomServer</name>
  10. <url>http://maven.apache.org</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <jdk.version>12</jdk.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.junit.jupiter</groupId>
  18. <artifactId>junit-jupiter-api</artifactId>
  19. <version>5.5.1</version>
  20. <scope>test</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.jfinal</groupId>
  24. <artifactId>jfinal</artifactId>
  25. <version>4.3</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.alibaba</groupId>
  29. <artifactId>druid</artifactId>
  30. <version>1.1.19</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>log4j</groupId>
  34. <artifactId>log4j</artifactId>
  35. <version>1.2.17</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>mysql</groupId>
  39. <artifactId>mysql-connector-java</artifactId>
  40. <version>8.0.17</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>javax.servlet</groupId>
  44. <artifactId>javax.servlet-api</artifactId>
  45. <version>4.0.1</version>
  46. <scope>provided</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.jfinal</groupId>
  50. <artifactId>jetty-server</artifactId>
  51. <version>2019.3</version>
  52. <scope>provided</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.dcm4che</groupId>
  56. <artifactId>dcm4che-core</artifactId>
  57. <version>5.18.0</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.dcm4che</groupId>
  61. <artifactId>dcm4che-net</artifactId>
  62. <version>5.18.0</version>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <finalName>zskk_dicomserver_v3.0Beta1</finalName>
  67. <plugins>
  68. <plugin>
  69. <artifactId>maven-war-plugin</artifactId>
  70. <version>3.2.3</version>
  71. </plugin>
  72. <plugin>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-compiler-plugin</artifactId>
  75. <version>3.8.1</version>
  76. <configuration>
  77. <source>${jdk.version}</source>
  78. <target>${jdk.version}</target>
  79. </configuration>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. <repositories>
  84. <repository>
  85. <id>Dcm4Che</id>
  86. <name>Dcm4Che</name>
  87. <url>http://www.dcm4che.org/maven2/</url>
  88. <releases>
  89. <enabled>true</enabled>
  90. </releases>
  91. <snapshots>
  92. <enabled>false</enabled>
  93. </snapshots>
  94. </repository>
  95. </repositories>
  96. </project>