zoukankan      html  css  js  c++  java
  • 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>

  • 相关阅读:
    phpajax高级篇
    一天学会ajax (php环境)
    php生成静态文件的方法
    MongoDB查询文档
    MongoDB删除文档
    MongoDB索引管理
    MongoDB插入文档
    MongoDB排序记录
    MongoDB 更新文档
    mongoDB 固定集合(capped collection)
  • 原文地址:https://www.cnblogs.com/gangzi4321/p/11497195.html
Copyright © 2011-2022 走看看