Codebase list commons-vfs / 4f46e54c-5454-4548-9557-298ec9fb7017/main dist / pom.xml
4f46e54c-5454-4548-9557-298ec9fb7017/main

Tree @4f46e54c-5454-4548-9557-298ec9fb7017/main (Download .tar.gz)

pom.xml @4f46e54c-5454-4548-9557-298ec9fb7017/mainraw · history · blame

<?xml version="1.0" encoding="UTF-8"?>

<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements.  See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License.  You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

<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>

  <name>Apache Commons VFS Distribution</name>
  <groupId>org.apache.commons</groupId>
  <artifactId>commons-vfs2-distribution</artifactId>
  <version>2.1</version>
  <packaging>pom</packaging>
  <description>Apache Commons VFS is a Virtual File System library - Distribution archives.</description>

  <parent>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-vfs2-project</artifactId>
    <version>2.1</version>
    <relativePath>../</relativePath>
  </parent>

  <properties>
    <!--  dist module contains no code and no checkstyle config -->
    <checkstyle.skip>true</checkstyle.skip>
    <vfs.parent.dir>${basedir}/..</vfs.parent.dir>
  </properties>

  <profiles>
    <profile>
      <id>release</id>
      <dependencies>
        <dependency>
          <groupId>org.apache.commons</groupId>
          <artifactId>commons-vfs2</artifactId>
          <version>${project.version}</version>
        </dependency>

        <dependency>
          <groupId>org.apache.commons</groupId>
          <artifactId>commons-vfs2</artifactId>
          <version>${project.version}</version>
          <classifier>sources</classifier>
        </dependency>
        <dependency>
          <groupId>org.apache.commons</groupId>
          <artifactId>commons-vfs2</artifactId>
          <version>${project.version}</version>
          <classifier>javadoc</classifier>
        </dependency>
        <dependency>
          <groupId>org.apache.commons</groupId>
          <artifactId>commons-vfs2</artifactId>
          <version>${project.version}</version>
          <classifier>tests</classifier>
        </dependency>
        <dependency>
          <groupId>org.apache.commons</groupId>
          <artifactId>commons-vfs2</artifactId>
          <version>${project.version}</version>
          <classifier>test-sources</classifier>
        </dependency>

        <dependency>
          <groupId>org.apache.commons</groupId>
          <artifactId>commons-vfs2-examples</artifactId>
          <version>${project.version}</version>
        </dependency>

        <dependency>
          <groupId>org.apache.commons</groupId>
          <artifactId>commons-vfs2-examples</artifactId>
          <version>${project.version}</version>
          <classifier>sources</classifier>
        </dependency>
        <dependency>
          <groupId>org.apache.commons</groupId>
          <artifactId>commons-vfs2-examples</artifactId>
          <version>${project.version}</version>
          <classifier>javadoc</classifier>
        </dependency>
      </dependencies>

      <build>
        <plugins>
          <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <executions>
              <!-- As the main Apache POM only builds source zip archives but
                   commons wants both zip and tar.gz and because this is configured
                   in the assembly, we need to use a specific assembly. That also allows
                   naming the final artifact as -src not -source-release.
              -->
              <execution>
                <id>vfs-source-release-assembly</id>
                <phase>package</phase>
                <goals>
                  <goal>single</goal>
                </goals>
                <configuration>
                  <finalName>commons-vfs-${project.version}</finalName>
                  <descriptors>
                      <descriptor>src/assembly/src.xml</descriptor>
                  </descriptors>
                  <tarLongFileMode>gnu</tarLongFileMode>
                </configuration>
              </execution>
              <execution>
                <id>binary</id>
                <configuration>
                  <finalName>commons-vfs-${project.version}</finalName>
                  <descriptors>
                    <descriptor>src/assembly/bin.xml</descriptor>
                  </descriptors>
                  <tarLongFileMode>gnu</tarLongFileMode>
                </configuration>
                <goals>
                  <goal>single</goal>
                </goals>
                <phase>package</phase>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>