pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.paper.library.business</groupId>
  6. <artifactId>paper-library-business</artifactId>
  7. <version>1.0.2</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.paper.library.service</groupId>
  23. <artifactId>paper-library-service</artifactId>
  24. <version>1.0.2</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.paper.library.common</groupId>
  34. <artifactId>paper-library-common</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.jetbrains</groupId>
  38. <artifactId>annotations</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.itextpdf</groupId>
  42. <artifactId>itextpdf</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework</groupId>
  46. <artifactId>spring-test</artifactId>
  47. <version>5.2.12.RELEASE</version>
  48. </dependency>
  49. </dependencies>
  50. </project>