当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 0 Fork 18

iloveoovo / RichServlet
关闭

forked from commonrpc / RichServlet
关闭
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 4.00 KB
一键复制 编辑 原始数据 按行查看 历史
xuanjing.lb 提交于 2017-11-03 03:13 . 加入commons包
<?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>com.apache</groupId>
<artifactId>richservlet</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>richservlet</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<richservlet.version>0.0.1-SNAPSHOT</richservlet.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.14.Final</version>
</dependency>
<!-- 日志相关 -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.7</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.6</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>1.6</version>
</dependency>
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>com.apache</groupId>
<artifactId>richservlet-core</artifactId>
<version>${richservlet.version}</version>
</dependency>
<dependency>
<groupId>com.apache</groupId>
<artifactId>richservlet-commons</artifactId>
<version>${richservlet.version}</version>
</dependency>
<dependency>
<groupId>com.apache</groupId>
<artifactId>richservlet-http</artifactId>
<version>${richservlet.version}</version>
</dependency>
<dependency>
<groupId>com.apache</groupId>
<artifactId>richservlet-http-servlet</artifactId>
<version>${richservlet.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<finalName>richservlet</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
-Xbootclasspath/p:/Users/xuanjing.lb/Documents/alpn-boot-8.1.11.v20170118.jar
</argLine>
</configuration>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<modules>
<module>richservlet-core</module>
<module>richservlet-http</module>
<module>richservlet-http-servlet</module>
<module>richservlet-server</module>
<module>richservlet-commons</module>
</modules>
</project>
Java
1
https://gitee.com/iloveoovo/RichServlet.git
git@gitee.com:iloveoovo/RichServlet.git
iloveoovo
RichServlet
RichServlet
master

搜索帮助