pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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>com.starbuds.server</groupId>
  7. <artifactId>service-core</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <parent>
  11. <groupId>com.starbuds.server</groupId>
  12. <artifactId>service-parent</artifactId>
  13. <version>1.1.0-SNAPSHOT</version>
  14. </parent>
  15. <properties>
  16. <ons-client.version>1.8.4.Final</ons-client.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.github.wujun234</groupId>
  21. <artifactId>uid-generator-spring-boot-starter</artifactId>
  22. <version>1.0.2.RELEASE</version>
  23. </dependency>
  24. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  25. <dependency>
  26. <groupId>com.fasterxml.jackson.core</groupId>
  27. <artifactId>jackson-databind</artifactId>
  28. <version>2.10.1</version>
  29. </dependency>
  30. <!-- https://mvnrepository.com/artifact/com.dyuproject.protostuff/protostuff-core -->
  31. <dependency>
  32. <groupId>com.dyuproject.protostuff</groupId>
  33. <artifactId>protostuff-core</artifactId>
  34. <version>1.1.5</version>
  35. </dependency>
  36. <!-- https://mvnrepository.com/artifact/com.dyuproject.protostuff/protostuff-runtime -->
  37. <dependency>
  38. <groupId>com.dyuproject.protostuff</groupId>
  39. <artifactId>protostuff-runtime</artifactId>
  40. <version>1.1.5</version>
  41. </dependency>
  42. <!-- Aliyun ONS -->
  43. <dependency>
  44. <groupId>com.aliyun.openservices</groupId>
  45. <artifactId>ons-client</artifactId>
  46. <version>${ons-client.version}</version>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <finalName>${project.artifactId}</finalName>
  51. </build>
  52. </project>