You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2018/04/19 15:40:50 UTC

svn commit: r1829567 - /uima/addons/trunk/ConceptMapper/pom.xml

Author: schor
Date: Thu Apr 19 15:40:50 2018
New Revision: 1829567

URL: http://svn.apache.org/viewvc?rev=1829567&view=rev
Log:
[UIMA-5764] roll back to 2.10.2-SNAPSHOT, add pom generation of sha1 checksums for dist artifacts

Modified:
    uima/addons/trunk/ConceptMapper/pom.xml

Modified: uima/addons/trunk/ConceptMapper/pom.xml
URL: http://svn.apache.org/viewvc/uima/addons/trunk/ConceptMapper/pom.xml?rev=1829567&r1=1829566&r2=1829567&view=diff
==============================================================================
--- uima/addons/trunk/ConceptMapper/pom.xml (original)
+++ uima/addons/trunk/ConceptMapper/pom.xml Thu Apr 19 15:40:50 2018
@@ -28,7 +28,7 @@
   </parent>
   
   <artifactId>ConceptMapper</artifactId>
-  <version>2.10.3-SNAPSHOT</version>
+  <version>2.10.2-SNAPSHOT</version>
   <name>Apache UIMA Annotator: ${project.artifactId}</name>
   <description>Extracts concepts from a CAS</description>
   <url>${uimaWebsiteUrl}</url>
@@ -219,6 +219,31 @@
               </execution>
             </executions>  
           </plugin>
+          
+          <plugin>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>generate checksums for binary artifacts</id>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+                <phase>verify</phase>
+                <configuration>
+                  <target>
+                    <checksum algorithm="sha1" format="MD5SUM">
+                      <fileset dir="${project.build.directory}">
+                        <include name="*.zip" />
+                        <include name="*.gz" />
+                      </fileset>
+                    </checksum>
+                  </target>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+          
+          
         </plugins>     
       </build>
     </profile>