pom.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>cn.com.qmth.examcloud.logic.reports</groupId>
  8. <artifactId>examcloud-logic-reports</artifactId>
  9. <version>2.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>examcloud-logic-reports-starter</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cn.com.qmth.examcloud.logic.reports</groupId>
  15. <artifactId>examcloud-logic-reports-controller</artifactId>
  16. <version>${examcloud.version}</version>
  17. </dependency>
  18. </dependencies>
  19. <build>
  20. <plugins>
  21. <plugin>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-maven-plugin</artifactId>
  24. <configuration>
  25. <mainClass>org.examcloud.logic.reports.starter.ServiceLogicReportsApplication</mainClass>
  26. <layout>ZIP</layout>
  27. <includeSystemScope>true</includeSystemScope>
  28. </configuration>
  29. </plugin>
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-compiler-plugin</artifactId>
  33. <configuration>
  34. <source>1.8</source>
  35. <target>1.8</target>
  36. </configuration>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>