pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>com.zskk</groupId>
  4. <artifactId>ZSKK_DicomServer</artifactId>
  5. <packaging>war</packaging>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <name>ZSKK_DicomServer</name>
  8. <url>http://maven.apache.org</url>
  9. <properties>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. <jdk.version>11</jdk.version>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.junit.jupiter</groupId>
  16. <artifactId>junit-jupiter-api</artifactId>
  17. <version>5.5.2</version>
  18. <scope>test</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.jfinal</groupId>
  22. <artifactId>jfinal</artifactId>
  23. <version>4.7</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.alibaba</groupId>
  27. <artifactId>druid</artifactId>
  28. <version>1.1.21</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>log4j</groupId>
  32. <artifactId>log4j</artifactId>
  33. <version>1.2.17</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>mysql</groupId>
  37. <artifactId>mysql-connector-java</artifactId>
  38. <version>8.0.18</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.microsoft.sqlserver</groupId>
  42. <artifactId>mssql-jdbc</artifactId>
  43. <version>7.4.1.jre11</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>javax.servlet</groupId>
  48. <artifactId>javax.servlet-api</artifactId>
  49. <version>4.0.1</version>
  50. <scope>provided</scope>
  51. </dependency>
  52. <!-- <dependency>
  53. <groupId>com.jfinal</groupId>
  54. <artifactId>jetty-server</artifactId>
  55. <version>2019.3</version>
  56. <scope>provided</scope>
  57. </dependency> -->
  58. <dependency>
  59. <groupId>org.dcm4che</groupId>
  60. <artifactId>dcm4che-core</artifactId>
  61. <version>5.22.1</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.dcm4che</groupId>
  65. <artifactId>dcm4che-net</artifactId>
  66. <version>5.22.1</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.dcm4che.tool</groupId>
  70. <artifactId>dcm4che-tool-common</artifactId>
  71. <version>5.22.1</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.squareup.okhttp3</groupId>
  75. <artifactId>okhttp</artifactId>
  76. <version>4.7.2</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.microsoft.sqlserver</groupId>
  80. <artifactId>mssql-jdbc</artifactId>
  81. <version>8.2.2.jre11</version>
  82. </dependency>
  83. </dependencies>
  84. <build>
  85. <finalName>zskk_dicomserver_v3.0.1</finalName>
  86. <plugins>
  87. <plugin>
  88. <artifactId>maven-war-plugin</artifactId>
  89. <version>3.2.3</version>
  90. </plugin>
  91. <plugin>
  92. <groupId>org.apache.maven.plugins</groupId>
  93. <artifactId>maven-compiler-plugin</artifactId>
  94. <version>3.8.1</version>
  95. <configuration>
  96. <source>11</source>
  97. <target>11</target>
  98. </configuration>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. <repositories>
  103. <repository>
  104. <id>Dcm4Che</id>
  105. <name>Dcm4Che</name>
  106. <url>http://www.dcm4che.org/maven2/</url>
  107. <releases>
  108. <enabled>true</enabled>
  109. </releases>
  110. <snapshots>
  111. <enabled>false</enabled>
  112. </snapshots>
  113. </repository>
  114. </repositories>
  115. </project>