pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.qmth.teachcloud.report.business</groupId>
  6. <artifactId>teachcloud-report-business</artifactId>
  7. <version>2.1.0</version>
  8. <build>
  9. <plugins>
  10. <plugin>
  11. <groupId>org.apache.maven.plugins</groupId>
  12. <artifactId>maven-compiler-plugin</artifactId>
  13. <configuration>
  14. <source>8</source>
  15. <target>8</target>
  16. </configuration>
  17. </plugin>
  18. </plugins>
  19. </build>
  20. <packaging>jar</packaging>
  21. <parent>
  22. <groupId>com.qmth.distributed.print.service</groupId>
  23. <artifactId>distributed-print-service</artifactId>
  24. <version>2.1.0</version>
  25. </parent>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.apache.velocity</groupId>
  29. <artifactId>velocity-engine-core</artifactId>
  30. <version>2.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.qmth.teachcloud.common</groupId>
  34. <artifactId>teachcloud-common</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>commons-fileupload</groupId>
  38. <artifactId>commons-fileupload</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.poi</groupId>
  42. <artifactId>poi-ooxml</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.poi</groupId>
  46. <artifactId>poi-ooxml-schemas</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.poi</groupId>
  50. <artifactId>poi</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.aliyun.oss</groupId>
  54. <artifactId>aliyun-sdk-oss</artifactId>
  55. </dependency>
  56. <!-- <dependency>-->
  57. <!-- <groupId>com.qmth.boot</groupId>-->
  58. <!-- <artifactId>data-mysql-mp</artifactId>-->
  59. <!-- </dependency>-->
  60. <dependency>
  61. <groupId>com.qmth.boot</groupId>
  62. <artifactId>data-mybatis-plus</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>io.springfox</groupId>
  66. <artifactId>springfox-swagger2</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.github.xiaoymin</groupId>
  70. <artifactId>swagger-bootstrap-ui</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.jetbrains</groupId>
  74. <artifactId>annotations</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.aliyun</groupId>
  78. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  79. <version>1.1.0</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.itextpdf</groupId>
  83. <artifactId>itextpdf</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.google.zxing</groupId>
  87. <artifactId>core</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.google.zxing</groupId>
  91. <artifactId>javase</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.freemarker</groupId>
  95. <artifactId>freemarker</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>cas.client.core</groupId>
  99. <artifactId>cas</artifactId>
  100. <version>3.2.1</version>
  101. <scope>system</scope>
  102. <systemPath>${project.basedir}/src/main/resources/lib/cas-client-core-3.2.1.jar</systemPath>
  103. </dependency>
  104. </dependencies>
  105. </project>