<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.perforce.p4maven</groupId>
<artifactId>p4maven</artifactId>
<version>1.0.7-SNAPSHOT</version>
</parent>
<artifactId>p4maven-dev</artifactId>
<packaging>maven-plugin</packaging>
<name>P4Maven Dev Plugin</name>
<description>P4Maven Dev Plugin to setup Eclipse workspace and Maven/Perforce ignore files</description>
<prerequisites>
<maven>${maven.api.version}</maven>
</prerequisites>
<properties>
<metadata.package>com.perforce.p4maven.dev</metadata.package>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${maven.api.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven.api.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${plugin.plugin.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<!-- this plugin is for this project only no need to push it to remote maven repository -->
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>