pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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>org.example</groupId>
  7. <artifactId>serializableJava</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>8</maven.compiler.source>
  11. <maven.compiler.target>8</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <parent>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-parent</artifactId>
  17. <version>2.2.2.RELEASE</version>
  18. </parent>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-test</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>spring-context-support</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.projectlombok</groupId>
  35. <artifactId>lombok</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.fasterxml.jackson.core</groupId>
  40. <artifactId>jackson-databind</artifactId>
  41. <version>2.5.3</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>io.protostuff</groupId>
  45. <artifactId>protostuff-runtime</artifactId>
  46. <version>1.4.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.google.protobuf</groupId>
  50. <artifactId>protobuf-java</artifactId>
  51. <version>3.5.1</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>io.protostuff</groupId>
  55. <artifactId>protostuff-core</artifactId>
  56. <version>1.4.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.projectlombok</groupId>
  60. <artifactId>lombok</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.caucho</groupId>
  64. <artifactId>hessian</artifactId>
  65. <version>4.0.63</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.esotericsoftware</groupId>
  69. <artifactId>kryo</artifactId>
  70. <version>5.2.0</version>
  71. </dependency>
  72. </dependencies>
  73. <build>
  74. <extensions>
  75. <extension>
  76. <groupId>kr.motd.maven</groupId>
  77. <artifactId>os-maven-plugin</artifactId>
  78. <version>1.5.0.Final</version>
  79. </extension>
  80. </extensions>
  81. <plugins>
  82. <plugin>
  83. <groupId>org.apache.maven.plugins</groupId>
  84. <artifactId>maven-compiler-plugin</artifactId>
  85. <configuration>
  86. <source>1.8</source>
  87. <target>1.8</target>
  88. </configuration>
  89. </plugin>
  90. <plugin>
  91. <groupId>org.xolstice.maven.plugins</groupId>
  92. <artifactId>protobuf-maven-plugin</artifactId>
  93. <version>0.5.0</version>
  94. <configuration>
  95. <protocArtifact>
  96. com.google.protobuf:protoc:3.1.0:exe:${os.detected.classifier}
  97. </protocArtifact>
  98. <pluginId>grpc-java</pluginId>
  99. </configuration>
  100. <executions>
  101. <execution>
  102. <goals>
  103. <goal>compile</goal>
  104. <goal>compile-custom</goal>
  105. </goals>
  106. </execution>
  107. </executions>
  108. </plugin>
  109. </plugins>
  110. </build>
  111. </project>