Maven-Resources-Plugin 配置文件



我正在将现有项目(旧版)移至Maven。它具有以下结构:

ParentProject
 - EARModule
   - src
   - target
   - pom.xml (ear)
 - WARModule
   - src
     - main
       - java
         - (java packages and classes)
       - resources
         - dev
           - index.jsp
         - prod
           - index.jsp
       - webapp
         - views
           - index.jsp (original)
         - WEB-INF
   - target
   - pom.xml (war)
 - pom.xml (parent)

我打算具有两个不同的概况:生产和开发。在生产配置文件中,/warmodule/src/main/resources/ prod/index.jsp应该组装成视图/战争目录。在开发个人资料中,/warmodule/src/main/resources/ dev/index.jsp应该复制到视图/war目录中。

为此,我正在尝试使用Maven-Resources-Plugin,我在战争pom.xml中进行配置。

<properties>
    <prodResourcesDir>${basedir}/src/main/resources/prod</prodResourcesDir>
    <devResourcesDir>${basedir}/src/main/resources/dev</devResourcesDir>
    <viewsDir>${basedir}/target/WARModule/views</viewsDir>
</properties>
<profiles>
    <profile>
        <id>development</id>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-resources-plugin</artifactId>
                    <version>2.6</version>
                    <executions>
                        <execution>
                            <id>copy_development_index.jsp</id>
                            <phase>prepare-package</phase>
                            <goals>
                                <goal>copy-resources</goal>
                            </goals>
                            <configuration>
                                <outputDirectory>${viewsDir}</outputDirectory>
                                <resources>
                                    <resource>
                                        <directory>${devResourcesDir}</directory>
                                        <filtering>true</filtering>
                                        <includes>
                                            <include>index.jsp</include>
                                        </includes>
                                    </resource>
                                </resources>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </profile>
    <profile>
        <id>production</id>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-resources-plugin</artifactId>
                    <version>2.6</version>
                    <executions>
                        <execution>
                            <id>copy_production_index.jsp</id>
                            <phase>prepare-package</phase>
                            <goals>
                                <goal>copy-resources</goal>
                            </goals>
                            <configuration>
                                <outputDirectory>${viewsDir}</outputDirectory>
                                <resources>
                                    <resource>
                                        <directory>${prodResourcesDir}</directory>
                                        <includes>
                                            <include>index.jsp</include>
                                        </includes>
                                    </resource>
                                </resources>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </profile>
</profiles>

您可以在上面看到,我正在创建两个配置文件(生产和开发)并在每个配置中配置资源插件。

当我运行MVN安装-p any_of_the_profiles时,index.jsp不会复制到指定的目标。相反,我得到了原始版本。谁能帮我解决这个问题?

日志跟踪下方:

