tiles-assembly
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-assembly</artifactId> <version>2.2.2</version> </dependency>
<?xml version="1.0"?> <!-- $Id: pom.xml 955022 2010-06-15 19:43:44Z apetrelli $ 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> <groupId>org.apache.tiles</groupId> <artifactId>tiles-assembly</artifactId> <packaging>pom</packaging> <name>Tiles Assembly</name> <description>Tiles Assembly: assembles artifact to produce distributions. </description> <parent> <groupId>org.apache.tiles</groupId> <artifactId>tiles-parent</artifactId> <version>2.2.2</version> </parent> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/tiles/framework/tags/tiles-2.2.2/assembly</connection> <developerConnection>scm:svn:https://svn.apache.org/repos/asf/tiles/framework/tags/tiles-2.2.2/assembly</developerConnection> <url>http://svn.apache.org/viewcvs.cgi/tiles/framework/tags/tiles-2.2.2/assembly</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.2-beta-4</version> <configuration> <descriptors> <descriptor>src/main/assembly/bin.xml</descriptor> <descriptor>src/main/assembly/docs.xml</descriptor> <descriptor>src/main/assembly/src.xml</descriptor> </descriptors> <finalName>tiles-${version}</finalName> <outputDirectory>target/assembly/out</outputDirectory> <workDirectory>target/assembly/work</workDirectory> <tarLongFileMode>gnu</tarLongFileMode> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.2-beta-4</version> <executions> <execution> <id>make-assembly</id> <goals> <goal>attached</goal> </goals> <phase>package</phase> </execution> </executions> <configuration> <descriptors> <descriptor>src/main/assembly/bin.xml</descriptor> <descriptor>src/main/assembly/docs.xml</descriptor> <descriptor>src/main/assembly/src.xml</descriptor> </descriptors> <tarLongFileMode>gnu</tarLongFileMode> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>deploy</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <mkdir dir="${project.build.directory}/assemblies" /> <echo message="Here I am!" /> <copy todir="${project.build.directory}/assemblies"> <fileset dir="${settings.localRepository}/org/apache/tiles/tiles-assembly/${pom.version}"> <include name="tiles-assembly-${pom.version}-*.zip*" /> <include name="tiles-assembly-${pom.version}-*.tar.gz*" /> </fileset> <mapper type="glob" from="tiles-assembly-*" to="tiles-*" /> </copy> </tasks> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>wagon-maven-plugin</artifactId> <executions> <execution> <phase>deploy</phase> <goals> <goal>upload</goal> </goals> <configuration> <fromDir>${project.build.directory}/assemblies</fromDir> <includes>**</includes> <toDir>${pom.version}</toDir> <serverId>tiles.build</serverId> <url>scp://people.apache.org/www/people.apache.org/builds/tiles</url> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <!-- Main Tiles packages --> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-api</artifactId> <version>${pom.version}</version> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-core</artifactId> <version>${pom.version}</version> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-servlet</artifactId> <version>${pom.version}</version> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-servlet-wildcard</artifactId> <version>${pom.version}</version> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-portlet</artifactId> <version>${pom.version}</version> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-portlet-wildcard</artifactId> <version>${pom.version}</version> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-jsp</artifactId> <version>${pom.version}</version> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-compat</artifactId> <version>${pom.version}</version> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-test</artifactId> <version>${pom.version}</version> <type>war</type> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-extras</artifactId> <version>${pom.version}</version> <type>jar</type> </dependency> <!-- Optional dependencies that will be redistributed --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <version>1.5.8</version> <scope>runtime</scope> </dependency> </dependencies> <repositories> <repository> <id>java_net</id> <url>http://download.java.net/maven/1/</url> <layout>legacy</layout> </repository> </repositories> </project>