加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 4.47 KB
一键复制 编辑 原始数据 按行查看 历史
eric 提交于 2016-03-23 18:27 . 更新了依赖包
<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>link.jfire</groupId>
<version>1.1</version>
<artifactId>simplerpc</artifactId>
<packaging>jar</packaging>
<name>simplerpc</name>
<description>
Simplerpc distributed RPC framework is a very simple. Based on the AIO and fose framework underlying services provided by the end of the connection and fast serialization ability. Can provide a very strong ability of RPC calls. In a powerful at the same time, also supports encryption mode calls. Using the RSA and AES encryption communication process, suitable for public use.
In addition, the framework has a very simple API. Only need to activate the RPC server 4 lines of code.
</description>
<url>www.jfire.link</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>linbin</name>
<email>eric@jfire.cn</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@git.oschina.net:eric_ds/jfire-simplerpc.git</connection>
<developerConnection>scm:git:git@git.oschina.net:eric_ds/jfire-simplerpc.git</developerConnection>
<url>http://git.oschina.net/eric_ds/jfire-simplerpc</url>
</scm>
<dependencies>
<dependency>
<groupId>link.jfire</groupId>
<artifactId>jfire-jnet</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>link.jfire</groupId>
<artifactId>fose</artifactId>
<version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>link.jfire</groupId>
<artifactId>jfire-testsupport</artifactId>
<version>1.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>compile</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>user-releases</id>
<name>Nexus Releases Repository</name>
<url>${releasesurl}</url>
</repository>
<snapshotRepository>
<id>user-snapshot</id>
<name>Nexus Snapshots Repository</name>
<url>${snapshoturl}</url>
</snapshotRepository>
</distributionManagement>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Gpg Signature -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>oss</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>oss</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化