You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by mp...@apache.org on 2007/04/21 19:43:48 UTC

svn commit: r531070 - /incubator/openjpa/trunk/openjpa-integration/examples/pom.xml

Author: mprudhom
Date: Sat Apr 21 10:43:47 2007
New Revision: 531070

URL: http://svn.apache.org/viewvc?view=rev&rev=531070
Log:
Fixed to be more lenient when looking for artifact to expand.

Modified:
    incubator/openjpa/trunk/openjpa-integration/examples/pom.xml

Modified: incubator/openjpa/trunk/openjpa-integration/examples/pom.xml
URL: http://svn.apache.org/viewvc/incubator/openjpa/trunk/openjpa-integration/examples/pom.xml?view=diff&rev=531070&r1=531069&r2=531070
==============================================================================
--- incubator/openjpa/trunk/openjpa-integration/examples/pom.xml (original)
+++ incubator/openjpa/trunk/openjpa-integration/examples/pom.xml Sat Apr 21 10:43:47 2007
@@ -55,12 +55,14 @@
                         <tasks>
                         <echo>Running OpenJPA Examples</echo>
 
-                        <property name="binary.zip" value="../../openjpa-project/target/assembly/openjpa-${version}-binary.zip"/>
 
                         <property name="examples.base"
                             value="${basedir}/target/examples"/>
-                        <unzip overwrite="false"
-                            src="${binary.zip}" dest="${examples.base}"/>
+                        <unzip overwrite="false" dest="${examples.base}">
+                        <fileset dir="../../openjpa-project/target/assembly">
+                            <include name="openjpa-*${version}-binary.zip"/>
+                        </fileset>
+                        </unzip>
 
                         <subant inheritAll="false">
                             <fileset dir="${examples.base}"