yeying-sdk-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.youxuehu</groupId> <artifactId>yeying-sdk-java</artifactId> <version>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> <groupId>io.github.youxuehu</groupId> <artifactId>yeying-sdk-java</artifactId> <version>1.0</version> <name>yeying java sdk</name> <url>https://github.com/yeying-community/yeying-client-java</url> <description> Bean Validator With Spring Expression Language </description> <developers> <developer> <id>yeying</id> <name>yeying-community</name> <roles> <role>Project Manager</role> <role>Developer</role> </roles> <email>yeying-community</email> <url>https://github.com/yeying-community</url> </developer> </developers> <issueManagement> <system>GitHub</system> <url>https://github.com/yeying-community/yeying-client-java/issues</url> </issueManagement> <inceptionYear>2025</inceptionYear> <licenses> <license> <name>Apache License 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/yeying-community/yeying-client-java.git</connection> <developerConnection>scm:git:git@github.com:yeying-community/yeying-client-java.git</developerConnection> <url>https://github.com/yeying-community/yeying-client-java</url> <tag>HEAD</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>23</maven.compiler.source> <maven.compiler.target>23</maven.compiler.target> <java.version>23</java.version> <grpc.version>1.71.0</grpc.version><!-- CURRENT_GRPC_VERSION --> <protobuf.version>4.29.3</protobuf.version> <protoc.version>4.29.3</protoc.version> <lombok.version>1.18.36</lombok.version> </properties> <dependencies> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-services</artifactId> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-netty-shaded</artifactId> <scope>runtime</scope> </dependency> <!-- gRPC 核心库 --> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-netty</artifactId> </dependency> <!-- Netty 的 OpenSSL 支持 --> <dependency> <groupId>io.netty</groupId> <artifactId>netty-tcnative-boringssl-static</artifactId> <version>2.0.70.Final</version> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-protobuf</artifactId> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>${protobuf.version}</version> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-stub</artifactId> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java-util</artifactId> <version>${protobuf.version}</version> </dependency> <dependency> <!-- Use newer version than in protobuf-java-util --> <groupId>com.google.j2objc</groupId> <artifactId>j2objc-annotations</artifactId> <version>3.0.0</version> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-testing</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>annotations-api</artifactId> <version>6.0.53</version> <scope>provided</scope> <!-- not needed at runtime --> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-bom</artifactId> <version>${grpc.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*</include> </includes> </resource> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> <filtering>false</filtering> </resource> </resources> <plugins> <!-- 若要在GitHub Actions上执行mvn test,则必须添加此插件才能成功执行 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M5</version> </plugin> <plugin> <groupId>kr.motd.maven</groupId> <artifactId>os-maven-plugin</artifactId> <version>1.7.1</version> <executions> <execution> <phase>initialize</phase> <goals> <goal>detect</goal> </goals> </execution> </executions> </plugin> <!-- <plugin>--> <!-- <groupId>org.xolstice.maven.plugins</groupId>--> <!-- <artifactId>protobuf-maven-plugin</artifactId>--> <!-- <version>0.6.1</version>--> <!-- <extensions>true</extensions>--> <!-- <configuration>--> <!-- <protocArtifact>com.google.protobuf:protoc:${protoc.version}:exe:${os.detected.classifier}--> <!-- </protocArtifact>--> <!-- <pluginId>grpc-java</pluginId>--> <!-- <pluginArtifact>io.grpc:protoc-gen-grpc-java:${grpc.version}:exe:${os.detected.classifier}--> <!-- </pluginArtifact>--> <!-- <protoSourceRoot>${env.idl}</protoSourceRoot>--> <!-- <outputDirectory>src/main/java</outputDirectory>--> <!-- <clearOutputDirectory>false</clearOutputDirectory>--> <!-- </configuration>--> <!-- <executions>--> <!-- <execution>--> <!-- <phase>compile</phase>--> <!-- <goals>--> <!-- <goal>compile</goal>--> <!-- <goal>compile-custom</goal>--> <!-- </goals>--> <!-- </execution>--> <!-- </executions>--> <!-- </plugin>--> <!-- Java Compiler --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <annotationProcessorPaths> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <executable>gpg</executable> <useAgent>true</useAgent> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.4.0</version> <extensions>true</extensions> <configuration> <publishingServerId>ossrh</publishingServerId> <tokenAuth>true</tokenAuth> </configuration> </plugin> </plugins> </build> <!-- 仓库配置 --> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <repositories> <repository> <id>aliyun-repos</id> <name>aliyun-repos</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>elastic-lucene-snapshots</id> <name>Elastic Lucene Snapshots</name> <url>https://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/00142c9</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>aliyun-plugin</id> <name>aliyun-plugin</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> </pluginRepositories> </project>