zoukankan      html  css  js  c++  java
  • Pom.xml

    <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/maven-v4_0_0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>com.qyh</groupId>
      <artifactId>ch1</artifactId>
      <packaging>war</packaging>
      <version>0.0.1-SNAPSHOT</version>
      <name>ch1 Maven Webapp</name>
      <url>http://maven.apache.org</url>
      
      <dependencies>
      
      <!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
    	<dependency>
    	    <groupId>commons-logging</groupId>
    	    <artifactId>commons-logging</artifactId>
    	    <version>1.2</version>
    	</dependency>
      
    	<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
    	<dependency>
    	    <groupId>org.springframework</groupId>
    	    <artifactId>spring-context</artifactId>
    	    <version>5.0.2.RELEASE</version>
    	</dependency>
    
        <!-- https://mvnrepository.com/artifact/org.springframework/spring-aspects -->
    	<dependency>
    	    <groupId>org.springframework</groupId>
    	    <artifactId>spring-aspects</artifactId>
    	    <version>5.0.2.RELEASE</version>
    	</dependency>
    
        <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
    	<dependency>
    	    <groupId>org.aspectj</groupId>
    	    <artifactId>aspectjweaver</artifactId>
    	    <version>1.8.13</version>
    	</dependency>
    
        <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
    	<dependency>
    	    <groupId>mysql</groupId>
    	    <artifactId>mysql-connector-java</artifactId>
    	    <version>8.0.11</version>
    	</dependency>
    
        <!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
    	<dependency>
    	    <groupId>org.springframework</groupId>
    	    <artifactId>spring-jdbc</artifactId>
    	    <version>5.0.2.RELEASE</version>
    	</dependency>
    
        <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
    	<dependency>
    	    <groupId>org.mybatis</groupId>
    	    <artifactId>mybatis</artifactId>
    	    <version>3.4.5</version>
    	</dependency>
    
        <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis-spring -->
    	<dependency>
    	    <groupId>org.mybatis</groupId>
    	    <artifactId>mybatis-spring</artifactId>
    	    <version>1.3.1</version>
    	</dependency>
        
         <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-dbcp2 -->
    	<dependency>
    	    <groupId>org.apache.commons</groupId>
    	    <artifactId>commons-dbcp2</artifactId>
    	    <version>2.2.0</version>
    	</dependency>
    	
    	<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 -->
    	<dependency>
    	    <groupId>org.apache.commons</groupId>
    	    <artifactId>commons-pool2</artifactId>
    	    <version>2.5.0</version>
    	</dependency>   
    
        <!--LOG4日志 start  -->
        <dependency>  
            <groupId>org.slf4j</groupId>  
            <artifactId>slf4j-api</artifactId>  
            <version>1.7.25</version>  
        </dependency>  
        <dependency>  
            <groupId>org.slf4j</groupId>  
            <artifactId>slf4j-log4j12</artifactId>  
            <version>1.7.25</version>
        </dependency>  
        <dependency>  
            <groupId>log4j</groupId>  
            <artifactId>log4j</artifactId>  
            <version>1.2.17</version>  
        </dependency>  
        <!--LOG4日志 end  -->
           
         <!-- https://mvnrepository.com/artifact/org.springframework/spring-web -->
    	<dependency>
    	    <groupId>org.springframework</groupId>
    	    <artifactId>spring-web</artifactId>
    	    <version>5.0.2.RELEASE</version>
    	</dependency>
    	
    	<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
    	<dependency>
    	    <groupId>org.springframework</groupId>
    	    <artifactId>spring-webmvc</artifactId>
    	    <version>5.0.2.RELEASE</version>
    	</dependency>
    
        <!-- https://mvnrepository.com/artifact/org.apache.taglibs/taglibs-standard-impl -->
    	<dependency>
    	    <groupId>org.apache.taglibs</groupId>
    	    <artifactId>taglibs-standard-impl</artifactId>
    	    <version>1.2.5</version>
    	</dependency>
    	
    	<!-- https://mvnrepository.com/artifact/org.apache.taglibs/taglibs-standard-spec -->
    	<dependency>
    	    <groupId>org.apache.taglibs</groupId>
    	    <artifactId>taglibs-standard-spec</artifactId>
    	    <version>1.2.5</version>
    	</dependency>    
    
        <dependency>
         <groupId>com.fasterxml.jackson.core</groupId>
         <artifactId>jackson-core</artifactId>
         <version>2.9.4</version>
       </dependency>
      
        <dependency>
          <groupId>com.fasterxml.jackson.core</groupId>
          <artifactId>jackson-databind</artifactId>
          <version>2.9.4</version>
        </dependency>
    
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
            <version>2.9.4</version>
        </dependency>    
    
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>4.12</version>
          <scope>test</scope>
        </dependency>
      </dependencies>
      
      <build>
        <plugins>
    		<plugin>
    			<groupId>org.apache.maven.plugins</groupId>
    			<artifactId>maven-compiler-plugin</artifactId>
    			<version>3.7.0</version>
    			<configuration>
    				<source>1.8</source>
    				<target>1.8</target>
    				<encoding>UTF-8</encoding>
    			</configuration>
    		</plugin>
    	</plugins>
      </build>
    </project>
    
  • 相关阅读:
    微信跳一跳Python辅助无需配置一键操作
    人工智能三:机器学习、人工智能学习自学资料路线计划
    mysql安装配置、主从复制配置详解
    kafka安装使用配置1.1
    azkaban安装步骤
    flume安装
    zookeeper知识
    zookeeper安装
    mysql语法难点
    mysql安装
  • 原文地址:https://www.cnblogs.com/LinQingYang/p/11875664.html
Copyright © 2011-2022 走看看