Download yar-java-0.0.1.jar file

Introduction

You can download yar-java-0.0.1.jar in this page.

License

The Apache License, Version 2.0

Type List

yar-java-0.0.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.weibo/yar-java/pom.properties
META-INF/maven/com.weibo/yar-java/pom.xml
com.weibo.yar.YarException.class
com.weibo.yar.YarHeader.class
com.weibo.yar.YarProtocol.class
com.weibo.yar.YarRequest.class
com.weibo.yar.YarResponse.class
com.weibo.yar.codec.PHPUnserializer.class
com.weibo.yar.packager.JsonPackager.class
com.weibo.yar.packager.MsgpackPackager.class
com.weibo.yar.packager.Packager.class
com.weibo.yar.packager.PackagerFactory.class
com.weibo.yar.packager.PherializePackager.class
com.weibo.yar.yarclient.AbstractYarClient.class
com.weibo.yar.yarclient.HttpYarClient.class
com.weibo.yar.yarclient.YarClient.class
com.weibo.yar.yarserver.HttpServerHandler.class
com.weibo.yar.yarserver.NettyYarServer.class

Pom

yar-java-0.0.1.pom file content.

<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.weibo</groupId>
    <artifactId>yar-java</artifactId>
    <version>0.0.1</version>
    <packaging>jar</packaging>
    
    <scm>
        <connection>scm:git:https://github.com/weibocom/yar-java.git</connection>
        <url>https://github.com/weibocom/yar-java</url>
        <developerConnection>scm:git:https://github.com/weibocom/yar-java.git</developerConnection>
    </scm>

    <name>yar-java</name>
    <url>https://github.com/weibocom/yar-java</url>
    <description>The Java yar protocol implementation</description>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.5</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>4.3.6</version>
        </dependency>
        <dependency>
            <groupId>de.ailis.pherialize</groupId>
            <artifactId>pherialize</artifactId>
            <version>1.2.1</version>
        </dependency>

        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>2.4.4</version>
        </dependency>

        <dependency>
            <groupId>org.msgpack</groupId>
            <artifactId>msgpack</artifactId>
            <version>0.6.12</version>
        </dependency>
        <dependency>
            <groupId>io.netty</groupId>
            <artifactId>netty-all</artifactId>
            <version>4.0.36.Final</version>
        </dependency>
    </dependencies>
    <repositories>
        <repository>
            <id>ailis-releases</id>
            <name>Ailis Maven Releases</name>
            <url>http://nexus.ailis.de/content/groups/public/</url>
        </repository>
    </repositories>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>${java.source.jdk}</source>
                    <target>${java.source.jdk}</target>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <licenses>
        <license>
            <name>The Apache License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
        </license>
    </licenses>

    <profiles>
        <profile>
            <id>java8</id>
            <activation>
                <jdk>1.8</jdk>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-javadoc-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>attach-javadocs</id>
                                <goals>
                                    <goal>jar</goal>
                                </goals>
                                <configuration>
                                    <additionalparam>-Xdoclint:none</additionalparam>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
        <profile>
            <id>release</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-source-plugin</artifactId>
                        <version>2.2.1</version>
                        <executions>
                            <execution>
                                <id>attach-sources</id>
                                <goals>
                                    <goal>jar-no-fork</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-javadoc-plugin</artifactId>
                        <version>2.9.1</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>1.5</version>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
            <distributionManagement>
                <snapshotRepository>
                    <id>ossrh</id>
                    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
                </snapshotRepository>
                <repository>
                    <id>ossrh</id>
                    <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
                </repository>
            </distributionManagement>
        </profile>
    </profiles>

    <developers>
        <developer>
            <name>Ray</name>
            <email>zzll0603@126.com</email>
            <organization>Weibo</organization>
        </developer>
        <developer>
            <name>half-dead</name>
            <email>dotalicious@126.com</email>
            <organization>Weibo</organization>
        </developer>
        <developer>
            <name>Axb</name>
            <email>uaxb@hotmail.com</email>
            <organization>Weibo</organization>
        </developer>
    </developers>
</project>

POM Entry

<dependency>
   <groupId>com.weibo</groupId>
   <artifactId>yar-java</artifactId>
   <version>0.0.1</version>
</dependency>

Download

If you think the following yar-java-0.0.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download yar-java-0.0.1.jar file




PreviousNext

Related