pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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.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>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-bytedance</artifactId>
  37. <version>${jeecgboot.version}</version>
  38. </dependency>
  39. <!-- 积木报表 -->
  40. <dependency>
  41. <groupId>org.jeecgframework.jimureport</groupId>
  42. <artifactId>spring-boot-starter-jimureport</artifactId>
  43. <version>1.3.1-beta2</version>
  44. <exclusions>
  45. <exclusion>
  46. <groupId>org.jeecgframework</groupId>
  47. <artifactId>autopoi-web</artifactId>
  48. </exclusion>
  49. </exclusions>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <plugins>
  54. <plugin>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-maven-plugin</artifactId>
  57. <configuration>
  58. <!--微服务模式下修改为true,跳过此打包插件,否则微服务模块无法引用-->
  59. <skip>false</skip>
  60. </configuration>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </project>