| <!-- |
| 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. |
| --> |
| <assembly xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/assembly-1.1.0-SNAPSHOT.xsd"> |
| |
| |
| <id>dist-all</id> |
| <formats> |
| <format>zip</format> |
| <format>tar.gz</format> |
| </formats> |
| |
| <includeBaseDirectory>true</includeBaseDirectory> |
| |
| <files> |
| <file> |
| <source>../LICENCE.txt</source> |
| </file> |
| |
| <file> |
| <source>../NOTICE.txt</source> |
| </file> |
| |
| <file> |
| <source>../README.txt</source> |
| </file> |
| |
| <file> |
| <source>../DISCLAIMER</source> |
| </file> |
| |
| <file> |
| <source>../KEYS</source> |
| </file> |
| |
| <file> |
| <outputDirectory>config</outputDirectory> |
| <source>../samples/guess/src/main/webapp/WEB-INF/web.xml</source> |
| </file> |
| |
| <file> |
| <outputDirectory>config</outputDirectory> |
| <source>../samples/guess/src/main/webapp/WEB-INF/beans.xml</source> |
| </file> |
| |
| </files> |
| |
| <dependencySets> |
| |
| <dependencySet> |
| <outputDirectory></outputDirectory> |
| <includes> |
| <include>org.apache.openwebbeans:openwebbeans-api</include> |
| <include>org.apache.openwebbeans:openwebbeans-impl</include> |
| </includes> |
| <excludes> |
| <exclude>org.apache.openwebbeans:openwebbeans-api:jar:sources</exclude> |
| <exclude>org.apache.openwebbeans:openwebbeans-impl:jar:sources</exclude> |
| </excludes> |
| </dependencySet> |
| |
| |
| <dependencySet> |
| <outputDirectory>samples</outputDirectory> |
| <includes> |
| <include>org.apache.openwebbeans:guess:war</include> |
| </includes> |
| </dependencySet> |
| |
| <dependencySet> |
| <outputDirectory>lib/thirdparty</outputDirectory> |
| <includes> |
| <include>log4j:log4j</include> |
| <include>dom4j:dom4j</include> |
| <include>javassist:javassist</include> |
| <include>net.sf.scannotation:scannotation</include> |
| </includes> |
| </dependencySet> |
| |
| <dependencySet> |
| <outputDirectory>lib/javaee</outputDirectory> |
| <includes> |
| <include>org.apache.geronimo.specs:geronimo-servlet_2.5_spec</include> |
| <include>org.apache.geronimo.specs:geronimo-ejb_3.0_spec</include> |
| <include>org.apache.geronimo.specs:geronimo-el_1.0_spec</include> |
| <include>org.apache.myfaces.core:myfaces-api</include> |
| <include>javax.annotation:jsr250-api</include> |
| <include>org.apache.geronimo.specs:geronimo-interceptor_3.0_spec</include> |
| <include>org.apache.geronimo.specs:geronimo-jta_1.1_spec</include> |
| <include>org.apache.geronimo.specs:geronimo-jsp_2.1_spec</include> |
| <include>org.apache.geronimo.specs:geronimo-jpa_3.0_spec</include> |
| </includes> |
| </dependencySet> |
| |
| </dependencySets> |
| |
| <fileSets> |
| |
| <fileSet> |
| <directory>../licences</directory> |
| <outputDirectory>licences</outputDirectory> |
| </fileSet> |
| |
| <fileSet> |
| <directory>..</directory> |
| <useDefaultExcludes>true</useDefaultExcludes> |
| <outputDirectory>src</outputDirectory> |
| <excludes> |
| <exclude>**/target/**</exclude> |
| <exclude>**/.classpath</exclude> |
| <exclude>**/.project</exclude> |
| <exclude>**/.settings/**</exclude> |
| <exclude>**/.git/**</exclude> |
| <exclude>**/.gitignore</exclude> |
| </excludes> |
| </fileSet> |
| </fileSets> |
| |
| </assembly> |