pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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>jeecg-module-system</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>3.4.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>screenserver</artifactId>
  12. <dependencies>
  13. <!-- SYSTEM 系统管理模块 -->
  14. <dependency>
  15. <groupId>org.jeecgframework.boot</groupId>
  16. <artifactId>jeecg-system-biz</artifactId>
  17. <version>${jeecgboot.version}</version>
  18. </dependency>
  19. <!-- DEMO 示例模块 -->
  20. <dependency>
  21. <groupId>org.jeecgframework.boot</groupId>
  22. <artifactId>jeecg-module-demo</artifactId>
  23. <version>${jeecgboot.version}</version>
  24. </dependency>
  25. <!-- 固安模块 -->
  26. <dependency>
  27. <groupId>org.jeecgframework.boot</groupId>
  28. <artifactId>module-guan</artifactId>
  29. <version>${jeecgboot.version}</version>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <plugins>
  34. <plugin>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-maven-plugin</artifactId>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>