pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. </dependencies>
  64. <build>
  65. <plugins>
  66. <plugin>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-maven-plugin</artifactId>
  69. <configuration>
  70. <!--SpringCloud运行环境 ,值改为true跳过SpringBoot启动打包插件 -->
  71. <skip>${skip.springboot.maven}</skip>
  72. </configuration>
  73. </plugin>
  74. <!-- assembly 插件配置 -->
  75. <plugin>
  76. <groupId>org.apache.maven.plugins</groupId>
  77. <artifactId>maven-assembly-plugin</artifactId>
  78. <configuration>
  79. <descriptors>
  80. <descriptor>src/main/assembly/assembly-${profile.name}.xml</descriptor>
  81. </descriptors>
  82. <tarLongFileMode>gnu</tarLongFileMode>
  83. </configuration>
  84. <executions>
  85. <execution>
  86. <id>make-assembly</id>
  87. <phase>package</phase>
  88. <goals>
  89. <goal>single</goal>
  90. </goals>
  91. </execution>
  92. </executions>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. </project>