24 lines
795 B
XML
24 lines
795 B
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">
|
||
|
<parent>
|
||
|
<groupId>io.renren</groupId>
|
||
|
<artifactId>renren-security</artifactId>
|
||
|
<version>5.2.0</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<artifactId>renren-common</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
<description>renren-common</description>
|
||
|
|
||
|
<build>
|
||
|
<finalName>${project.artifactId}</finalName>
|
||
|
</build>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba</groupId>
|
||
|
<artifactId>fastjson</artifactId>
|
||
|
<version>1.2.83</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|