pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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_M12</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>com.google.guava</groupId>
  20. <artifactId>guava</artifactId>
  21. <scope>provided</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.projectlombok</groupId>
  25. <artifactId>lombok</artifactId>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.hibernate.validator</groupId>
  30. <artifactId>hibernate-validator</artifactId>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springdoc</groupId>
  35. <artifactId>springdoc-openapi-ui</artifactId>
  36. <scope>provided</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.cloud</groupId>
  40. <artifactId>spring-cloud-openfeign-core</artifactId>
  41. <scope>provided</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>javax.servlet</groupId>
  45. <artifactId>javax.servlet-api</artifactId>
  46. <scope>provided</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>bsh</groupId>
  50. <artifactId>bsh</artifactId>
  51. <version>1.3.0</version>
  52. <scope>provided</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.minto</groupId>
  56. <artifactId>tip-legend-util</artifactId>
  57. <version>${tip-legend.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.github.albfernandez</groupId>
  61. <artifactId>jbpm-jpdl</artifactId>
  62. <exclusions>
  63. <exclusion>
  64. <groupId>net.sf.ehcache</groupId>
  65. <artifactId>ehcache</artifactId>
  66. </exclusion>
  67. </exclusions>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.lucene</groupId>
  71. <artifactId>lucene-queryparser</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.lucene</groupId>
  75. <artifactId>lucene-highlighter</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.minto</groupId>
  79. <artifactId>tip-groovy-spring-boot-starter</artifactId>
  80. <scope>provided</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.minto</groupId>
  84. <artifactId>tc-system-api</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.minto</groupId>
  88. <artifactId>tc-task-api</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.minto</groupId>
  92. <artifactId>tc-matrix-api</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.minto</groupId>
  96. <artifactId>tip-sqltoy-spring-boot-starter</artifactId>
  97. </dependency>
  98. </dependencies>
  99. </project>