物管理后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
3.9 KiB

  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. <parent>
  7. <groupId>com.thing</groupId>
  8. <artifactId>common</artifactId>
  9. <version>5.1</version>
  10. </parent>
  11. <artifactId>queue</artifactId>
  12. <name>ThingBI Server Common Queue</name>
  13. <packaging>jar</packaging>
  14. <groupId>com.thing.common</groupId>
  15. <properties>
  16. <main.dir>${basedir}/../..</main.dir>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.lmax</groupId>
  21. <artifactId>disruptor</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.google.protobuf</groupId>
  25. <artifactId>protobuf-java</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.google.protobuf</groupId>
  29. <artifactId>protobuf-java-util</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.rabbitmq</groupId>
  33. <artifactId>amqp-client</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.projectlombok</groupId>
  37. <artifactId>lombok</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.hutool</groupId>
  41. <artifactId>hutool-all</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework</groupId>
  45. <artifactId>spring-context</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>javax.annotation</groupId>
  49. <artifactId>javax.annotation-api</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-autoconfigure</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.commons</groupId>
  57. <artifactId>commons-lang3</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.thing.common</groupId>
  61. <artifactId>data</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.thing.common</groupId>
  65. <artifactId>util</artifactId>
  66. </dependency>
  67. </dependencies>
  68. <build>
  69. <extensions>
  70. <extension>
  71. <groupId>kr.motd.maven</groupId>
  72. <artifactId>os-maven-plugin</artifactId>
  73. <version>1.5.0.Final</version>
  74. </extension>
  75. </extensions>
  76. <plugins>
  77. <plugin>
  78. <groupId>org.xolstice.maven.plugins</groupId>
  79. <artifactId>protobuf-maven-plugin</artifactId>
  80. <version>0.5.0</version>
  81. <configuration>
  82. <!--
  83. The version of protoc must match protobuf-java. If you don't depend on
  84. protobuf-java directly, you will be transitively depending on the
  85. protobuf-java version that grpc depends on.
  86. -->
  87. <protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}</protocArtifact>
  88. <pluginId>grpc-java</pluginId>
  89. <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.0.0:exe:${os.detected.classifier}</pluginArtifact>
  90. </configuration>
  91. <executions>
  92. <execution>
  93. <goals>
  94. <goal>compile</goal>
  95. <goal>compile-custom</goal>
  96. <goal>test-compile</goal>
  97. </goals>
  98. </execution>
  99. </executions>
  100. </plugin>
  101. </plugins>
  102. </build>
  103. </project>