2021-01-12 11:55:19 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-01-21 14:19:13 +08:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
2021-01-12 11:55:19 +08:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2021-01-21 14:19:13 +08:00
|
|
|
<parent>
|
|
|
|
<groupId>com.fujieid</groupId>
|
|
|
|
<artifactId>jap</artifactId>
|
2021-04-28 17:45:09 +08:00
|
|
|
<version>${revision}</version>
|
2021-01-21 14:19:13 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-01-12 11:55:19 +08:00
|
|
|
|
2021-01-21 14:19:13 +08:00
|
|
|
<artifactId>jap-core</artifactId>
|
|
|
|
<name>jap-core</name>
|
|
|
|
<description>
|
|
|
|
Jap core module, provides the standard interface
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fujieid</groupId>
|
|
|
|
<artifactId>jap-sso</artifactId>
|
|
|
|
</dependency>
|
2021-04-28 17:45:09 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
<artifactId>hutool-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.xkcoding.json</groupId>
|
|
|
|
<artifactId>simple-json</artifactId>
|
|
|
|
</dependency>
|
2021-01-21 14:19:13 +08:00
|
|
|
</dependencies>
|
2021-01-12 11:55:19 +08:00
|
|
|
</project>
|