pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.keao.edu</groupId>
  8. <artifactId>edu-im</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <artifactId>edu-im-server</artifactId>
  12. <name>edu-im-server</name>
  13. <url>http://maven.apache.org</url>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-data-jpa</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-data-redis</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>mysql</groupId>
  32. <artifactId>mysql-connector-java</artifactId>
  33. <scope>runtime</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.alibaba</groupId>
  37. <artifactId>druid-spring-boot-starter</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. <optional>true</optional>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-test</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <!-- https://mvnrepository.com/artifact/commons-lang/commons-lang -->
  50. <dependency>
  51. <groupId>commons-lang</groupId>
  52. <artifactId>commons-lang</artifactId>
  53. <version>2.6</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-aop</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.keao.edu</groupId>
  61. <artifactId>edu-common</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.keao.edu</groupId>
  65. <artifactId>edu-auth-api</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.keao.edu</groupId>
  69. <artifactId>edu-im-api</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.alibaba</groupId>
  73. <artifactId>fastjson</artifactId>
  74. </dependency>
  75. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  76. <dependency>
  77. <groupId>commons-codec</groupId>
  78. <artifactId>commons-codec</artifactId>
  79. </dependency>
  80. <!-- https://mvnrepository.com/artifact/joda-time/joda-time -->
  81. <dependency>
  82. <groupId>joda-time</groupId>
  83. <artifactId>joda-time</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>cn.rongcloud.im</groupId>
  87. <artifactId>server-sdk-java</artifactId>
  88. <version>3.1.4</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.cloud</groupId>
  92. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.keao.edu</groupId>
  96. <artifactId>edu-user-client-api</artifactId>
  97. </dependency>
  98. </dependencies>
  99. <build>
  100. <plugins>
  101. <plugin>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-maven-plugin</artifactId>
  104. </plugin>
  105. <plugin>
  106. <groupId>com.spotify</groupId>
  107. <artifactId>docker-maven-plugin</artifactId>
  108. </plugin>
  109. </plugins>
  110. </build>
  111. </project>