pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>jeecg-boot-module-system</artifactId>
  6. <version>2.1.2</version>
  7. <parent>
  8. <groupId>org.jeecgframework.boot</groupId>
  9. <artifactId>jeecg-boot-parent</artifactId>
  10. <version>2.1.2</version>
  11. </parent>
  12. <repositories>
  13. <repository>
  14. <id>aliyun</id>
  15. <name>aliyun Repository</name>
  16. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  17. <snapshots>
  18. <enabled>false</enabled>
  19. </snapshots>
  20. </repository>
  21. <repository>
  22. <id>jeecg</id>
  23. <name>jeecg Repository</name>
  24. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  25. <snapshots>
  26. <enabled>false</enabled>
  27. </snapshots>
  28. </repository>
  29. <!--<repository>-->
  30. <!--<id>org.dcm4chee</id>-->
  31. <!--<name>DCM4CHE</name>-->
  32. <!--<url>http://www.dcm4che.org/maven2/</url>-->
  33. <!--</repository>-->
  34. </repositories>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.jeecgframework.boot</groupId>
  38. <artifactId>jeecg-boot-base-common</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.github.tobato</groupId>
  42. <artifactId>fastdfs-client</artifactId>
  43. <version>1.26.7</version>
  44. </dependency>
  45. <!-- https://mvnrepository.com/artifact/org.dcm4che/dcm4che-core -->
  46. <dependency>
  47. <groupId>org.dcm4che</groupId>
  48. <artifactId>dcm4che-core</artifactId>
  49. <version>5.20.0</version>
  50. <!--排除这个slf4j-log4j12-->
  51. <exclusions>
  52. <exclusion>
  53. <groupId>org.slf4j</groupId>
  54. <artifactId>slf4j-log4j12</artifactId>
  55. </exclusion>
  56. </exclusions>
  57. </dependency>
  58. <!-- https://mvnrepository.com/artifact/org.dcm4che/dcm4che-net -->
  59. <dependency>
  60. <groupId>org.dcm4che</groupId>
  61. <artifactId>dcm4che-net</artifactId>
  62. <version>5.20.0</version>
  63. <!--排除这个slf4j-log4j12-->
  64. <exclusions>
  65. <exclusion>
  66. <groupId>org.slf4j</groupId>
  67. <artifactId>slf4j-log4j12</artifactId>
  68. </exclusion>
  69. </exclusions>
  70. </dependency>
  71. <!-- https://mvnrepository.com/artifact/org.dcm4che.tool/dcm4che-tool-common -->
  72. <dependency>
  73. <groupId>org.dcm4che.tool</groupId>
  74. <artifactId>dcm4che-tool-common</artifactId>
  75. <version>5.17.0</version>
  76. </dependency>
  77. </dependencies>
  78. <build>
  79. <plugins>
  80. <plugin>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-maven-plugin</artifactId>
  83. </plugin>
  84. </plugins>
  85. </build>
  86. </project>