You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kr...@apache.org on 2014/12/05 17:31:01 UTC

svn commit: r1643348 - in /maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665: ./ src/ src/main/ src/main/assembly/ src/test/ src/test/java/ src/test/java/test/

Author: krosenvold
Date: Fri Dec  5 16:31:00 2014
New Revision: 1643348

URL: http://svn.apache.org/r1643348
Log:
Added testcase for 665

Added:
    maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/
    maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/invoker.properties
    maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/pom.xml
    maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/src/
    maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/src/main/
    maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/src/main/assembly/
    maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/src/main/assembly/src.xml
    maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/src/test/
    maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/src/test/java/
    maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/src/test/java/test/
    maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/src/test/java/test/aFile.txt

Added: maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/invoker.properties
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/invoker.properties?rev=1643348&view=auto
==============================================================================
--- maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/invoker.properties (added)
+++ maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/invoker.properties Fri Dec  5 16:31:00 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.
+
+invoker.goals=clean org.apache.maven.plugins:maven-assembly-plugin:${testVersion}:single

Added: maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/pom.xml?rev=1643348&view=auto
==============================================================================
--- maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/pom.xml (added)
+++ maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/pom.xml Fri Dec  5 16:31:00 2014
@@ -0,0 +1,47 @@
+<?xml version='1.0'?>
+<!--
+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>
+  <parent>
+    <groupId>org.apache.maven.plugin.assembly.test</groupId>
+    <artifactId>it-project-parent</artifactId>
+    <version>1</version>
+  </parent>
+  
+  <groupId>test</groupId>
+  <artifactId>massembly-665</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0-SNAPSHOT</version>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <configuration>
+          <descriptors>
+            <descriptor>src/main/assembly/src.xml</descriptor>
+          </descriptors>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/src/main/assembly/src.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/src/main/assembly/src.xml?rev=1643348&view=auto
==============================================================================
--- maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/src/main/assembly/src.xml (added)
+++ maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/src/main/assembly/src.xml Fri Dec  5 16:31:00 2014
@@ -0,0 +1,46 @@
+<?xml version='1.0'?>
+<!--
+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.0" 
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
+  <id>src</id>
+  <formats>
+    <format>dir</format>
+  </formats>
+  <includeBaseDirectory>false</includeBaseDirectory>
+   <fileSets>
+	<fileSet>
+		<directory>src/test/java/test</directory>
+		<outputDirectory>bin</outputDirectory>
+		<filtered>true</filtered>
+		<includes>
+			<include>*</include>
+		</includes>
+	</fileSet>
+	<fileSet>
+		<directory>/src/test/java/test</directory>
+		<outputDirectory>conf</outputDirectory>
+		<includes>
+			<include>*</include>
+		</includes>
+	</fileSet>
+   </fileSets>
+</assembly>

Added: maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/src/test/java/test/aFile.txt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/src/test/java/test/aFile.txt?rev=1643348&view=auto
==============================================================================
--- maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/src/test/java/test/aFile.txt (added)
+++ maven/plugins/trunk/maven-assembly-plugin/src/it/projects/file-sets/massembly-665/src/test/java/test/aFile.txt Fri Dec  5 16:31:00 2014
@@ -0,0 +1 @@
+A test file