• 项目通用pom.xml文件模版


    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/xsd/maven-4.0.0.xsd">
            <modelVersion>4.0.0modelVersion>
        
            
            <groupId>com.xiegroupId>
            <artifactId>StudentDemoXie12artifactId>
            <version>1.0-SNAPSHOTversion>
        
            
            <properties>
                <java.version>8java.version>
            properties>
        
            
            <parent>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-starter-parentartifactId>
                <version>2.1.6.RELEASEversion>
                <relativePath/>
            parent>
        
            
            <dependencies>
                <dependency>
                    <groupId>org.springframework.bootgroupId>
                    <artifactId>spring-boot-starter-thymeleafartifactId>
                dependency>
        
                
                <dependency>
                    <groupId>org.springframework.bootgroupId>
                    <artifactId>spring-boot-starter-data-jpaartifactId>
                dependency>
        
                
                <dependency>
                    <groupId>mysqlgroupId>
                    <artifactId>mysql-connector-javaartifactId>
                    <scope>runtimescope>
                dependency>
        
                
                <dependency>
                    <groupId>org.springframework.bootgroupId>
                    <artifactId>spring-boot-starterartifactId>
                dependency>
        
                
                <dependency>
                    <groupId>org.springframework.bootgroupId>
                    <artifactId>spring-boot-starter-testartifactId>
                    <scope>testscope>
                    <exclusions>
                        <exclusion>
                            <groupId>org.junit.vintagegroupId>
                            <artifactId>junit-vintage-engineartifactId>
                        exclusion>
                    exclusions>
                dependency>
        
                
                <dependency>
                    <groupId>org.springframework.bootgroupId>
                    <artifactId>spring-boot-starter-webartifactId>
                    <scope>compilescope>
                dependency>
        
                
                <dependency>
                    <groupId>org.projectlombokgroupId>
                    <artifactId>lombokartifactId>
                    <optional>trueoptional>
                dependency>
        
                
                <dependency>
                    <groupId>io.springfoxgroupId>
                    <artifactId>springfox-swagger2artifactId>
                    <version>2.9.2version>
                dependency>
                <dependency>
                    <groupId>io.springfoxgroupId>
                    <artifactId>springfox-swagger-uiartifactId>
                    <version>2.9.2version>
                dependency>
        
                
                <dependency>
                    <groupId>org.springframework.bootgroupId>
                    <artifactId>spring-boot-devtoolsartifactId>
                    <scope>runtimescope>
                    <optional>trueoptional>
                dependency>
            dependencies>
        
            
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.tomcat.mavengroupId>
                        <artifactId>tomcat7-maven-pluginartifactId>
                        <version>2.1version>
                        <configuration>
                            
                            <port>8080port>
                            
                            <path>/path>
                        configuration>
                    plugin>
                plugins>
            build>
        project>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
  • 相关阅读:
    [深入浅出AutoSAR] SWC 设计与应用
    ctfshow-web9(奇妙的ffifdyop绕过)
    linux 性能优化
    elasticsearch7 查询 (复杂写法)
    栈队列数组试题(四)——数组和特殊矩阵
    小目标检测QueryDet
    合并石子问题-区间dp总结
    Golang 调度器 GPM模型
    QA测试开发工程师面试题满分问答15: 讲一讲InnoDB和MyISAM
    【hive】—原有分区表新增加列(alter table xxx add columns (xxx string) cascade;)
  • 原文地址:https://blog.csdn.net/m0_69604107/article/details/133967751