You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by pk...@apache.org on 2013/02/01 11:27:23 UTC

svn commit: r1441380 - /uima/sandbox/textmarker/trunk/pom.xml

Author: pkluegl
Date: Fri Feb  1 10:27:23 2013
New Revision: 1441380

URL: http://svn.apache.org/viewvc?rev=1441380&view=rev
Log:
no jira - add .project file of exemplary textmarker project to source release

Modified:
    uima/sandbox/textmarker/trunk/pom.xml

Modified: uima/sandbox/textmarker/trunk/pom.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/textmarker/trunk/pom.xml?rev=1441380&r1=1441379&r2=1441380&view=diff
==============================================================================
--- uima/sandbox/textmarker/trunk/pom.xml (original)
+++ uima/sandbox/textmarker/trunk/pom.xml Fri Feb  1 10:27:23 2013
@@ -269,6 +269,27 @@ Creative Commons Attribution 2.5 License
               </execution>
             </executions>
           </plugin>
+           <plugin>
+		        <artifactId>maven-antrun-plugin</artifactId>
+		        <inherited>false</inherited>
+		        <executions>
+		          <execution>
+		            <id>ExtendSourceRelease</id>
+		            <phase>package</phase>
+		            <configuration>
+		              <target>
+		                <zip destfile="${project.build.directory}/${project.artifactId}-${project.version}-source-release.zip" update="true">
+									    <zipfileset dir="${basedir}/example-projects/ExampleProject/" 
+									      includes=".project" prefix="${project.artifactId}-${project.version}/example-projects/ExampleProject/"/>
+									  </zip>
+		              </target>
+		            </configuration>
+		            <goals>
+		              <goal>run</goal>
+		            </goals>
+		          </execution>
+		        </executions>
+		      </plugin>
         </plugins>
       </build>
     </profile>