You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2010/04/07 11:36:18 UTC

svn commit: r931479 - in /jackrabbit/trunk/jackrabbit-spi2dav: assembly.xml pom.xml

Author: jukka
Date: Wed Apr  7 09:36:17 2010
New Revision: 931479

URL: http://svn.apache.org/viewvc?rev=931479&view=rev
Log:
JCR-2567: please have spi2dav create a test-jar

Patch by Justin Edelson

Added:
    jackrabbit/trunk/jackrabbit-spi2dav/assembly.xml   (with props)
Modified:
    jackrabbit/trunk/jackrabbit-spi2dav/pom.xml

Added: jackrabbit/trunk/jackrabbit-spi2dav/assembly.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-spi2dav/assembly.xml?rev=931479&view=auto
==============================================================================
--- jackrabbit/trunk/jackrabbit-spi2dav/assembly.xml (added)
+++ jackrabbit/trunk/jackrabbit-spi2dav/assembly.xml Wed Apr  7 09:36:17 2010
@@ -0,0 +1,35 @@
+<?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.
+  -->
+<assembly>
+  <id>tests</id>
+  <includeBaseDirectory>false</includeBaseDirectory>
+  <formats>
+    <format>jar</format>
+  </formats>
+  <fileSets>
+    <fileSet>
+      <directory>${project.build.testOutputDirectory}</directory>
+      <outputDirectory></outputDirectory>
+      <excludes>
+        <exclude>repositoryServiceStubImpl.properties</exclude>
+        <exclude>repositoryStubImpl.properties</exclude>
+        <exclude>log4j.properties</exclude>
+      </excludes>
+    </fileSet>
+  </fileSets>
+</assembly>

Propchange: jackrabbit/trunk/jackrabbit-spi2dav/assembly.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: jackrabbit/trunk/jackrabbit-spi2dav/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-spi2dav/pom.xml?rev=931479&r1=931478&r2=931479&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-spi2dav/pom.xml (original)
+++ jackrabbit/trunk/jackrabbit-spi2dav/pom.xml Wed Apr  7 09:36:17 2010
@@ -110,6 +110,22 @@
           </systemProperties>
         </configuration>
       </plugin>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>single</goal>
+            </goals>
+            <configuration>
+              <descriptors>
+                <descriptor>assembly.xml</descriptor>
+              </descriptors>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>
   <dependencies>