Author: krosenvold
Date: Thu Nov 13 15:16:04 2014
New Revision: 1639364

URL: http://svn.apache.org/r1639364
Log:
[MASSEMBLY-324] Added test project to ivestigate

Added:
    
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-324/
    
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-324/assembly.xml
    
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-324/pom.xml

Added: 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-324/assembly.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-324/assembly.xml?rev=1639364&view=auto
==============================================================================
--- 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-324/assembly.xml
 (added)
+++ 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-324/assembly.xml
 Thu Nov 13 15:16:04 2014
@@ -0,0 +1,34 @@
+<!--
+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>
+       <id>bin</id>
+       <formats>
+               <format>zip</format>
+       </formats>
+       <baseDirectory>spring-${project.version}</baseDirectory>
+       <includeBaseDirectory>true</includeBaseDirectory>
+               <dependencySets>
+               <dependencySet>
+                       <outputDirectory>WEB-INF/lib</outputDirectory>
+                       <unpack>false</unpack>
+                       <scope>runtime</scope>
+               </dependencySet>
+               </dependencySets>
+
+</assembly>

Added: 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-324/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-324/pom.xml?rev=1639364&view=auto
==============================================================================
--- 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-324/pom.xml
 (added)
+++ 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-324/pom.xml
 Thu Nov 13 15:16:04 2014
@@ -0,0 +1,70 @@
+<!--
+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/xsd/maven-4.0.0.xsd";>
+
+       <modelVersion>4.0.0</modelVersion>
+       <groupId>mygroup</groupId>
+       <artifactId>project2</artifactId>
+       <version>0.0.1-SNAPSHOT</version>
+        <packaging>jar</packaging>
+
+       <build>
+               <plugins>
+                       <plugin>
+                               <artifactId>maven-assembly-plugin</artifactId>
+                               <version>${testVersion}</version>
+                               <configuration>
+                                       <descriptors>
+                                               
<descriptor>assembly.xml</descriptor>
+                                       </descriptors>
+                               </configuration>
+                               <executions>
+                                       <execution>
+                                               <id>make-assembly</id>
+                                               <phase>package</phase>
+                                               <goals>
+                                                       <goal>single</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                       </plugin>
+               </plugins>
+       </build>
+       <dependencies>
+               <dependency>
+                       <groupId>org.apache.maven.shared</groupId>
+                       <artifactId>maven-shared-io</artifactId>
+                       <version>1.1</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.apache.maven</groupId>
+                       <artifactId>maven-artifact</artifactId>
+                       <version>2.0.2</version>
+                       <scope>provided</scope>
+               </dependency>
+               <!-- dependency>
+                       <groupId>javax.servlet</groupId>
+                       <artifactId>servlet-api</artifactId>
+                       <version>2.5</version>
+                       <scope>provided</scope>
+               </dependency -->
+       </dependencies> 
+</project>


Reply via email to