pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.1.6.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.elab.example</groupId>
  12. <artifactId>springboot-demo</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>springboot-demo</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <elab.version>2.0.4.12-SNAPSHOT</elab.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-test</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.elab.core</groupId>
  32. <artifactId>elab-es</artifactId>
  33. <version>${elab.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.elab.core</groupId>
  37. <artifactId>elab-spring</artifactId>
  38. <version>${elab.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.elab.core</groupId>
  42. <artifactId>elab-rocketMQ</artifactId>
  43. <version>${elab.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.kafka</groupId>
  47. <artifactId>kafka-clients</artifactId>
  48. <version>0.10.0.0</version>
  49. </dependency>
  50. <!-- <dependency>-->
  51. <!-- <groupId>org.zxp</groupId>-->
  52. <!-- <artifactId>esclientrhl</artifactId>-->
  53. <!-- <version>1.0.0</version>-->
  54. <!-- </dependency>-->
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-maven-plugin</artifactId>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </project>