pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>pm</artifactId>
  7. <groupId>com.pm</groupId>
  8. <version>3.8.8</version>
  9. </parent>
  10. <build>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <configuration>
  16. <source>11</source>
  17. <target>11</target>
  18. </configuration>
  19. </plugin>
  20. </plugins>
  21. </build>
  22. <modelVersion>4.0.0</modelVersion>
  23. <artifactId>pm-system</artifactId>
  24. <description>
  25. system系统模块
  26. </description>
  27. <dependencies>
  28. <!-- 通用工具-->
  29. <dependency>
  30. <groupId>com.pm</groupId>
  31. <artifactId>pm-common</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>net.java.dev.jna</groupId>
  35. <artifactId>jna-platform</artifactId>
  36. <version>5.17.0</version>
  37. <scope>compile</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.aspectj</groupId>
  41. <artifactId>aspectjweaver</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.projectlombok</groupId>
  45. <artifactId>lombok</artifactId>
  46. <scope>provided</scope>
  47. </dependency>
  48. </dependencies>
  49. </project>