pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.2.0.RELEASE</version> <!-- 使用最新的稳定版或其他适用版本 -->
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.malk.huagao</groupId>
  13. <artifactId>mjava-huagao</artifactId>
  14. <version>1.0-SNAPSHOT</version>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-test</artifactId>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>junit</groupId>
  27. <artifactId>junit</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.malk</groupId>
  32. <artifactId>base</artifactId>
  33. <version>1.1-SNAPSHOT</version>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <finalName>huagao</finalName>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-compiler-plugin</artifactId>
  42. <version>3.1</version>
  43. <configuration>
  44. <source>1.8</source>
  45. <target>1.8</target>
  46. <encoding>UTF-8</encoding>
  47. </configuration>
  48. </plugin>
  49. <plugin>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-maven-plugin</artifactId>
  52. <configuration>
  53. <executable>true</executable>
  54. <includeSystemScope>true</includeSystemScope>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. <properties>
  60. <maven.compiler.source>8</maven.compiler.source>
  61. <maven.compiler.target>8</maven.compiler.target>
  62. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  63. </properties>
  64. </project>