Maven:在哪里为tomcat-maven-plugin生成的资源?

我在项目的目录中有CSS和JavaScript文件。我想加入将这些资源的已加入和缩小版本添加到我的WAR文件以及拾取它的地方。src/main/webapptomcat-maven-plugin

我使用yuicompressor-maven-plugin来创建文件并将其放入.它非常适合maven软件包,这些资源会进入WAR文件,但不知何故根本看不到它们。我应该为它使用不同的目录吗?${project.build.directory}/${project.build.finalName}tomcat-maven-plugin

我的 pom:

    <plugins>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>tomcat-maven-plugin</artifactId>
            <version>1.1</version>
            <configuration>
                <path>/MyApp</path>
                <warDirectory>${project.build.directory}/${project.build.finalName}</warDirectory>
            </configuration>
        </plugin>
        <plugin>
            <version>2.5.1</version>
            <inherited>true</inherited>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.6</source>
                <target>1.6</target>
                <optimize>true</optimize>
                <debug>true</debug>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-resources-plugin</artifactId>
            <version>2.5</version>
            <configuration>
                <encoding>UTF-8</encoding>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.2</version>
            <configuration>
                <webResources>
                    <resource>
                        <directory>${basedir}/src/main/resources/META-INF</directory>
                        <filtering>true</filtering>
                        <targetPath>META-INF</targetPath>
                        <includes>
                            <include>context.xml</include>
                        </includes>
                    </resource>
                </webResources>
                <archive>
                    <addMavenDescriptor>false</addMavenDescriptor>
                    <manifest>
                        <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                        <addClasspath>true</addClasspath>
                    </manifest>
                </archive>
            </configuration>
        </plugin>
        <plugin>
            <groupId>net.alchim31.maven</groupId>
            <artifactId>yuicompressor-maven-plugin</artifactId>
            <version>1.3.0</version>
            <executions>
                <execution>
                    <phase>process-resources</phase>
                    <configuration>
                        <excludes>
                            <exclude>**/*</exclude>
                        </excludes>
                        <aggregations>
                            <aggregation>
                                <output>${project.build.directory}/${project.build.finalName}/js/commons-pack.js</output>
                                <includes>
                                    <include>${project.build.sourceDirectory}/../webapp/js1.js</include>
                                    <include>${project.build.sourceDirectory}/../webapp/js2.js</include>
                     ...

我该怎么做才能同时拾取我生成的文件?mvn tomcat:run


答案 1

用:warSourceDirectory

<warSourceDirectory>${project.build.directory}/${project.build.finalName}</warSourceDirectory>

而不是此配置属性 () 用于 :warDirectorytomcat-maven-plugin

<warDirectory>${project.build.directory}/${project.build.finalName}</warDirectory>

根据tomcat-maven-plugin文档,是获取Web资源的地方,其默认值为。这意味着,如果未设置该属性,则需要在 下生成统一/缩小的 JavaScript 文件。warSourceDirectory${basedir}/src/main/webapp${basedir}/src/main/webapp

如果设置为输出文件夹,这意味着您需要在启动 Tomcat 之前生成此文件。warSourceDirectory


答案 2

或者,您也可以使用目标而不是 ,例如 。这将使用构建目录中的爆炸式战争(从而过滤资源)。请参阅此站点。还有跳过包装阶段。run-warrunmvn tomcat6:run-warrun-war-only


推荐