pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. </dependencies>
  63. <build>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-maven-plugin</artifactId>
  68. <configuration>
  69. <!--微服务模式下修改为true,跳过SpringBoot启动打包插件,否则微服务模块无法引用-->
  70. <skip>${skip.springboot.maven}</skip>
  71. </configuration>
  72. </plugin>
  73. </plugins>
  74. </build>
  75. </project>