Author: pcl
Date: Wed May 14 12:01:28 2008
New Revision: 656362
URL: http://svn.apache.org/viewvc?rev=656362&view=rev
Log:
exclude the original OmniGraffle files from the image dir
Modified:
openjpa/branches/1.1.0/openjpa-project/pom.xml
Modified: openjpa/branches/1.1.0/openjpa-project/pom.xml
URL: http://svn.apache.org/viewvc/openjpa/branches/1.1.0/openjpa-project/pom.xml?rev=656362&r1=656361&r2=656362&view=diff
==============================================================================
--- openjpa/branches/1.1.0/openjpa-project/pom.xml (original)
+++ openjpa/branches/1.1.0/openjpa-project/pom.xml Wed May 14 12:01:28 2008
@@ -230,6 +230,7 @@
<fileset
dir="${docbook.source}/img">
<include name="*.*"/>
+ <exclude name="*.graffle"/>
</fileset>
</copy>
@@ -315,42 +316,6 @@
<build>
<plugins>
<plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <phase>verify</phase>
- <configuration>
- <tasks>
- <echo>Signing release files...</echo>
- <macrodef name="sign-file">
- <attribute name="file" />
- <sequential>
- <delete failonerror="false"
- file="@{file}.asc"/>
- <exec executable="gpg"
- failonerror="true">
- <arg value="--batch"/>
- <arg value="--verbose"/>
- <arg value="--default-key"/>
- <arg value="${openjpa.release.keyAlias}"/>
- <arg value="--armor"/>
- <arg value="--detach-sig"/>
- <arg value="@{file}"/>
- </exec>
- </sequential>
- </macrodef>
- <sign-file file="${openjpa.assembly.binaryFile}"/>
- <sign-file file="${openjpa.assembly.sourceFile}"/>
- </tasks>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
|