pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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>item-management-1phase</artifactId>
  7. <groupId>com.dayou</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>dao</artifactId>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.compiler.source>1.7</maven.compiler.source>
  15. <maven.compiler.target>1.7</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.dayou</groupId>
  20. <artifactId>domain</artifactId>
  21. <version>1.0-SNAPSHOT</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.dayou</groupId>
  25. <artifactId>common</artifactId>
  26. <version>1.0-SNAPSHOT</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>junit</groupId>
  30. <artifactId>junit</artifactId>
  31. <version>4.11</version>
  32. <scope>test</scope>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  37. <plugins>
  38. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  39. <plugin>
  40. <artifactId>maven-clean-plugin</artifactId>
  41. <version>3.1.0</version>
  42. </plugin>
  43. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  44. <plugin>
  45. <artifactId>maven-resources-plugin</artifactId>
  46. <version>3.0.2</version>
  47. </plugin>
  48. <plugin>
  49. <artifactId>maven-compiler-plugin</artifactId>
  50. <version>3.8.0</version>
  51. </plugin>
  52. <plugin>
  53. <artifactId>maven-surefire-plugin</artifactId>
  54. <version>2.22.1</version>
  55. </plugin>
  56. <plugin>
  57. <artifactId>maven-jar-plugin</artifactId>
  58. <version>3.0.2</version>
  59. </plugin>
  60. <plugin>
  61. <artifactId>maven-install-plugin</artifactId>
  62. <version>2.5.2</version>
  63. </plugin>
  64. <plugin>
  65. <artifactId>maven-deploy-plugin</artifactId>
  66. <version>2.8.2</version>
  67. </plugin>
  68. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  69. <plugin>
  70. <artifactId>maven-site-plugin</artifactId>
  71. <version>3.7.1</version>
  72. </plugin>
  73. <plugin>
  74. <artifactId>maven-project-info-reports-plugin</artifactId>
  75. <version>3.0.0</version>
  76. </plugin>
  77. </plugins>
  78. </pluginManagement>
  79. </build>
  80. </project>