mirror of
https://gitee.com/xchao/j-im.git
synced 2024-12-04 21:07:35 +08:00
95 lines
2.6 KiB
XML
95 lines
2.6 KiB
XML
<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>
|
|
<artifactId>jim-common</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>jim-common</name>
|
|
<parent>
|
|
<groupId>org.j-im</groupId>
|
|
<artifactId>jim-parent</artifactId>
|
|
<version>2.3.0.v20180830-RELEASE</version>
|
|
<relativePath>../jim-parent/pom.xml</relativePath>
|
|
</parent>
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.t-io</groupId>
|
|
<artifactId>tio-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.redisson</groupId>
|
|
<artifactId>redisson</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>nl.basjes.parse.useragent</groupId>
|
|
<artifactId>yauaa</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.typesafe</groupId>
|
|
<artifactId>config</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
</dependency>
|
|
|
|
<!-- slf4j-logback绑定 -->
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-access</artifactId>
|
|
</dependency>
|
|
<!-- redirect apache commons logging -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
</dependency>
|
|
<!-- redirect jdk util logging -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jul-to-slf4j</artifactId>
|
|
</dependency>
|
|
<!-- redirect log4j -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>redis.clients</groupId>
|
|
<artifactId>jedis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jfinal</groupId>
|
|
<artifactId>jfinal</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.oschina.j2cache</groupId>
|
|
<artifactId>j2cache-core</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<source>${jdk.version}</source>
|
|
<target>${jdk.version}</target>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|