2020-04-07 13:13:35 +08:00
|
|
|
<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-client</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>jim-client</name>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.j-im</groupId>
|
2020-04-07 23:50:53 +08:00
|
|
|
<artifactId>jim</artifactId>
|
2020-05-04 21:11:52 +08:00
|
|
|
<version>3.0.0.v20200501-RELEASE</version>
|
2020-04-07 13:13:35 +08:00
|
|
|
</parent>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.j-im</groupId>
|
2020-05-04 20:48:34 +08:00
|
|
|
<artifactId>jim-core</artifactId>
|
2020-04-07 13:13:35 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2020-05-04 20:48:34 +08:00
|
|
|
<version>${maven-compiler-plugin-version}</version>
|
2020-04-07 13:13:35 +08:00
|
|
|
<configuration>
|
|
|
|
<source>${jdk.version}</source>
|
|
|
|
<target>${jdk.version}</target>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|