<?xml version="1.0"?>
|
<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/maven-v4_0_0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<groupId>com.ld.base.io</groupId>
|
<artifactId>base-io-api</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
<packaging>jar</packaging>
|
|
<parent>
|
<groupId>com.ld.base</groupId>
|
<artifactId>base-io</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
</parent>
|
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<groupId>io.netty</groupId>
|
<version>4.1.20.Final-SNAPSHOT</version>
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.7</version>
|
</dependency>
|
|
<!-- <dependency>-->
|
<!-- <groupId>log4j</groupId>-->
|
<!-- <artifactId>log4j</artifactId>-->
|
<!-- <version>1.2.17</version>-->
|
<!-- </dependency>-->
|
|
<dependency>
|
<groupId>org.slf4j</groupId>
|
<artifactId>slf4j-api</artifactId>
|
<version>1.7.36</version>
|
</dependency>
|
|
<!-- <dependency>-->
|
<!-- <groupId>org.slf4j</groupId>-->
|
<!-- <artifactId>slf4j-log4j12</artifactId>-->
|
<!-- <version>1.7.36</version>-->
|
<!-- </dependency>-->
|
|
</dependencies>
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<version>3.1</version>
|
<configuration>
|
<source>1.8</source>
|
<target>1.8</target>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
<repositories>
|
<repository>
|
<id>bsdn-maven-repository</id>
|
<url>http://nexus.bsdn.org/content/groups/public/</url>
|
</repository>
|
</repositories>
|
</project>
|