$ mvn -P production install
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] ParentProject
[INFO] WebModule Maven Webapp
[INFO] EARModule
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building ParentProject 0.0.2-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ ParentProject ---
[INFO] Installing D:workspacemvn_projectsParentProjectpom.xml to C:Usersa048148.m2repositorymyorgParentProject.0.2-SNAPSHOTParentProject-0.0.2-SNAPSHOT.pom
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building WebModule Maven Webapp 0.0.2-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ WebModule ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 10 resources
[INFO]
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ WebModule ---
[INFO] Changes detected - recompiling the module!
[INFO] Compilation messages...
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ WebModule ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:workspacemvn_projectsParentProjectWebModulesrctestresources
[INFO]
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ WebModule ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ WebModule ---
[INFO] No tests to run.
[INFO]
[INFO] --- maven-resources-plugin:2.6:copy-resources (copy_index.jsp) @ WebModule ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO]
[INFO] --- maven-war-plugin:2.2:war (default-war) @ WebModule ---
[INFO] Packaging webapp
[INFO] Assembling webapp [WebModule] in [D:workspacemvn_projectsParentProjectWebModuletargetWebModule]
[INFO] Processing war project
[INFO] Copying webapp resources [D:workspacemvn_projectsParentProjectWebModulesrcmainwebapp]
[INFO] Webapp assembled in [3122 msecs]
[INFO] Building war: D:workspacemvn_projectsParentProjectWebModuletargetWebModule.war
[INFO] WEB-INFweb.xml already added, skipping
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ WebModule ---
[INFO] Installing D:workspacemvn_projectsParentProjectWebModuletargetWebModule.war to C:Usersa048148.m2repositorymyorgWebModule.0.2-SNAPSHOTWebModule-0.0.2-SNAPSHOT.war
[INFO] Installing D:workspacemvn_projectsParentProjectWebModulepom.xml to C:Usersa048148.m2repositorymyorgWebModule.0.2-SNAPSHOTWebModule-0.0.2-SNAPSHOT.pom
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building EARModule 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-ear-plugin:2.8:generate-application-xml (default-generate-application-xml) @ EARModule ---
[INFO] Generating application.xml
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ EARModule ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 0 resource
[INFO]
[INFO] --- maven-ear-plugin:2.8:ear (default-ear) @ EARModule ---
[INFO] Copying artifact [war:com.bbh:WebModule:0.0.1-SNAPSHOT] to [WebModule-0.0.1-SNAPSHOT.war]
[INFO] Could not find manifest file: D:workspacemvn_projectsParentProjectEARModuletargetParentProjectMETA-INFMANIFEST.MF - Generating one
[INFO] Building jar: D:workspacemvn_projectsParentProjectEARModuletargetParentProject.ear
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ EARModule ---
[INFO] Installing D:workspacemvn_projectsParentProjectEARModuletargetParentProject.ear to C:Usersa048148.m2repositorymyorgEARModule.0.1-SNAPSHOTEARModule-0.0.1-SNAPSHOT.ear
[INFO] Installing D:workspacemvn_projectsParentProjectEARModulepom.xml to C:Usersa048148.m2repositorymyorgEARModule.0.1-SNAPSHOTEARModule-0.0.1-SNAPSHOT.pom
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] ParentProject .......................................... SUCCESS [  0.229 s]
[INFO] WebModule Maven Webapp ................................ SUCCESS [ 19.470 s]
[INFO] EARModule ............................................. SUCCESS [  3.049 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 22.892 s
[INFO] Finished at: 2016-12-12T15:18:14+01:00
[INFO] Final Memory: 39M/247M
[INFO] ------------------------------------------------------------------------

我最终弄清楚了maven-resources-plugin的工作正常,对于 Resources ,而不是 Web> Web> Web Resources (JSP)。<<<<<<<<

因此,我将方法切换到Maven-War-Plugin过滤功能并指定目标路径。因此,我的web pom.xml中的配置文件部分最终以这样的方式出现:

<profiles>
    <profile>
        <id>development</id>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-war-plugin</artifactId>
                    <version>3.0.0</version>
                    <configuration>
                        <webResources>
                            <resource>
                                <directory>${devResourcesDir}</directory>
                                <filtering>true</filtering>
                                <targetPath>views</targetPath> <!-- target/WebModule/ subdirectory -->
                                <include>index.jsp</include>
                            </resource>
                        </webResources>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </profile>
    <profile>
        <id>production</id>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-war-plugin</artifactId>
                    <version>3.0.0</version>
                    <configuration>
                        <webResources>
                            <resource>
                                <directory>${prodResourcesDir}</directory>
                                <filtering>true</filtering>
                                <targetPath>views</targetPath> <!-- target/WebModule/ subdirectory -->
                                <include>index.jsp</include>
                            </resource>
                        </webResources>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </profile>
</profiles>

这告诉maven-war-plugin将 index.jsp 从指定的资源目录移动到 target/webmodule/webmodule/views/views 目录。这一切都是由战争包装之前的战争插件完成的,因此无需指定生命周期阶段。

相关内容

  • 没有找到相关文章

最新更新