pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. <groupId>com.finikes</groupId>
  7. <artifactId>ocv1-server</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.0.5.RELEASE</version>
  13. </parent>
  14. <name>oc</name>
  15. <!-- FIXME change it to the project's website -->
  16. <url>http://www.example.com</url>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <maven.compiler.source>1.7</maven.compiler.source>
  20. <maven.compiler.target>1.7</maven.compiler.target>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.mybatis</groupId>
  29. <artifactId>mybatis</artifactId>
  30. <version>3.4.4</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-aop</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>mysql</groupId>
  38. <artifactId>mysql-connector-java</artifactId>
  39. <version>8.0.11</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.mybatis.spring.boot</groupId>
  43. <artifactId>mybatis-spring-boot-starter</artifactId>
  44. <version>1.1.1</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-web</artifactId>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <pluginManagement>
  53. <!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  54. <plugins>
  55. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  56. <plugin>
  57. <artifactId>maven-clean-plugin</artifactId>
  58. <version>3.1.0</version>
  59. </plugin>
  60. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  61. <plugin>
  62. <artifactId>maven-resources-plugin</artifactId>
  63. <version>3.0.2</version>
  64. </plugin>
  65. <plugin>
  66. <artifactId>maven-compiler-plugin</artifactId>
  67. <version>3.8.0</version>
  68. </plugin>
  69. <plugin>
  70. <artifactId>maven-surefire-plugin</artifactId>
  71. <version>2.22.1</version>
  72. </plugin>
  73. <plugin>
  74. <artifactId>maven-jar-plugin</artifactId>
  75. <version>3.0.2</version>
  76. </plugin>
  77. <plugin>
  78. <artifactId>maven-install-plugin</artifactId>
  79. <version>2.5.2</version>
  80. </plugin>
  81. <plugin>
  82. <artifactId>maven-deploy-plugin</artifactId>
  83. <version>2.8.2</version>
  84. </plugin>
  85. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  86. <plugin>
  87. <artifactId>maven-site-plugin</artifactId>
  88. <version>3.7.1</version>
  89. </plugin>
  90. <plugin>
  91. <artifactId>maven-project-info-reports-plugin</artifactId>
  92. <version>3.0.0</version>
  93. </plugin>
  94. </plugins>
  95. </pluginManagement>
  96. </build>
  97. </project>