pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>org.jeecgframework.boot</groupId>
  6. <artifactId>jeecg-boot-parent</artifactId>
  7. <version>2.4.3</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>jeecg-boot-module-system</artifactId>
  11. <repositories>
  12. <repository>
  13. <id>aliyun</id>
  14. <name>aliyun Repository</name>
  15. <url>https://maven.aliyun.com/nexus/content/groups/public</url>
  16. <snapshots>
  17. <enabled>false</enabled>
  18. </snapshots>
  19. </repository>
  20. <repository>
  21. <id>jeecg</id>
  22. <name>jeecg Repository</name>
  23. <url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  24. <snapshots>
  25. <enabled>false</enabled>
  26. </snapshots>
  27. </repository>
  28. </repositories>
  29. <dependencies>
  30. <!-- <dependency>-->
  31. <!-- <groupId>com.alibaba.cloud</groupId>-->
  32. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>-->
  33. <!-- <version>${spring-cloud-alibaba.version}</version>-->
  34. <!-- </dependency>-->
  35. <!-- <dependency>-->
  36. <!-- <groupId>com.alibaba.cloud</groupId>-->
  37. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>-->
  38. <!-- <version>${spring-cloud-alibaba.version}</version>-->
  39. <!-- </dependency>-->
  40. <!-- <dependency>-->
  41. <!-- <groupId>org.springframework.cloud</groupId>-->
  42. <!-- <artifactId>spring-cloud-starter-openfeign</artifactId>-->
  43. <!-- <version>${spring-cloud-alibaba.version}</version>-->
  44. <!-- </dependency>-->
  45. <dependency>
  46. <groupId>io.github.draco1023</groupId>
  47. <artifactId>poi-tl-ext</artifactId>
  48. <version>0.3.3</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.deepoove</groupId>
  52. <artifactId>poi-tl</artifactId>
  53. <version>1.10.3</version>
  54. </dependency>
  55. <!--rabbitmq消息队列-->
  56. <!-- <dependency>-->
  57. <!-- <groupId>org.jeecgframework.boot</groupId>-->
  58. <!-- <artifactId>jeecg-boot-starter-rabbitmq</artifactId>-->
  59. <!-- </dependency>-->
  60. <dependency>
  61. <groupId>org.jeecgframework.boot</groupId>
  62. <artifactId>jeecg-system-local-api</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.jeecgframework.boot</groupId>
  66. <artifactId>jeecg-boot-module-demo</artifactId>
  67. <version>${jeecgboot.version}</version>
  68. </dependency>
  69. <!--rabbitmq消息队列-->
  70. <!-- <dependency>-->
  71. <!-- <groupId>org.jeecgframework.boot</groupId>-->
  72. <!-- <artifactId>jeecg-boot-starter-rabbitmq</artifactId>-->
  73. <!-- </dependency>-->
  74. <!-- 积木报表 -->
  75. <dependency>
  76. <groupId>org.jeecgframework.jimureport</groupId>
  77. <artifactId>spring-boot-starter-jimureport</artifactId>
  78. <version>1.2.1</version>
  79. <exclusions>
  80. <exclusion>
  81. <groupId>org.jeecgframework</groupId>
  82. <artifactId>autopoi-web</artifactId>
  83. </exclusion>
  84. </exclusions>
  85. </dependency>
  86. <!-- 自定义的,为了能打包 -->
  87. <dependency>
  88. <groupId>com.nanli</groupId>
  89. <artifactId>com-nanli</artifactId>
  90. <version>1.0</version>
  91. <scope>system</scope>
  92. <systemPath>${project.basedir}/src/lib/aspose.slides-15.9.0.jar</systemPath>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.nanli</groupId>
  96. <artifactId>nanlispire</artifactId>
  97. <version>3.9.0</version>
  98. <scope>system</scope>
  99. <systemPath>${project.basedir}/src/lib/spire.doc.free-3.9.0.jar</systemPath>
  100. </dependency>
  101. </dependencies>
  102. <build>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-maven-plugin</artifactId>
  107. <configuration>
  108. <!--微服务模式下修改为true,跳过此打包插件,否则微服务模块无法引用-->
  109. <skip>false</skip>
  110. <includeSystemScope>true</includeSystemScope>
  111. </configuration>
  112. </plugin>
  113. <plugin>
  114. <groupId>org.apache.maven.plugins</groupId>
  115. <artifactId>maven-war-plugin</artifactId>
  116. <version>2.6</version>
  117. <configuration>
  118. <webResources>
  119. <resource>
  120. <!-- 源jar包所在位置, ${project.basedir} 表示当前目录的路径 -->
  121. <directory>${project.basedir}/src/lib</directory>
  122. <!-- 打包后的目标文件夹 ,也就是你打包后的war包或者jar包的目录 -->
  123. <targetPath>WEB-INF/lib</targetPath>
  124. <filtering>false</filtering>
  125. <includes>
  126. <!-- 把所有的jar包都打进去 -->
  127. <include>**/*.jar</include>
  128. </includes>
  129. </resource>
  130. </webResources>
  131. </configuration>
  132. </plugin>
  133. </plugins>
  134. <!--<resources>
  135. <resource>
  136. <directory>src/main/resources</directory>
  137. <filtering>true</filtering>
  138. <excludes>
  139. <exclude>server.jks</exclude>
  140. </excludes>
  141. </resource>
  142. <resource>
  143. <directory>src/main/resources</directory>
  144. <filtering>false</filtering>
  145. <includes>
  146. <include>server.jks</include>
  147. </includes>
  148. </resource>
  149. </resources>-->
  150. </build>
  151. </project>