pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright (c) 2014, 2023, Chengdu Minto Technology Co.,LTD. All rights reserved.
  4. ~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  5. -->
  6. <project xmlns="http://maven.apache.org/POM/4.0.0"
  7. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  8. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  9. <parent>
  10. <artifactId>tip-root</artifactId>
  11. <groupId>com.minto</groupId>
  12. <version>standard_V8.0_SP1_feature_M7</version>
  13. </parent>
  14. <modelVersion>4.0.0</modelVersion>
  15. <packaging>jar</packaging>
  16. <artifactId>minto-tip-api</artifactId>
  17. <dependencies>
  18. <dependency>
  19. <groupId>cn.hutool</groupId>
  20. <artifactId>hutool-all</artifactId>
  21. <version>5.8.9</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.google.guava</groupId>
  25. <artifactId>guava</artifactId>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.projectlombok</groupId>
  30. <artifactId>lombok</artifactId>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.hibernate.validator</groupId>
  35. <artifactId>hibernate-validator</artifactId>
  36. <scope>provided</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springdoc</groupId>
  40. <artifactId>springdoc-openapi-ui</artifactId>
  41. <scope>provided</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.cloud</groupId>
  45. <artifactId>spring-cloud-openfeign-core</artifactId>
  46. <scope>provided</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>javax.servlet</groupId>
  50. <artifactId>javax.servlet-api</artifactId>
  51. <scope>provided</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>bsh</groupId>
  55. <artifactId>bsh</artifactId>
  56. <version>1.3.0</version>
  57. <scope>provided</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.minto</groupId>
  61. <artifactId>tip-legend-util</artifactId>
  62. <version>${tip-legend.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.github.albfernandez</groupId>
  66. <artifactId>jbpm-jpdl</artifactId>
  67. <exclusions>
  68. <exclusion>
  69. <groupId>net.sf.ehcache</groupId>
  70. <artifactId>ehcache</artifactId>
  71. </exclusion>
  72. </exclusions>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.lucene</groupId>
  76. <artifactId>lucene-queryparser</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.lucene</groupId>
  80. <artifactId>lucene-highlighter</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.minto</groupId>
  84. <artifactId>tip-groovy-spring-boot-starter</artifactId>
  85. <scope>provided</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.minto</groupId>
  89. <artifactId>tc-system-api</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.minto</groupId>
  93. <artifactId>tc-task-api</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.minto</groupId>
  97. <artifactId>tc-matrix-api</artifactId>
  98. </dependency>
  99. </dependencies>
  100. </project>