The current repo belongs to Closed status, and some functions are restricted. For details, please refer to the description of repo status
37 Star 77 Fork 18

commonrpc / RichServlet
Closed

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
pom.xml 4.00 KB
Copy Edit Raw Blame History
xuanjing.lb authored 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/284520459/RichServlet.git
git@gitee.com:284520459/RichServlet.git
284520459
RichServlet
RichServlet
master

Search

53164aa7 5694891 3bd8fe86 5694891