trpc-spring-server-demo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.tencent.trpc</groupId>
<artifactId>trpc-spring-server-demo</artifactId>
<version>2.0.4</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>trpc-spring-demo</artifactId>
<groupId>com.tencent.trpc</groupId>
<version>2.0.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>trpc-spring-server-demo</artifactId>
<name>trpc-spring-server-demo</name>
<dependencies>
<dependency>
<groupId>com.tencent.trpc</groupId>
<artifactId>trpc-springmvc</artifactId>
</dependency>
<dependency>
<groupId>com.tencent.trpc</groupId>
<artifactId>trpc-spring-demo-api</artifactId>
<version>${parent.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.tencent.trpc</groupId>
<artifactId>trpc-maven-plugin</artifactId>
<version>${trpc-maven-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>gen-code</goal>
</goals>
</execution>
</executions>
<configuration>
<attachGeneratedFiles>true</attachGeneratedFiles>
</configuration>
</plugin>
</plugins>
</build>
</project>