pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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.4.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>jeecg-boot-module-system</artifactId>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.jeecgframework.boot</groupId>
  14. <artifactId>jeecg-system-local-api</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.hibernate</groupId>
  18. <artifactId>hibernate-core</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.jeecgframework.boot</groupId>
  22. <artifactId>hibernate-re</artifactId>
  23. </dependency>
  24. <!-- 企业微信/钉钉 api -->
  25. <dependency>
  26. <groupId>org.jeecgframework</groupId>
  27. <artifactId>jeewx-api</artifactId>
  28. </dependency>
  29. <!-- 积木报表 -->
  30. <dependency>
  31. <groupId>org.jeecgframework.jimureport</groupId>
  32. <artifactId>jimureport-spring-boot-starter</artifactId>
  33. </dependency>
  34. <!-- DEMO 示例模块 -->
  35. <dependency>
  36. <groupId>org.jeecgframework.boot</groupId>
  37. <artifactId>jeecg-boot-module-demo</artifactId>
  38. <version>${jeecgboot.version}</version>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-maven-plugin</artifactId>
  46. <configuration>
  47. <!--SpringCloud运行环境 ,值改为true跳过SpringBoot启动打包插件 -->
  48. <skip>${skip.springboot.maven}</skip>
  49. </configuration>
  50. </plugin>
  51. </plugins>
  52. </build>
  53. </project>