pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" 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. <parent>
  6. <groupId>com.cloud</groupId>
  7. <artifactId>parent</artifactId>
  8. <version>2.0</version>
  9. </parent>
  10. <artifactId>xr_bootstrap</artifactId>
  11. <name>xr_bootstrap</name>
  12. <description>项目启动模块</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>de.codecentric</groupId>
  16. <artifactId>spring-boot-admin-starter-client</artifactId>
  17. <version>${spring-boot-admin.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.cloud</groupId>
  21. <artifactId>framework</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.cloud</groupId>
  25. <artifactId>scheduled</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.cloud</groupId>
  29. <artifactId>system</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.cloud</groupId>
  33. <artifactId>web</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-devtools</artifactId>
  38. <version>${spring-boot.version}</version>
  39. <optional>true</optional>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.belerweb</groupId>
  43. <artifactId>pinyin4j</artifactId>
  44. <version>2.5.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>fr.opensagres.xdocreport</groupId>
  48. <artifactId>fr.opensagres.xdocreport.document</artifactId>
  49. <version>1.0.5</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>fr.opensagres.xdocreport</groupId>
  53. <artifactId>org.apache.poi.xwpf.converter.xhtml</artifactId>
  54. <version>1.0.5</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.poi</groupId>
  58. <artifactId>poi</artifactId>
  59. <version>3.12</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.poi</groupId>
  63. <artifactId>poi-scratchpad</artifactId>
  64. <version>3.12</version>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. <configuration>
  73. <fork>true</fork>
  74. <addResources>true</addResources>
  75. </configuration>
  76. <version>${spring-boot.version}</version>
  77. <executions>
  78. <execution>
  79. <goals>
  80. <goal>repackage</goal>
  81. </goals>
  82. </execution>
  83. </executions>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. </project>