pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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>com.microsoft.sqlserver</groupId>
  44. <artifactId>mssql-jdbc</artifactId>
  45. <version>7.4.1.jre11</version>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>javax.servlet</groupId>
  50. <artifactId>javax.servlet-api</artifactId>
  51. <version>4.0.1</version>
  52. <scope>provided</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.jfinal</groupId>
  56. <artifactId>jetty-server</artifactId>
  57. <version>2019.3</version>
  58. <scope>provided</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.dcm4che</groupId>
  62. <artifactId>dcm4che-core</artifactId>
  63. <version>5.19.1</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.dcm4che</groupId>
  67. <artifactId>dcm4che-net</artifactId>
  68. <version>5.19.1</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.dcm4che.tool</groupId>
  72. <artifactId>dcm4che-tool-common</artifactId>
  73. <version>5.19.1</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.squareup.okhttp3</groupId>
  77. <artifactId>okhttp</artifactId>
  78. <version>4.2.2</version>
  79. </dependency>
  80. </dependencies>
  81. <build>
  82. <finalName>zskk_dicomserver_v3.0</finalName>
  83. <plugins>
  84. <plugin>
  85. <artifactId>maven-war-plugin</artifactId>
  86. <version>3.2.3</version>
  87. </plugin>
  88. <plugin>
  89. <groupId>org.apache.maven.plugins</groupId>
  90. <artifactId>maven-compiler-plugin</artifactId>
  91. <version>3.8.1</version>
  92. <configuration>
  93. <source>${jdk.version}</source>
  94. <target>${jdk.version}</target>
  95. </configuration>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. <repositories>
  100. <repository>
  101. <id>Dcm4Che</id>
  102. <name>Dcm4Che</name>
  103. <url>http://www.dcm4che.org/maven2/</url>
  104. <releases>
  105. <enabled>true</enabled>
  106. </releases>
  107. <snapshots>
  108. <enabled>false</enabled>
  109. </snapshots>
  110. </repository>
  111. </repositories>
  112. </project>