pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>jeecg-boot-module-system</artifactId>
  6. <version>2.1.4</version>
  7. <parent>
  8. <groupId>org.jeecgframework.boot</groupId>
  9. <artifactId>jeecg-boot-parent</artifactId>
  10. <version>2.1.4</version>
  11. </parent>
  12. <repositories>
  13. <repository>
  14. <id>aliyun</id>
  15. <name>aliyun Repository</name>
  16. <url>http://maven.aliyun.com/nexus/content/groups/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>http://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-boot-base-common</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.jeecgframework.boot</groupId>
  37. <artifactId>jeecg-boot-module-activiti</artifactId>
  38. <version>2.1.4</version>
  39. </dependency>
  40. <!--钉钉对接jar包-->
  41. <dependency>
  42. <groupId>com.dingtalk.api</groupId>
  43. <artifactId>taobao-sdk</artifactId>
  44. <version>0.0.1-SNAPSHOT</version>
  45. <scope>system</scope>
  46. <systemPath>${project.basedir}/src/main/resources/lib/taobao-sdk-java-auto.jar</systemPath>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-maven-plugin</artifactId>
  54. <!-- 非分离式打包 -->
  55. <configuration>
  56. <fork>false</fork>
  57. <includeSystemScope>true</includeSystemScope>
  58. </configuration>
  59. <!-- 分离式打包
  60. <configuration>
  61. <layout>ZIP</layout>
  62. <includes>
  63. <include>
  64. <groupId>nothing</groupId>
  65. <artifactId>nothing</artifactId>
  66. </include>
  67. </includes>
  68. </configuration>
  69. <executions>
  70. <execution>
  71. <goals>
  72. <goal>repackage</goal>
  73. </goals>
  74. </execution>
  75. </executions>-->
  76. </plugin>
  77. </plugins>
  78. </build>
  79. </project>