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

时间:2012-09-24 18:31:08

标签: java tomcat maven maven-plugin maven-tomcat-plugin

我的项目的src/main/webapp目录中有CSS和JavaScript文件。 我想加入这些资源的加入和缩小版本到我的WAR文件和tomcat-maven-plugin选择它的地方。

我使用yuicompressor-maven-plugin创建文件并将其放到${project.build.directory}/${project.build.finalName}。它适用于maven包,并且这些资源可以用于WAR文件,但不知怎的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同时获取生成的文件?

3 个答案:

答案 0 :(得分:4)

使用warSourceDirectory

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

而不是warDirectory

的此配置属性(tomcat-maven-plugin
<warDirectory>${project.build.directory}/${project.build.finalName}</warDirectory>

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

如果将warSourceDirectory设置为输出文件夹,则表示您需要在启动Tomcat之前生成此文件。

答案 1 :(得分:3)

或者,您也可以使用run-war目标代替run,例如mvn tomcat6:run-war。这将使用构建目录中的爆炸战争(以及过滤后的资源)。见this site。还有run-war-only会跳过包装阶段。

答案 2 :(得分:1)

注意插件现在在Apache上维护(所以稍微升级:-))请参阅http://tomcat.apache.org/maven-plugin-2.0/

即使它使用安装我也不确定它是最佳解决方案(关于io和构建时间)。

tomcat运行必须能够使用来自多个目录的资源(我不确定它是否可以使用当前的tomcat embeded api)。

您可以在此处添加功能请求https://issues.apache.org/jira/browse/MTOMCAT

由于