美文网首页
Maven学习

Maven学习

作者: ZzzsWszzZ | 来源:发表于2018-05-29 23:24 被阅读0次

    1. 参考:https://spring.io/guides/gs/maven/

    2. pom.xml文件

    一般放在项目根目录下,和src放在一起。

    <?xml version="1.0" encoding="UTF-8"?>
    <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>org.springframework</groupId>
        <artifactId>gs-maven</artifactId>
        <packaging>jar</packaging>
        <version>0.1.0</version>
    
        <properties>
            <maven.compiler.source>1.8</maven.compiler.source>
            <maven.compiler.target>1.8</maven.compiler.target>
        </properties>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-shade-plugin</artifactId>
                    <version>2.1</version>
                    <executions>
                        <execution>
                            <phase>package</phase>
                            <goals>
                                <goal>shade</goal>
                            </goals>
                            <configuration>
                                <transformers>
                                    <transformer
                                        implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                                        <mainClass>hello.HelloWorld</mainClass>
                                    </transformer>
                                </transformers>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </project>
    
    

    <modelVersion> POM模型版本(always 4.0.0).
    <groupId> 项目所属组织
    <artifactId> 项目名字,JAR或WAR的名字
    <version> 项目版本
    <packaging> 构建成JAR或WAR

    相关文章

      网友评论

          本文标题:Maven学习

          本文链接:https://www.haomeiwen.com/subject/ntszjftx.html