1 Star 0 Fork 38

梦行/jetty

forked from 郑大侠/jetty 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 7.09 KB
一键复制 编辑 原始数据 按行查看 历史
dempeZheng 提交于 2016-12-29 18:09 . web manger init
<?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.zhizus</groupId>
<artifactId>forest</artifactId>
<packaging>pom</packaging>
<version>0.0.2</version>
<modules>
<module>forest-demo</module>
<module>forest-rpc</module>
<module>forest-common</module>
<module>forest-web</module>
</modules>
<name>Forest RPC</name>
<description>Forest RPC</description>
<url>https://github.com/dempeZheng/forest</url>
<developers>
<developer>
<name>dempe</name>
<email>752996510@qq.com</email>
<organization>dempe</organization>
<organizationUrl>http://www.zhizus.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/dempeZheng/forest.git</connection>
<url>https://github.com/dempeZheng/forest</url>
<developerConnection>scm:git:https://github.com/dempeZheng/forest.git</developerConnection>
</scm>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<netty.version>4.1.0.Final</netty.version>
<netty.groupId>io.netty</netty.groupId>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.source.jdk>1.7</java.source.jdk>
<spring.version>4.2.5.RELEASE</spring.version>
<snappy-java.version>1.1.1.6</snappy-java.version>
<org.slf4j.version>1.7.5</org.slf4j.version>
<apache.curator.version>2.7.1</apache.curator.version>
<esotericsoftware.kryo.version>2.24.0</esotericsoftware.kryo.version>
<caucho.hession.version>4.0.38</caucho.hession.version>
<google.guava.version>17.0</google.guava.version>
<commons-pool2.version>2.2</commons-pool2.version>
<alibaba.fastjson.version>1.1.36</alibaba.fastjson.version>
<logback-classic.version>1.0.13</logback-classic.version>
<log4j.version>1.2.16</log4j.version>
<commons-lang3.version>3.1</commons-lang3.version>
<jersey.version>1.19</jersey.version>
</properties>
<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>
<plugin>
<!-- http://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<!-- Java8 -->
<configuration>
<source>${java.source.jdk}</source>
<target>${java.source.jdk}</target>
</configuration>
</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>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>${commons-pool2.version}</version>
</dependency>
</dependencies>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/mx2913/jetty.git
git@gitee.com:mx2913/jetty.git
mx2913
jetty
jetty
master

搜索帮助