pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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_M12</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. <exclusion>
  40. <groupId>commons-beanutils</groupId>
  41. <artifactId>commons-beanutils-core</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.antlr</groupId>
  47. <artifactId>antlr4</artifactId>
  48. <version>4.8</version>
  49. </dependency>
  50. </dependencies>
  51. </project>