Author: mlizewski
Date: Tue Jun 4 12:17:31 2013
New Revision: 1489403
URL: http://svn.apache.org/r1489403
Log:
fix for: WARNING 'build.plugins.plugin.version' for
org.apache.maven.plugins:maven-war-plugin is missing
Modified:
manifoldcf/trunk/framework/combined-service/pom.xml
Modified: manifoldcf/trunk/framework/combined-service/pom.xml
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/framework/combined-service/pom.xml?rev=1489403&r1=1489402&r2=1489403&view=diff
==============================================================================
--- manifoldcf/trunk/framework/combined-service/pom.xml (original)
+++ manifoldcf/trunk/framework/combined-service/pom.xml Tue Jun 4 12:17:31 2013
@@ -187,35 +187,36 @@
</dependencies>
<build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId>
- <configuration>
- <overlays>
- <overlay>
- <groupId>org.apache.manifoldcf</groupId>
- <artifactId>mcf-crawler-ui</artifactId>
- <type>war</type>
- <includes>
- <include>*.jsp</include>
- <include>*.css</include>
- <include>*.png</include>
- </includes>
- <targetPath>/</targetPath>
- </overlay>
- <overlay>
- <groupId>org.apache.manifoldcf</groupId>
- <artifactId>mcf-crawler-ui</artifactId>
- <type>war</type>
- <includes>
- <include>WEB-INF/jsp/*</include>
- </includes>
- <targetPath>/</targetPath>
- </overlay>
- </overlays>
- </configuration>
- </plugin>
- </plugins>
- </build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-war-plugin</artifactId>
+ <version>2.3</version>
+ <configuration>
+ <overlays>
+ <overlay>
+ <groupId>org.apache.manifoldcf</groupId>
+ <artifactId>mcf-crawler-ui</artifactId>
+ <type>war</type>
+ <includes>
+ <include>*.jsp</include>
+ <include>*.css</include>
+ <include>*.png</include>
+ </includes>
+ <targetPath>/</targetPath>
+ </overlay>
+ <overlay>
+ <groupId>org.apache.manifoldcf</groupId>
+ <artifactId>mcf-crawler-ui</artifactId>
+ <type>war</type>
+ <includes>
+ <include>WEB-INF/jsp/*</include>
+ </includes>
+ <targetPath>/</targetPath>
+ </overlay>
+ </overlays>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>
\ No newline at end of file