pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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>3.1.0</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/repository/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>org.jeecgframework.boot</groupId>
  32. <artifactId>jeecg-system-local-api</artifactId>
  33. </dependency>
  34. <!-- jeewx api -->
  35. <dependency>
  36. <groupId>org.jeecgframework</groupId>
  37. <artifactId>jeewx-api</artifactId>
  38. <version>1.4.7</version>
  39. <exclusions>
  40. <exclusion>
  41. <artifactId>commons-beanutils</artifactId>
  42. <groupId>commons-beanutils</groupId>
  43. </exclusion>
  44. <exclusion>
  45. <artifactId>commons-lang</artifactId>
  46. <groupId>commons-lang</groupId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <!-- 积木报表 -->
  51. <dependency>
  52. <groupId>org.jeecgframework.jimureport</groupId>
  53. <artifactId>jimureport-spring-boot-starter</artifactId>
  54. <version>1.4.4-beta</version>
  55. </dependency>
  56. <!-- DEMO 示例模块【微服务启动请注释掉】 -->
  57. <dependency>
  58. <groupId>org.jeecgframework.boot</groupId>
  59. <artifactId>jeecg-boot-module-demo</artifactId>
  60. <version>3.1.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.jeecgframework</groupId>
  64. <artifactId>autopoi</artifactId>
  65. <version>1.3.9</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.belerweb</groupId>
  69. <artifactId>pinyin4j</artifactId>
  70. <version>2.5.0</version>
  71. </dependency>
  72. </dependencies>
  73. <build>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-maven-plugin</artifactId>
  78. <configuration>
  79. <!--微服务模式下修改为true,跳过SpringBoot启动打包插件,否则微服务模块无法引用-->
  80. <skip>${skip.springboot.maven}</skip>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. </project>