想要不同的maven项目结构

时间:2016-10-02 06:55:36

标签: maven

尝试了解maven flow。需要创建一个名为' my-source '的文件夹。并复制同一文件夹中的多个文件。

我想要一个maven build zip文件,其中应该包含“我的来源”和#39;文件夹及其内容。我怎么做?我推荐的文章只看到java项目/文件夹结构示例。

我也看过sourcedirectory / outputdirectory。不知道我可以在哪里修改这些值,因为我找不到effectivepom的位置

所以请给我完成我的要求的过程

1 个答案:

答案 0 :(得分:0)

要创建包含所有内容的zip文件,您必须使用pom.xml中的maven程序集插件。除此之外,您还需要一个文件(比如bin.xml),它将告诉您要在zip中打包哪些文件。 pom.xml中的程序集插件只会指向bin.xml文件 请参阅下面的pom.xml示例代码。

<?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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>


    <groupId>com.abc</groupId>
    <artifactId>xyz</artifactId>
    <version>3.1.3</version>

    <build>
        <plugins>
            <plugin> <!-- Create a zip file with the contents you want deployed -->
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.5.5</version>
                <configuration>
                    <descriptors>
                        <descriptor>src/assembly/bin.xml</descriptor>    // very important. This is where we will tell where our bin.xml is located
                    </descriptors>
                    <appendAssemblyId>false</appendAssemblyId>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

        </plugins>
    </build>
</project>

现在创建一个像src / assembly一样的文件夹结构,并添加一个名为bin.xml的文件。请参阅下面的bin.xml示例代码。

<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
    <id>distrib</id>
    <formats>
        <format>zip</format>
    </formats>
    <includeBaseDirectory>false</includeBaseDirectory>
    <fileSets>  
        <fileSet>
            <directory>${project.basedir}/my-source</directory>    // the folder that you want to the packaged in the zip file
            <outputDirectory>/</outputDirectory>    // the location within the zip file where your folder should be copied. In this case it will place the my-source directory at the root level of the zip file.
            <useDefaultExcludes>true</useDefaultExcludes>
        </fileSet>
    </fileSets>
</assembly>