pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. <exclusions>
  67. <exclusion>
  68. <groupId>com.keao.edu</groupId>
  69. <artifactId>edu-thirdparty</artifactId>
  70. </exclusion>
  71. </exclusions>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.keao.edu</groupId>
  75. <artifactId>edu-im-api</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.alibaba</groupId>
  79. <artifactId>fastjson</artifactId>
  80. </dependency>
  81. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  82. <dependency>
  83. <groupId>commons-codec</groupId>
  84. <artifactId>commons-codec</artifactId>
  85. </dependency>
  86. <!-- https://mvnrepository.com/artifact/joda-time/joda-time -->
  87. <dependency>
  88. <groupId>joda-time</groupId>
  89. <artifactId>joda-time</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>cn.rongcloud.im</groupId>
  93. <artifactId>server-sdk-java</artifactId>
  94. <version>3.1.4</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.cloud</groupId>
  98. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework.cloud</groupId>
  102. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.keao.edu</groupId>
  106. <artifactId>edu-user-client-api</artifactId>
  107. </dependency>
  108. </dependencies>
  109. <build>
  110. <plugins>
  111. <plugin>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-maven-plugin</artifactId>
  114. </plugin>
  115. <plugin>
  116. <groupId>com.spotify</groupId>
  117. <artifactId>docker-maven-plugin</artifactId>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. </project>