pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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-service</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-report</artifactId>
  17. <dependencies>
  18. <!-- ureport报表 -->
  19. <dependency>
  20. <groupId>com.bstek.ureport</groupId>
  21. <artifactId>ureport2-console</artifactId>
  22. <exclusions>
  23. <exclusion>
  24. <artifactId>spring-jdbc</artifactId>
  25. <groupId>org.springframework</groupId>
  26. </exclusion>
  27. <exclusion>
  28. <artifactId>spring-web</artifactId>
  29. <groupId>org.springframework</groupId>
  30. </exclusion>
  31. <exclusion>
  32. <artifactId>ooxml-schemas</artifactId>
  33. <groupId>org.apache.poi</groupId>
  34. </exclusion>
  35. <exclusion>
  36. <artifactId>antlr4-runtime</artifactId>
  37. <groupId>org.antlr</groupId>
  38. </exclusion>
  39. </exclusions>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.antlr</groupId>
  43. <artifactId>antlr4</artifactId>
  44. <version>4.8</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>javax.servlet</groupId>
  48. <artifactId>javax.servlet-api</artifactId>
  49. </dependency>
  50. </dependencies>
  51. </project>