8 Star 16 Fork 16

Gitee 极速下载 / XiaoV

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/b3log/xiaov
克隆/下载
pom.xml 6.11 KB
一键复制 编辑 原始数据 按行查看 历史
88250 提交于 2019-01-02 21:48 . :tada::page_facing_up:2019
<?xml version="1.0" encoding="utf-8"?>
<!--
Description: XiaoV POM.
Version: 1.1.0.17, Jan 2, 2019
Author: Liang Ding
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.b3log</groupId>
<artifactId>xiaov</artifactId>
<packaging>war</packaging>
<version>2.2.0</version>
<name>XiaoV</name>
<url>https://github.com/b3log/xiaov</url>
<description>Yet another QQ Bot. 又一个 QQ 聊天机器人,她的名字叫做小薇~</description>
<inceptionYear>2016</inceptionYear>
<!-- Properties -->
<properties>
<latke.version>2.4.41</latke.version>
<servlet.version>3.1.0</servlet.version>
<jetty.version>9.2.7.v20150116</jetty.version>
<slf4j.version>1.7.7</slf4j.version>
<!-- maven plugin -->
<maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
<maven-resources-plugin.version>2.7</maven-resources-plugin.version>
<maven-license-plugin.version>1.9.0</maven-license-plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<organization>
<name>B3log</name>
<url>https://b3log.org</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<developers>
<developer>
<id>DL88250@gmail.com</id>
<name>Liang Ding</name>
<email>DL88250@gmail.com</email>
<url>http://88250.b3log.org</url>
<roles>
<role>Lead</role>
<role>Initial Committer</role>
</roles>
<organization>B3log</organization>
<organizationUrl>http://b3log.org</organizationUrl>
<timezone>+8</timezone>
</developer>
</developers>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/b3log/xiaov/issues</url>
</issueManagement>
<scm>
<url>https://github.com/b3log/xiaov</url>
</scm>
<dependencies>
<dependency>
<groupId>org.b3log</groupId>
<artifactId>latke-core</artifactId>
<version>${latke.version}</version>
<exclusions>
<exclusion>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</exclusion>
<exclusion>
<artifactId>mail</artifactId>
<groupId>javax.mail</groupId>
</exclusion>
<exclusion>
<groupId>org.jboss</groupId>
<artifactId>jboss-vfs</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.23</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${servlet.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.51</version>
</dependency>
<dependency>
<groupId>net.dongliu</groupId>
<artifactId>requests</artifactId>
<version>2.1.5</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.jodd</groupId>
<artifactId>jodd-http</artifactId>
<version>5.0.5</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>etc/</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>${jetty.version}</version>
<configuration>
<httpConnector>
<port>8080</port>
</httpConnector>
<stopKey>stop</stopKey>
<stopPort>5500</stopPort>
<webAppConfig>
<contextPath>/</contextPath>
</webAppConfig>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven-resources-plugin.version}</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
<finalName>xiaov</finalName>
</build>
</project>
Java
1
https://gitee.com/mirrors/XiaoV.git
git@gitee.com:mirrors/XiaoV.git
mirrors
XiaoV
XiaoV
master

搜索帮助