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 2009/10/13 12:27:50 UTC

svn commit: r824670 - in /jackrabbit/commons/jcr-tests/trunk: assembly.xml pom.xml

Author: jukka
Date: Tue Oct 13 10:27:49 2009
New Revision: 824670

URL: http://svn.apache.org/viewvc?rev=824670&view=rev
Log:
JCRTCK-1: Create jackrabbit/commons/jcr-tests

Add an assembly for creating the source release.

Added:
    jackrabbit/commons/jcr-tests/trunk/assembly.xml   (with props)
Modified:
    jackrabbit/commons/jcr-tests/trunk/pom.xml

Added: jackrabbit/commons/jcr-tests/trunk/assembly.xml
URL: http://svn.apache.org/viewvc/jackrabbit/commons/jcr-tests/trunk/assembly.xml?rev=824670&view=auto
==============================================================================
--- jackrabbit/commons/jcr-tests/trunk/assembly.xml (added)
+++ jackrabbit/commons/jcr-tests/trunk/assembly.xml Tue Oct 13 10:27:49 2009
@@ -0,0 +1,31 @@
+<!--
+ 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>src</id>
+  <formats>
+    <format>zip</format>
+  </formats>
+  <fileSets>
+    <fileSet>
+      <directory>${project.basedir}</directory>
+      <outputDirectory></outputDirectory>
+      <excludes>
+        <exclude>target/**</exclude>
+      </excludes>
+    </fileSet>
+  </fileSets>
+</assembly>

Propchange: jackrabbit/commons/jcr-tests/trunk/assembly.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: jackrabbit/commons/jcr-tests/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/commons/jcr-tests/trunk/pom.xml?rev=824670&r1=824669&r2=824670&view=diff
==============================================================================
--- jackrabbit/commons/jcr-tests/trunk/pom.xml (original)
+++ jackrabbit/commons/jcr-tests/trunk/pom.xml Tue Oct 13 10:27:49 2009
@@ -92,4 +92,30 @@
     </dependency>
   </dependencies>
 
+  <profiles>
+    <profile>
+      <id>apache-release</id>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>single</goal>
+                </goals>
+                <phase>package</phase>
+                <configuration>
+                  <descriptors>
+                    <descriptor>assembly.xml</descriptor>
+                  </descriptors>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+
 </project>