Author: krosenvold
Date: Sat Dec  6 19:45:56 2014
New Revision: 1643596

URL: http://svn.apache.org/r1643596
Log:
Added testcases

Added:
    
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/
    
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/pom.xml
    
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/src/
    
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/src/assembly/
    
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/src/assembly/deployable.xml
    
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/src/main/
    
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/src/main/webapp/
    
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/src/main/webapp/WEB-INF/
    
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/src/main/webapp/WEB-INF/web.xml
    
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-743/
    
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-743/assembly.xml
    
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-743/pom.xml
    
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-743/structure/
    
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-743/structure/README.txt

Added: 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/pom.xml?rev=1643596&view=auto
==============================================================================
--- 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/pom.xml
 (added)
+++ 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/pom.xml
 Sat Dec  6 19:45:56 2014
@@ -0,0 +1,62 @@
+<!--
+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>
+       <parent>
+               <groupId>net.sf.michael-o</groupId>
+               <artifactId>michael-o-parent</artifactId>
+               <version>8</version>
+       </parent>
+       <artifactId>massembly-737</artifactId>
+       <version>0.0.1-SNAPSHOT</version>
+       <packaging>war</packaging>
+
+       <build>
+               <defaultGoal>package</defaultGoal>
+               <pluginManagement>
+                       <plugins>
+                               <plugin>
+                                       
<groupId>org.apache.maven.plugins</groupId>
+                                       
<artifactId>maven-assembly-plugin</artifactId>
+                                       <version>${testVersion}</version>
+                               </plugin>
+                       </plugins>
+               </pluginManagement>
+               <plugins>
+                       <plugin>
+                               <artifactId>maven-assembly-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <id>assemble-deployable-war</id>
+                                               <phase>package</phase>
+                                               <goals>
+                                                       <goal>single</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <descriptors>
+                                                               
<descriptor>src/assembly/deployable.xml</descriptor>
+                                                       </descriptors>
+                                               </configuration>
+                                       </execution>
+                               </executions>
+                       </plugin>
+               </plugins>
+       </build>
+</project>

Added: 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/src/assembly/deployable.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/src/assembly/deployable.xml?rev=1643596&view=auto
==============================================================================
--- 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/src/assembly/deployable.xml
 (added)
+++ 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/src/assembly/deployable.xml
 Sat Dec  6 19:45:56 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
+       
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2";
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2
 http://maven.apache.org/xsd/assembly-1.1.2.xsd";>
+       <id>deployable</id>
+       <formats>
+               <format>war</format>
+       </formats>
+       <includeBaseDirectory>false</includeBaseDirectory>
+       <dependencySets>
+               <dependencySet>
+                       <unpack>true</unpack>
+                       <useProjectArtifact>true</useProjectArtifact>
+               </dependencySet>
+       </dependencySets>
+</assembly>
\ No newline at end of file

Added: 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/src/main/webapp/WEB-INF/web.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/src/main/webapp/WEB-INF/web.xml?rev=1643596&view=auto
==============================================================================
--- 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/src/main/webapp/WEB-INF/web.xml
 (added)
+++ 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-737/src/main/webapp/WEB-INF/web.xml
 Sat Dec  6 19:45:56 2014
@@ -0,0 +1,18 @@
+<!--
+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.
+-->
\ No newline at end of file

Added: 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-743/assembly.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-743/assembly.xml?rev=1643596&view=auto
==============================================================================
--- 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-743/assembly.xml
 (added)
+++ 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-743/assembly.xml
 Sat Dec  6 19:45:56 2014
@@ -0,0 +1,39 @@
+<!--
+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 
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2";
+                 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+                 
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2
 http://maven.apache.org/xsd/assembly-1.1.2.xsd";>
+
+       <id>dist</id>
+
+       <!-- Generates a zip package containing the needed files -->
+       <formats>
+               <format>tar.gz</format>
+       </formats>
+
+       
<includeBaseDirectory>${mine.includeBaseDirectory}</includeBaseDirectory>
+
+       <files>
+               <file>
+                       <source>structure/README.txt</source>
+                       <destName>folder/README.txt</destName>
+               </file>
+       </files>
+
+</assembly>

Added: 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-743/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-743/pom.xml?rev=1643596&view=auto
==============================================================================
--- 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-743/pom.xml
 (added)
+++ 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-743/pom.xml
 Sat Dec  6 19:45:56 2014
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+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>
+       <packaging>jar</packaging>
+
+
+    <parent>
+        <groupId>org.apache.maven.plugin.assembly.test</groupId>
+        <artifactId>it-project-parent</artifactId>
+        <version>1</version>
+    </parent>
+
+       <!-- groupId>ch.vd</groupId -->
+       <artifactId>massembly-743</artifactId>
+       <version>1.0.0-SNAPSHOT</version>
+
+       <name>Maven Assembly Bug</name>
+       <description>Maven Assembly Bug</description>
+
+       <build>
+               <plugins>
+                       <plugin>
+                               <inherited>true</inherited>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-assembly-plugin</artifactId>
+                               <version>${testVersion}</version>
+                               <!-- The configuration of the plugin -->
+                               <configuration>
+                                       <!-- Specifies the configuration file 
of the assembly plugin -->
+                                       <descriptors>
+                                               
<descriptor>assembly.xml</descriptor>
+                                       </descriptors>
+                                       
<appendAssemblyId>false</appendAssemblyId>
+                                       <tarLongFileMode>posix</tarLongFileMode>
+                               </configuration>
+                       </plugin>
+               </plugins>
+               <resources>
+                       <resource>
+                               <directory>src/main/resources</directory>
+                               <filtering>false</filtering>
+                       </resource>
+               </resources>
+               <testResources>
+                       <testResource>
+                               <directory>src/test/resources</directory>
+                               <filtering>false</filtering>
+                       </testResource>
+               </testResources>
+       </build>
+
+       <properties>
+               <mine.includeBaseDirectory>faXse</mine.includeBaseDirectory>
+       </properties>
+
+</project>

Added: 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-743/structure/README.txt
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-743/structure/README.txt?rev=1643596&view=auto
==============================================================================
--- 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-743/structure/README.txt
 (added)
+++ 
maven/plugins/trunk/maven-assembly-plugin/src/it/projects/bugs/massembly-743/structure/README.txt
 Sat Dec  6 19:45:56 2014
@@ -0,0 +1 @@
+BLA BLI


Reply via email to