<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.mapfish.print</groupId>
  <artifactId>print-lib</artifactId>
  <version>1.2-SNAPSHOT</version>
  <description>POM was created from install:install-file</description>

  <distributionManagement>
    <repository>
      <uniqueVersion>false</uniqueVersion>
      <id>geosolutions</id>
      <url>ftp://maven.geo-solutions.it</url>
    </repository>
  </distributionManagement>
  <build>
    <extensions>
      <extension>
        <groupId>org.apache.maven.wagon</groupId>
        <artifactId>wagon-ftp</artifactId>
        <version>1.0-beta-7</version>
      </extension>
    </extensions>
<plugins>
   <plugin>
      <artifactId>maven-deploy-plugin</artifactId>
      <version>2.4</version>
      <configuration>
      <uniqueVersion>false</uniqueVersion>
      <classifier>jdk1.5</classifier>
       </configuration>
   </plugin>
   <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-helper-maven-plugin</artifactId>
    <version>1.7</version>
    <executions>
        <execution>
            <id>attach-source-jar</id>
            <phase>package</phase>
            <goals>
                <goal>attach-artifact</goal>
            </goals>
            <configuration>
                <artifacts>
                    <artifact>
                        <file>${project.build.finalName}-jdk1.5.jar</file>
                        <type>jar</type>
                        <classifier>jdk1.5</classifier>
                    </artifact>
                </artifacts>
            </configuration>
        </execution>
    </executions>
 </plugin>
</plugins>

  </build>
<profiles>
<!-- deploy libs -->
    <profile>
      <id>deployJar</id>
      <activation>
        <property>
          <name>deployJar</name>
        </property>
      </activation>
      <modules>
        <module>deploy</module>
      </modules>
    </profile>
 </profiles>
<dependencies>
</dependencies>

</project>
