pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. <parent>
  5. <groupId>org.jeecgframework.boot</groupId>
  6. <artifactId>jeecg-boot-parent</artifactId>
  7. <version>2.4.2</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>http://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>http://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>org.jeecgframework.boot</groupId>
  32. <artifactId>jeecg-system-local-api</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.jeecgframework.boot</groupId>
  36. <artifactId>jeecg-boot-starter-redis</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.jeecgframework.boot</groupId>
  40. <artifactId>jeecg-boot-module-demo</artifactId>
  41. <version>${jeecgboot.version}</version>
  42. </dependency>
  43. <!-- 积木报表 -->
  44. <dependency>
  45. <groupId>com.jimureport</groupId>
  46. <artifactId>spring-boot-starter-jimureport</artifactId>
  47. <version>1.1.09-beta</version>
  48. <exclusions>
  49. <exclusion>
  50. <artifactId>autopoi-web</artifactId>
  51. <groupId>org.jeecgframework</groupId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-maven-plugin</artifactId>
  61. <configuration>
  62. <!--微服务模式下修改为true,跳过此打包插件,否则微服务模块无法引用-->
  63. <skip>false</skip>
  64. </configuration>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>