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>2.4.6</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>jeecg-boot-module-system</artifactId>
  11. <packaging>war</packaging>
  12. <repositories>
  13. <repository>
  14. <id>aliyun</id>
  15. <name>aliyun Repository</name>
  16. <url>https://maven.aliyun.com/repository/public</url>
  17. <snapshots>
  18. <enabled>false</enabled>
  19. </snapshots>
  20. </repository>
  21. <repository>
  22. <id>jeecg</id>
  23. <name>jeecg Repository</name>
  24. <url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  25. <snapshots>
  26. <enabled>false</enabled>
  27. </snapshots>
  28. </repository>
  29. </repositories>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.jeecgframework.boot</groupId>
  33. <artifactId>jeecg-system-local-api</artifactId>
  34. </dependency>
  35. <!-- jeewx api -->
  36. <dependency>
  37. <groupId>org.jeecgframework</groupId>
  38. <artifactId>jeewx-api</artifactId>
  39. <version>1.4.6</version>
  40. <exclusions>
  41. <exclusion>
  42. <artifactId>commons-beanutils</artifactId>
  43. <groupId>commons-beanutils</groupId>
  44. </exclusion>
  45. <exclusion>
  46. <artifactId>commons-lang</artifactId>
  47. <groupId>commons-lang</groupId>
  48. </exclusion>
  49. </exclusions>
  50. </dependency>
  51. <!-- 积木报表 -->
  52. <dependency>
  53. <groupId>org.jeecgframework.jimureport</groupId>
  54. <artifactId>jimureport-spring-boot-starter</artifactId>
  55. <version>1.4.32</version>
  56. </dependency>
  57. <!-- DEMO 示例模块【微服务启动请注释掉】 -->
  58. <dependency>
  59. <groupId>org.jeecgframework.boot</groupId>
  60. <artifactId>jeecg-boot-module-demo</artifactId>
  61. <version>2.4.6</version>
  62. </dependency>
  63. </dependencies>
  64. <!-- <build>
  65. <plugins>
  66. <plugin>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-maven-plugin</artifactId>
  69. <configuration>
  70. &lt;!&ndash;微服务模式下修改为true,跳过此打包插件,否则微服务模块无法引用&ndash;&gt;
  71. <skip>false</skip>
  72. </configuration>
  73. </plugin>
  74. </plugins>
  75. </build>-->
  76. </project>