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>

  • 相关阅读:
    在当前的webview中跳转到新的url 使用WebView组件显示网页
    android WebView中js的alert()失效
    移动平台的WebApp之Meta标签
    CSS背景属性Background详解
    JS仿淘宝左侧菜单
    什么是 Backbone.js
    mssql Row_Number() 分页 DISTINCT 问题
    跟我一起玩转Sencha Touch 移动 WebApp 开发(一)
    HTML5 book响应式翻页效果
    HTML5开发的翻页效果实例
  • 原文地址:https://www.cnblogs.com/gangzi4321/p/11497195.html
Copyright © 2011-2022 走看看