I have the following pom.xml configured for my project:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- The Basics -->
<groupId>fcrt.fcBase.MyProject</groupId>
<artifactId>MyProject</artifactId>
<version>1.0</version>
<name>My Project</name>
<packaging>war</packaging>
<!-- Build Settings -->
<build>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.0</version>
<configuration>
<webXml>web.xml</webXml>
<webResources>
<resource>
<filtering>true</filtering>
<directory>${basedir}/WebContent/WEB-INF</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
</webResources>
</configuration>
</plugin>
</plugins>
</build>
</project>
However since I am using maven-2.0.5 version, I would have to use maven-war-plugin-2.0.jar instead of maven-war-plugin-2.1.1.jar because of compatibilty issues. While creating war, I am getting the below error:
[INFO] Internal error in the plugin manager executing goal 'org.apache.maven.plu gins:maven-war-plugin:2.0:war': Unable to find the mojo 'org.apache.maven.plugin s:maven-war-plugin:2.0:war' in the plugin 'org.apache.maven.plugins:maven-war-pl ugin'
Is there any way so that the maven looks for the jar on my local(since I have it on my local) if it is not able to download it from the apache site? Also please confirm if the pom.xml I have is correct?
maven-war-plugin-2.0(downgrading from2.1.1) withmaven-2.0.5? I've checked the dependencies:maven-war-plugin-2.1.1depends onmaven-plugin-api-2.0.6andmaven-war-plugin-2.0depends onmaven-plugin-api-2.0– probably this triggers the issue. – dma_k Aug 9 '11 at 10:49mvn war? – KasunBG Aug 9 '11 at 12:29