pom.xml 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>education</artifactId>
  6. <groupId>com.education</groupId>
  7. <version>1.0.5-RELEASE</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <groupId>com.education.model</groupId>
  11. <artifactId>education-model</artifactId>
  12. <version>1.0.5-RELEASE</version>
  13. <name>education-model</name>
  14. <!-- FIXME change it to the project's website -->
  15. <url>model实体类模块</url>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <maven.compiler.source>1.8</maven.compiler.source>
  19. <maven.compiler.target>1.8</maven.compiler.target>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>com.education.common</groupId>
  24. <artifactId>education-common</artifactId>
  25. <version>${project.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.projectlombok</groupId>
  29. <artifactId>lombok</artifactId>
  30. <scope>provided</scope>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  35. <plugins>
  36. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  37. <plugin>
  38. <artifactId>maven-clean-plugin</artifactId>
  39. <version>3.1.0</version>
  40. </plugin>
  41. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  42. <plugin>
  43. <artifactId>maven-resources-plugin</artifactId>
  44. <version>3.0.2</version>
  45. </plugin>
  46. <plugin>
  47. <artifactId>maven-compiler-plugin</artifactId>
  48. <version>3.8.0</version>
  49. </plugin>
  50. <plugin>
  51. <artifactId>maven-surefire-plugin</artifactId>
  52. <version>2.22.1</version>
  53. </plugin>
  54. <plugin>
  55. <artifactId>maven-jar-plugin</artifactId>
  56. <version>3.0.2</version>
  57. </plugin>
  58. <plugin>
  59. <artifactId>maven-install-plugin</artifactId>
  60. <version>2.5.2</version>
  61. </plugin>
  62. <plugin>
  63. <artifactId>maven-deploy-plugin</artifactId>
  64. <version>2.8.2</version>
  65. </plugin>
  66. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  67. <plugin>
  68. <artifactId>maven-site-plugin</artifactId>
  69. <version>3.7.1</version>
  70. </plugin>
  71. <plugin>
  72. <artifactId>maven-project-info-reports-plugin</artifactId>
  73. <version>3.0.0</version>
  74. </plugin>
  75. </plugins>
  76. </pluginManagement>
  77. </build>
  78. </project>