pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.ynfy</groupId>
  7. <artifactId>exam</artifactId>
  8. <version>3.6.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.ynfy</groupId>
  12. <artifactId>web</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.ynfy</groupId>
  16. <artifactId>core</artifactId>
  17. </dependency>
  18. <!-- SYSTEM 系统管理模块 -->
  19. <dependency>
  20. <groupId>com.ynfy</groupId>
  21. <artifactId>system-biz</artifactId>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <finalName>exam</finalName>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-maven-plugin</artifactId>
  30. <configuration>
  31. <includeSystemScope>true</includeSystemScope>
  32. </configuration>
  33. </plugin>
  34. </plugins>
  35. </build>
  36. </project>