pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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>11</jdk.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.junit.jupiter</groupId>
  18. <artifactId>junit-jupiter-api</artifactId>
  19. <version>5.5.2</version>
  20. <scope>test</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.jfinal</groupId>
  24. <artifactId>jfinal</artifactId>
  25. <version>4.7</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.alibaba</groupId>
  29. <artifactId>druid</artifactId>
  30. <version>1.1.21</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.18</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.19.1</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.dcm4che</groupId>
  61. <artifactId>dcm4che-net</artifactId>
  62. <version>5.19.1</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.dcm4che.tool</groupId>
  66. <artifactId>dcm4che-tool-common</artifactId>
  67. <version>5.19.1</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.squareup.okhttp3</groupId>
  71. <artifactId>okhttp</artifactId>
  72. <version>4.2.2</version>
  73. </dependency>
  74. </dependencies>
  75. <build>
  76. <finalName>zskk_dicomserver_v3.0</finalName>
  77. <plugins>
  78. <plugin>
  79. <artifactId>maven-war-plugin</artifactId>
  80. <version>3.2.3</version>
  81. </plugin>
  82. <plugin>
  83. <groupId>org.apache.maven.plugins</groupId>
  84. <artifactId>maven-compiler-plugin</artifactId>
  85. <version>3.8.1</version>
  86. <configuration>
  87. <source>${jdk.version}</source>
  88. <target>${jdk.version}</target>
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. <repositories>
  94. <repository>
  95. <id>Dcm4Che</id>
  96. <name>Dcm4Che</name>
  97. <url>http://www.dcm4che.org/maven2/</url>
  98. <releases>
  99. <enabled>true</enabled>
  100. </releases>
  101. <snapshots>
  102. <enabled>false</enabled>
  103. </snapshots>
  104. </repository>
  105. </repositories>
  106. </project>