Author: apetrelli
Date: Fri Mar 2 03:48:36 2007
New Revision: 513714
URL: http://svn.apache.org/viewvc?view=rev&rev=513714
Log:
TILES-127
Added assembly module POM.
Corrected bin assembly descriptor.
Added:
tiles/framework/trunk/assembly/pom.xml (with props)
Modified:
tiles/framework/trunk/assembly/src/main/assembly/bin.xml
Added: tiles/framework/trunk/assembly/pom.xml
URL:
http://svn.apache.org/viewvc/tiles/framework/trunk/assembly/pom.xml?view=auto&rev=513714
==============================================================================
--- tiles/framework/trunk/assembly/pom.xml (added)
+++ tiles/framework/trunk/assembly/pom.xml Fri Mar 2 03:48:36 2007
@@ -0,0 +1,97 @@
+<?xml version="1.0"?>
+<!--
+ $Id$
+
+ 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
+ </description>
+
+ <parent>
+ <groupId>org.apache.tiles</groupId>
+ <artifactId>tiles-parent</artifactId>
+ <version>2.0.2-SNAPSHOT</version>
+ </parent>
+
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/tiles/framework/trunk/assembly</connection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/tiles/framework/trunk/assembly</developerConnection>
+ <url>http://svn.apache.org/viewcvs.cgi/tiles/framework/trunk/assembly</url>
+ </scm>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2-SNAPSHOT</version>
+ <configuration>
+ <descriptors>
+ <descriptor>src/main/assembly/bin.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>
+
+ <dependencies>
+
+ <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>commons-digester</groupId>
+ <artifactId>commons-digester</artifactId>
+ <version>1.8</version>
+ <exclusions>
+ <exclusion>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging-api</artifactId>
+ <version>1.1</version>
+ </dependency>
+
+ </dependencies>
+
+</project>
Propchange: tiles/framework/trunk/assembly/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: tiles/framework/trunk/assembly/pom.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Modified: tiles/framework/trunk/assembly/src/main/assembly/bin.xml
URL:
http://svn.apache.org/viewvc/tiles/framework/trunk/assembly/src/main/assembly/bin.xml?view=diff&rev=513714&r1=513713&r2=513714
==============================================================================
--- tiles/framework/trunk/assembly/src/main/assembly/bin.xml (original)
+++ tiles/framework/trunk/assembly/src/main/assembly/bin.xml Fri Mar 2
03:48:36 2007
@@ -25,9 +25,6 @@
<dependencySet>
<outputDirectory>/lib</outputDirectory>
<excludes>
- <exclude>javax.servlet:servlet-api</exclude>
- <exclude>javax.servlet:jsp-api</exclude>
- <exclude>javax.portlet:portlet-api</exclude>
<exclude>org.apache.tiles:tiles-api</exclude>
<exclude>org.apache.tiles:tiles-core</exclude>
</excludes>
@@ -38,9 +35,6 @@
<include>org.apache.tiles:tiles-api</include>
<include>org.apache.tiles:tiles-core</include>
</includes>
- <excludes>
- <exclude>*</exclude>
- </excludes>
</dependencySet>
</dependencySets>