2 Star 0 Fork 0

IT啊平 / rsf

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 4.63 KB
一键复制 编辑 原始数据 按行查看 历史
<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>net.hasor</groupId>
<artifactId>hasor-parent</artifactId>
<version>0.0.9</version>
</parent>
<!-- Maven Info -->
<artifactId>hasor-rsf</artifactId>
<version>1.0.2-SNAPSHOT</version>
<packaging>jar</packaging>
<!-- Project Info -->
<name>Hasor-RSF</name>
<description>the Hasor Remote Service Framework project.</description>
<!-- 配置属性 -->
<properties>
<hasor.shortname>RSF-</hasor.shortname>
</properties>
<!-- SCM -->
<scm>
<connection>scm:git:git@git.oschina.net:zycgit/rsf.git</connection>
<developerConnection>scm:git:git@git.oschina.net:zycgit/rsf.git</developerConnection>
<url>git@git.oschina.net:zycgit/rsf.git</url>
<tag>HEAD</tag>
</scm>
<!-- 引用依赖 -->
<dependencies>
<!-- 核心依赖 -->
<dependency>
<groupId>net.hasor</groupId>
<artifactId>hasor-core</artifactId>
<version>2.5.1</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.5.Final</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
<version>2.4.7</version>
</dependency>
<!-- JSON 序列化 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.17</version>
<scope>provided</scope>
</dependency>
<!-- Web环境下功能依赖,最终由web容器提供支持 -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.3</version>
<scope>provided</scope>
</dependency>
<!-- center打包为独立应用 -->
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-classworlds</artifactId>
<version>2.5.2</version>
<scope>provided</scope>
</dependency>
<!-- 第三方集成插件,仅当使用时才产生依赖 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>2.5.6</version>
<scope>provided</scope>
</dependency>
<!-- LOGGING begin -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.3</version>
<scope>test</scope>
</dependency>
<!-- LOGGING end -->
</dependencies>
<!-- 构建描述 -->
<profiles>
<profile>
<id>export</id>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<finalName>rsf-center-v${project.version}</finalName>
<appendAssemblyId>false</appendAssemblyId>
<outputDirectory>build</outputDirectory>
<descriptors>
<descriptor>src/launcher/assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.7</version>
</dependency>
</dependencies>
</profile>
</profiles>
</project>
1
https://gitee.com/tjp0515/rsf.git
git@gitee.com:tjp0515/rsf.git
tjp0515
rsf
rsf
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891