quick-rpc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.tvd12</groupId>
<artifactId>quick-rpc</artifactId>
<version>1.1.0</version>
</dependency><?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>
<parent>
<groupId>com.tvd12</groupId>
<artifactId>ezyfox</artifactId>
<version>1.0.7</version>
</parent>
<version>1.1.0</version>
<artifactId>quick-rpc</artifactId>
<packaging>pom</packaging>
<name>quick-rpc</name>
<url>http://maven.apache.org</url>
<properties>
<ezy.version>1.3.0</ezy.version>
<ezy.client.version>1.2.8</ezy.client.version>
</properties>
<dependencies>
<dependency>
<groupId>com.tvd12</groupId>
<artifactId>ezyfox-bean</artifactId>
<version>${ezy.version}</version>
</dependency>
<dependency>
<groupId>com.tvd12</groupId>
<artifactId>ezyfox-binding</artifactId>
<version>${ezy.version}</version>
</dependency>
<dependency>
<groupId>com.tvd12</groupId>
<artifactId>ezyfox-tools</artifactId>
<version>${ezy.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.1.2</version>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>8.42</version>
</dependency>
</dependencies>
<configuration>
<encoding>UTF-8</encoding>
<consoleOutput>true</consoleOutput>
<violationSeverity>warning</violationSeverity>
<configLocation>checkstyle.xml</configLocation>
</configuration>
<executions>
<execution>
<id>verify</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<modules>
<module>quick-rpc-server</module>
<module>quick-rpc-client</module>
<module>quick-rpc-core</module>
</modules>
</project>