• Java-maven-shangcheng-common-配置


    <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">

    <modelVersion>4.0.0</modelVersion>

    <parent>

    <groupId>com.xx</groupId>

    <artifactId>xx-parent</artifactId>

    <version>0.0.1-SNAPSHOT</version>

    </parent>

    <groupId>com.xx</groupId>

    <artifactId>xx-common</artifactId>

    <version>0.0.1-SNAPSHOT</version>

    <!-- 添加依赖 -->

    <dependencies>

    <!-- 时间操作组件 -->

    <dependency>

    <groupId>joda-time</groupId>

    <artifactId>joda-time</artifactId>

    </dependency>

    <!-- Apache工具组件 -->

    <dependency>

    <groupId>org.apache.commons</groupId>

    <artifactId>commons-lang3</artifactId>

    </dependency>

    <dependency>

    <groupId>org.apache.commons</groupId>

    <artifactId>commons-io</artifactId>

    </dependency>

    <dependency>

    <groupId>commons-net</groupId>

    <artifactId>commons-net</artifactId>

    </dependency>

    <!-- Jackson Json处理工具包 -->

    <dependency>

    <groupId>com.fasterxml.jackson.core</groupId>

    <artifactId>jackson-databind</artifactId>

    </dependency>

    <!-- httpclient -->

    <dependency>

    <groupId>org.apache.httpcomponents</groupId>

    <artifactId>httpclient</artifactId>

    </dependency>

    <!-- 单元测试 -->

    <dependency>

    <groupId>junit</groupId>

    <artifactId>junit</artifactId>

    </dependency>

    <!-- 日志处理 -->

    <dependency>

    <groupId>org.slf4j</groupId>

    <artifactId>slf4j-log4j12</artifactId>

    </dependency>

    </dependencies>

    </project>

  • 相关阅读:
    phpize使用方法
    PHP安装redis扩展
    lnmp 搭建后,nginx下php文件404但是html文件正常访问
    nginx配置https访问安装ssl证书
    Linux安装git最新版本
    微信公众号开发处理微信昵称带图片问题
    如何撰写技术文档
    Asp.Net Core 2.0实现HttpResponse中繁切换
    EF6.0 下sql语句自动生成的参数类型decimal(18,2)修改
    Windows注册表详解
  • 原文地址:https://www.cnblogs.com/gangzi4321/p/11497195.html
Copyright © 2020-2023  润新知