我的项目的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
同时获取生成的文件?
答案 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 documentation,warSourceDirectory
是获取网络资源的地方,其默认值为${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
由于