其他分享
首页 > 其他分享> > crawler maven pom

crawler maven pom

作者:互联网

<?xml version="1.0" encoding="UTF-8"?>


4.0.0

<groupId>cn.itcast</groupId>
<artifactId>itcast-crawler-first</artifactId>
<version>1.0-SNAPSHOT</version>

<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
<dependencies>
<dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpclient</artifactId>
    <version>4.5.2</version>
</dependency>

    <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 -->
    <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-log4j12</artifactId>
        <version>1.7.25</version>
    </dependency>

</dependencies>

标签:4.5,itcast,maven,slf4j,pom,org,httpclient,crawler
来源: https://blog.csdn.net/a55610991/article/details/104760528