12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.starbuds.server</groupId>
- <artifactId>service-core</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <packaging>jar</packaging>
- <parent>
- <groupId>com.starbuds.server</groupId>
- <artifactId>service-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </parent>
- <properties>
- <ons-client.version>1.8.4.Final</ons-client.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.github.wujun234</groupId>
- <artifactId>uid-generator-spring-boot-starter</artifactId>
- <version>1.0.2.RELEASE</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>2.10.1</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.dyuproject.protostuff/protostuff-core -->
- <dependency>
- <groupId>com.dyuproject.protostuff</groupId>
- <artifactId>protostuff-core</artifactId>
- <version>1.1.5</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.dyuproject.protostuff/protostuff-runtime -->
- <dependency>
- <groupId>com.dyuproject.protostuff</groupId>
- <artifactId>protostuff-runtime</artifactId>
- <version>1.1.5</version>
- </dependency>
- <!-- Aliyun ONS -->
- <dependency>
- <groupId>com.aliyun.openservices</groupId>
- <artifactId>ons-client</artifactId>
- <version>${ons-client.version}</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>${project.artifactId}</finalName>
- </build>
- </project>
|