pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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.distributed.print.business</groupId>
  6. <artifactId>distributed-print-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>org.jetbrains</groupId>
  38. <artifactId>annotations</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.aliyun</groupId>
  42. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  43. <version>1.1.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.itextpdf</groupId>
  47. <artifactId>itextpdf</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.google.zxing</groupId>
  51. <artifactId>core</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.google.zxing</groupId>
  55. <artifactId>javase</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.freemarker</groupId>
  59. <artifactId>freemarker</artifactId>
  60. </dependency>
  61. </dependencies>
  62. </project>