• maven常用的一些依赖


     1     <dependencies>
     2         <dependency>
     3             <groupId>junit</groupId>
     4             <artifactId>junit</artifactId>
     5             <version>4.9</version>
     6         </dependency>
     7         <dependency>
     8             <groupId>poi</groupId>
     9             <artifactId>poi</artifactId>
    10             <version>3.0.2-FINAL</version>
    11         </dependency>
    12         
    13         <dependency>
    14             <groupId>org.slf4j</groupId>
    15             <artifactId>slf4j-api</artifactId>
    16             <version>1.5.8</version>
    17         </dependency>
    18         <dependency>
    19             <groupId>log4j</groupId>
    20             <artifactId>log4j</artifactId>
    21             <version>1.2.13</version>
    22         </dependency>
    23         <dependency>
    24             <groupId>org.slf4j</groupId>
    25             <artifactId>slf4j-log4j12</artifactId>
    26             <version>1.4.2</version>
    27         </dependency>            
    28         <dependency>
    29             <groupId>org.springframework</groupId>
    30             <artifactId>spring-context</artifactId>
    31             <version>${org.springframework.version}</version>
    32         </dependency>
    33         <dependency>
    34             <groupId>org.springframework</groupId>
    35             <artifactId>spring-orm</artifactId>
    36             <version>${org.springframework.version}</version>
    37         </dependency>
    38         
    39         <dependency>
    40             <groupId>org.hibernate</groupId>
    41             <artifactId>hibernate-core</artifactId>
    42             <version>3.5.6-Final</version>
    43         </dependency>        
    44         <dependency>
    45             <groupId>c3p0</groupId>
    46             <artifactId>c3p0</artifactId>
    47             <version>0.9.1.2</version>
    48         </dependency>
    49         <dependency>
    50             <groupId>mysql</groupId>
    51             <artifactId>mysql-connector-java</artifactId>
    52             <version>5.1.10</version>
    53         </dependency>
    54         <dependency>
    55             <groupId>org.apache.tomcat</groupId>
    56             <artifactId>servlet-api</artifactId>
    57             <version>6.0.33</version>
    58             <scope>provided</scope>
    59         </dependency>
    60         
    61         <dependency>    
    62             <groupId>org.apache.struts</groupId>    
    63             <artifactId>struts2-spring-plugin</artifactId>    
    64             <version>2.2.3</version>    
    65         </dependency>
    66     </dependencies>
  • 相关阅读:
    C/C++ 语言中的表达式求值
    C++中delete与delete[]
    特殊数据类型成员变量的初始化
    C++中的new
    C++数组名解析
    C++中的位拷贝和值拷贝
    while(cin>>s)退出问题
    C++继承中的虚析构函数
    C++的IO标准库介绍
    C++一道面试题(atexit)
  • 原文地址:https://www.cnblogs.com/friends-wf/p/3804353.html
Copyright © 2020-2023  润新知