pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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>tnc-parent</artifactId>
  7. <version>3.2.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>tnc-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. <!-- system api 模块 -->
  31. <dependency>
  32. <groupId>org.jeecgframework.boot</groupId>
  33. <artifactId>tnc-system-api</artifactId>
  34. </dependency>
  35. <!-- sms 模块 -->
  36. <dependency>
  37. <groupId>org.jeecgframework.boot</groupId>
  38. <artifactId>tnc-sms</artifactId>
  39. </dependency>
  40. <!-- online 在线开发模块 -->
  41. <dependency>
  42. <groupId>org.jeecgframework.boot</groupId>
  43. <artifactId>tnc-online</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.hibernate</groupId>
  47. <artifactId>hibernate-core</artifactId>
  48. </dependency>
  49. <!-- <dependency>-->
  50. <!-- <groupId>org.jeecgframework.boot</groupId>-->
  51. <!-- <artifactId>hibernate-re</artifactId>-->
  52. <!-- </dependency>-->
  53. <!-- 企业微信/钉钉 api -->
  54. <dependency>
  55. <groupId>org.jeecgframework</groupId>
  56. <artifactId>jeewx-api</artifactId>
  57. </dependency>
  58. <!-- 积木报表 -->
  59. <dependency>
  60. <groupId>org.jeecgframework.jimureport</groupId>
  61. <artifactId>jimureport-spring-boot-starter</artifactId>
  62. </dependency>
  63. <!-- Flowable 工作流(官方依赖) -->
  64. <dependency>
  65. <groupId>org.flowable</groupId>
  66. <artifactId>flowable-spring-boot-starter-process</artifactId>
  67. <version>6.8.0</version>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-maven-plugin</artifactId>
  75. <configuration>
  76. <!--SpringCloud运行环境 ,值改为true跳过SpringBoot启动打包插件 -->
  77. <skip>${skip.springboot.maven}</skip>
  78. </configuration>
  79. </plugin>
  80. <!-- assembly 插件配置 -->
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-assembly-plugin</artifactId>
  84. <configuration>
  85. <descriptors>
  86. <!--suppress UnresolvedMavenProperty -->
  87. <descriptor>src/main/assembly/assembly-${profile.name}.xml</descriptor>
  88. </descriptors>
  89. <tarLongFileMode>gnu</tarLongFileMode>
  90. </configuration>
  91. <executions>
  92. <execution>
  93. <id>make-assembly</id>
  94. <phase>package</phase>
  95. <goals>
  96. <goal>single</goal>
  97. </goals>
  98. </execution>
  99. </executions>
  100. </plugin>
  101. </plugins>
  102. </build>
  103. </project>