seecoder-bok-common-0.2.3.pom 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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>seecoder-bok</artifactId>
  7. <groupId>cn.seecoder</groupId>
  8. <version>0.2.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>seecoder-bok-common</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.data</groupId>
  19. <artifactId>spring-data-commons</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.mapstruct</groupId>
  23. <artifactId>mapstruct</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.projectlombok</groupId>
  27. <artifactId>lombok</artifactId>
  28. <optional>true</optional>
  29. <version>1.18.10</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.fasterxml.jackson.core</groupId>
  33. <artifactId>jackson-databind</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.fasterxml.jackson.module</groupId>
  37. <artifactId>jackson-module-parameter-names</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.fasterxml.jackson.datatype</groupId>
  41. <artifactId>jackson-datatype-jdk8</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.fasterxml.jackson.datatype</groupId>
  45. <artifactId>jackson-datatype-jsr310</artifactId>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-compiler-plugin</artifactId>
  53. <version>3.8.1</version>
  54. <configuration>
  55. <source>${maven.compiler.source}</source> <!-- depending on your project -->
  56. <target>${maven.compiler.target}</target> <!-- depending on your project -->
  57. <annotationProcessorPaths>
  58. <path>
  59. <groupId>org.mapstruct</groupId>
  60. <artifactId>mapstruct-processor</artifactId>
  61. <version>${org.mapstruct.version}</version>
  62. </path>
  63. <!-- other annotation processors -->
  64. </annotationProcessorPaths>
  65. </configuration>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>