<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2012 The Netty Project ~ ~ The Netty Project 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> <parent> <groupId>io.netty</groupId> <artifactId>netty-parent</artifactId> <version>4.1.0.Beta6-SNAPSHOT</version> </parent> <artifactId>netty-tarball</artifactId> <packaging>pom</packaging> <name>Netty/Tarball</name> <dependencies> <!-- The example depends on all modules either directly or transitively --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>netty-example</artifactId> <version>${project.version}</version> <scope>compile</scope> <optional>true</optional> </dependency> <!-- All-in-one JAR --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>netty-all</artifactId> <version>${project.version}</version> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <executions> <execution> <id>clean-first</id> <phase>generate-resources</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> </plugin> <!-- Disable animal sniffer --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> <executions> <execution> <id>default</id> <phase>none</phase> </execution> </executions> </plugin> <!-- Disable checkstyle --> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <executions> <execution> <id>check-style</id> <phase>none</phase> </execution> </executions> </plugin> <!-- Do not deploy this module --> <plugin> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>full</id> <build> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-jars</id> <phase>prepare-package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/jars</outputDirectory> <includeGroupIds>${project.groupId}</includeGroupIds> <excludeArtifactIds>netty-all</excludeArtifactIds> </configuration> </execution> <execution> <id>copy-sources</id> <phase>prepare-package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <classifier>sources</classifier> <outputDirectory>${project.build.directory}/jars</outputDirectory> <includeGroupIds>${project.groupId}</includeGroupIds> <excludeArtifactIds>netty-all</excludeArtifactIds> </configuration> </execution> <execution> <id>copy-jars-all-in-one</id> <phase>prepare-package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/jars-all</outputDirectory> <includeGroupIds>${project.groupId}</includeGroupIds> <includeArtifactIds>netty-all</includeArtifactIds> </configuration> </execution> <execution> <id>copy-sources-all-in-one</id> <phase>prepare-package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <classifier>sources</classifier> <outputDirectory>${project.build.directory}/jars-all</outputDirectory> <includeGroupIds>${project.groupId}</includeGroupIds> <includeArtifactIds>netty-all</includeArtifactIds> </configuration> </execution> <execution> <id>copy-apidocs-all-in-one</id> <phase>prepare-package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <classifier>javadoc</classifier> <outputDirectory>${project.build.directory}/apidocs-all</outputDirectory> <includeGroupIds>${project.groupId}</includeGroupIds> <includeArtifactIds>netty-all</includeArtifactIds> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>build-tarball</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <finalName>netty-${project.version}</finalName> <appendAssemblyId>false</appendAssemblyId> <attach>false</attach> <descriptors> <descriptor>${project.basedir}/assembly.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>