• Java-maven-shangcheng-parent-web-配置


    <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-manager</artifactId>

    <version>0.0.1-SNAPSHOT</version>

    </parent>

    <artifactId>xx-manager-web</artifactId>

    <packaging>war</packaging>

    <!-- 添加依赖 -->

    <dependencies>

    <dependency>

    <groupId>com.xx</groupId>

    <artifactId>xx-manager-service</artifactId>

    <version>0.0.1-SNAPSHOT</version>

    </dependency>

    <!-- JSP相关 -->

    <dependency>

    <groupId>jstl</groupId>

    <artifactId>jstl</artifactId>

    </dependency>

    <dependency>

    <groupId>javax.servlet</groupId>

    <artifactId>servlet-api</artifactId>

    <scope>provided</scope>

    </dependency>

    <dependency>

    <groupId>javax.servlet</groupId>

    <artifactId>jsp-api</artifactId>

    <scope>provided</scope>

    </dependency>

    <!-- 文件上传组件 -->

    <dependency>

    <groupId>commons-fileupload</groupId>

    <artifactId>commons-fileupload</artifactId>

    </dependency>

    </dependencies>

    </project>

  • 相关阅读:
    appium+python界面滑动
    selenium+python元素定位总结
    PAT甲级1017. Queueing at Bank
    PAT甲级1016. Phone Bills
    PAT甲级1014. Waiting in Line
    PAT甲级1013. Battle Over Cities
    PAT甲级1012. The Best Rank
    PAT甲级1010. Radix
    PAT甲级1003. Emergency
    hihocoder1320 160周 压缩字符串
  • 原文地址:https://www.cnblogs.com/gangzi4321/p/11497263.html
Copyright © 2020-2023  润新知