<?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>
  <artifactId>org.gvsig.projection.app.jcrs.mainplugin</artifactId>
  <packaging>jar</packaging>

 	<parent>
		<groupId>org.gvsig</groupId>
		<artifactId>org.gvsig.projection.app.jcrs</artifactId>
		<version>2.1.216</version>
	</parent>

  <dependencies>
      <dependency>
          <groupId>org.gvsig</groupId>
          <artifactId>org.gvsig.projection.app.jcrs.common</artifactId>
          <type>zip</type>
        </dependency>
  </dependencies>

  <build>
    <plugins>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
        <executions>
          <execution>
          	<id>unpack</id>
	        <phase>process-sources</phase>
	        <goals>
	          <goal>unpack</goal>
	        </goals>
	        <configuration>
	          <artifactItems>
	            <artifactItem>
		            <groupId>org.gvsig</groupId>
		            <artifactId>org.gvsig.projection.app.jcrs.common</artifactId>
		            <type>zip</type>
                            <overWrite>true</overWrite>
                            <outputDirectory>target</outputDirectory>
	            </artifactItem>
	          </artifactItems>
	        </configuration>
          </execution>
        </executions>
      </plugin>

      </plugins>
  </build>

  <properties>
    <gvsig.install.plugin>true</gvsig.install.plugin>
    <gvsig.package.info.name>CRS: CRS management (GDAL/Geotools based, Native)</gvsig.package.info.name>
  </properties>
</project>

