2019-04-16 10:50:45 +08:00
|
|
|
<?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">
|
|
|
|
<parent>
|
2019-08-13 17:48:32 +08:00
|
|
|
<artifactId>jpom-parent</artifactId>
|
2019-08-23 10:55:41 +08:00
|
|
|
<groupId>io.jpom</groupId>
|
2021-07-30 00:34:55 +08:00
|
|
|
<version>2.6.1</version>
|
2020-10-31 18:32:30 +08:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
2019-04-16 10:50:45 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2019-07-25 14:43:19 +08:00
|
|
|
<name>Jpom 公共模块</name>
|
2019-04-16 10:50:45 +08:00
|
|
|
<artifactId>common</artifactId>
|
2021-07-30 00:34:55 +08:00
|
|
|
<version>2.6.1</version>
|
2019-04-16 10:50:45 +08:00
|
|
|
|
2019-04-17 12:11:01 +08:00
|
|
|
<dependencies>
|
2019-07-21 14:37:57 +08:00
|
|
|
<!-- 文件编码识别-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sourceforge.jchardet</groupId>
|
|
|
|
<artifactId>jchardet</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
2019-04-17 12:11:01 +08:00
|
|
|
</dependencies>
|
2019-11-18 10:57:16 +08:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release-plugin-profile</id>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>install-plugin-profile</id>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2019-07-23 16:58:43 +08:00
|
|
|
</project>
|