pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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>core</artifactId>
  7. <groupId>cn.com.qmth.examcloud.service</groupId>
  8. <version>0.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>core-main</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cn.com.qmth.examcloud.service</groupId>
  15. <artifactId>core-api</artifactId>
  16. <version>0.1.0</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-test</artifactId>
  21. <scope>test</scope>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <plugins>
  26. <plugin>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-maven-plugin</artifactId>
  29. <configuration><!-- 指定该Main Class为全局的唯一入口 -->
  30. <mainClass>cn.com.qmth.examcloud.service.core.Application</mainClass>
  31. <layout>ZIP</layout>
  32. <includeSystemScope>true</includeSystemScope>
  33. </configuration>
  34. </plugin>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <configuration>
  39. <source>1.8</source>
  40. <target>1.8</target>
  41. </configuration>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. </project>