pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. <groupId>dicom_monitor</groupId>
  6. <artifactId>dicom_monitor</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <url>http://maven.apache.org</url>
  9. <properties>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  12. <java.version>1.8</java.version>
  13. </properties>
  14. <repositories>
  15. <repository>
  16. <id>org.dcm4che</id>
  17. <name>dcm4che DICOM toolkit and utilities</name>
  18. <url>http://github.com/dcm4che/dcm4che</url>
  19. </repository>
  20. </repositories>
  21. <build>
  22. <finalName>zskk-dicom-monitor</finalName>
  23. <defaultGoal>compile</defaultGoal>
  24. <plugins>
  25. <plugin>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-maven-plugin</artifactId>
  28. <configuration>
  29. <fork>true</fork>
  30. <mainClass>${start-class}</mainClass>
  31. </configuration>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>springloaded</artifactId>
  36. <version>1.2.8.RELEASE</version>
  37. </dependency>
  38. </dependencies>
  39. <executions>
  40. <execution>
  41. <goals>
  42. <goal>repackage</goal>
  43. </goals>
  44. </execution>
  45. </executions>
  46. </plugin>
  47. <plugin>
  48. <artifactId>maven-compiler-plugin</artifactId>
  49. <version>3.7.0</version>
  50. <configuration>
  51. <source>1.8</source>
  52. <target>1.8</target>
  53. </configuration>
  54. </plugin>
  55. <plugin>
  56. <artifactId>maven-assembly-plugin</artifactId>
  57. <version>2.2-beta-5</version>
  58. <configuration>
  59. <archive>
  60. <manifest>
  61. <addClasspath>true</addClasspath>
  62. <mainClass>com.dandian.platform.web.engines.WebStarts</mainClass>
  63. </manifest>
  64. </archive>
  65. <descriptorRefs>
  66. <descriptorRef>jar-with-dependencies</descriptorRef>
  67. </descriptorRefs>
  68. </configuration>
  69. <executions>
  70. <execution>
  71. <id>assemble-all</id>
  72. <phase>package</phase>
  73. <goals>
  74. <goal>single</goal>
  75. </goals>
  76. </execution>
  77. </executions>
  78. </plugin>
  79. </plugins>
  80. </build>
  81. <dependencies>
  82. <dependency>
  83. <groupId>org.apache.commons</groupId>
  84. <artifactId>commons-email</artifactId>
  85. <version>1.4</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.apache.commons</groupId>
  89. <artifactId>commons-io</artifactId>
  90. <version>1.3.2</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>commons-io</groupId>
  94. <artifactId>commons-io</artifactId>
  95. <version>2.6</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>commons-lang</groupId>
  99. <artifactId>commons-lang</artifactId>
  100. <version>2.6</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>commons-httpclient</groupId>
  104. <artifactId>commons-httpclient</artifactId>
  105. <version>3.0.1</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>commons-beanutils</groupId>
  109. <artifactId>commons-beanutils</artifactId>
  110. <version>1.9.3</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-starter</artifactId>
  115. <version>2.0.4.RELEASE</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-configuration-processor</artifactId>
  120. <version>2.0.4.RELEASE</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-autoconfigure</artifactId>
  125. <version>2.0.4.RELEASE</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.springframework.boot</groupId>
  129. <artifactId>spring-boot-autoconfigure-processor</artifactId>
  130. <version>2.0.4.RELEASE</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.springframework.boot</groupId>
  134. <artifactId>spring-boot</artifactId>
  135. <version>2.0.4.RELEASE</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.aliyun.oss</groupId>
  139. <artifactId>aliyun-sdk-oss</artifactId>
  140. <version>2.8.3</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.alibaba</groupId>
  144. <artifactId>fastjson</artifactId>
  145. <version>1.2.51</version>
  146. </dependency>
  147. </dependencies>
  148. </project>