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 2019/04/11 11:30:01 UTC

svn commit: r1857315 - /uima/ruta/trunk/ruta-parent/pom.xml

Author: pkluegl
Date: Thu Apr 11 11:30:01 2019
New Revision: 1857315

URL: http://svn.apache.org/viewvc?rev=1857315&view=rev
Log:
no jira - uncommented api check

Modified:
    uima/ruta/trunk/ruta-parent/pom.xml

Modified: uima/ruta/trunk/ruta-parent/pom.xml
URL: http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-parent/pom.xml?rev=1857315&r1=1857314&r2=1857315&view=diff
==============================================================================
--- uima/ruta/trunk/ruta-parent/pom.xml (original)
+++ uima/ruta/trunk/ruta-parent/pom.xml Thu Apr 11 11:30:01 2019
@@ -308,63 +308,64 @@ Creative Commons Attribution 3.0 License
         
         <plugins>
           <!-- https://siom79.github.io/japicmp/MavenPlugin.html -->
-<!--           <plugin>               -->
-<!--             <groupId>com.github.siom79.japicmp</groupId> -->
-<!--             <artifactId>japicmp-maven-plugin</artifactId> -->
-<!--             <version>0.13.0</version> -->
-<!--             <configuration> -->
-<!--               <oldVersion> -->
-<!--                 <dependency> -->
-<!--                   <groupId>${project.groupId}</groupId> -->
-<!--                   <artifactId>${project.artifactId}</artifactId> -->
-<!--                   <version>${api_check_oldVersion}</version> -->
-<!--                 </dependency> -->
-<!--               </oldVersion> -->
-<!--               <parameter> -->
-<!--                 <onlyModified>true</onlyModified> -->
-<!--                 <excludes> -->
-<!--                    <exclude>org.apache.uima.ruta.type</exclude> -->
-<!--                    <exclude>org.apache.uima.ruta.parser.RutaParser</exclude> -->
-<!--                 </excludes> -->
-<!--                 filter out classes with impl in their package or class name -->
-<!--                 <postAnalysisScript>${project.basedir}/../ruta-parent/src/main/groovy/api-report.groovy</postAnalysisScript>                   -->
-<!--               </parameter> -->
-<!--             </configuration> -->
-<!--             <executions> -->
-<!--               <execution> -->
-<!--                 <phase>verify</phase> -->
-<!--                 <goals> -->
-<!--                   <goal>cmp</goal> -->
-<!--                 </goals> -->
-<!--               </execution> -->
-<!--             </executions> -->
-<!--           </plugin> -->
+          <plugin>              
+            <groupId>com.github.siom79.japicmp</groupId>
+            <artifactId>japicmp-maven-plugin</artifactId>
+            <version>0.13.0</version>
+            <configuration>
+              <oldVersion>
+                <dependency>
+                  <groupId>${project.groupId}</groupId>
+                  <artifactId>${project.artifactId}</artifactId>
+                  <version>${api_check_oldVersion}</version>
+                </dependency>
+              </oldVersion>
+              <parameter>
+                <onlyModified>true</onlyModified>
+                <excludes>
+                   <exclude>org.apache.uima.ruta.type</exclude>
+                   <exclude>org.apache.uima.ruta.parser.RutaParser</exclude>
+                </excludes>
+                filter out classes with impl in their package or class name
+                <postAnalysisScript>${project.basedir}/../ruta-parent/src/main/groovy/api-report.groovy</postAnalysisScript>                  
+              </parameter>
+            </configuration>
+            <executions>
+              <execution>
+                <phase>verify</phase>
+                <goals>
+                  <goal>cmp</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
           
           <!-- This copy is to have the api change report included in the source distribution -->
-<!--           <plugin> -->
-<!--             <artifactId>maven-antrun-plugin</artifactId> -->
-<!--             <executions> -->
-<!--               <execution> -->
-<!--                 <id>copy-API-change-report</id> -->
-<!--                 <phase>install</phase>  must follow verify -->
-<!--                 <goals><goal>run</goal></goals> -->
-<!--                 <configuration> -->
-<!--                   <target> -->
-<!--                     <taskdef name="if" classname="net.sf.antcontrib.logic.IfTask" /> -->
-<!--                     <if> -->
-<!--                       <available file="${project.build.directory}/japicmp/" /> -->
-<!--                       <then> -->
-<!--                         <copy toDir="${basedir}/api-change-report"> -->
-<!--                           <fileset dir="${project.build.directory}/japicmp" /> -->
-<!--                         </copy> -->
-<!--                       </then> -->
-<!--                     </if> -->
-<!--                   </target> -->
-<!--                 </configuration> -->
-<!--               </execution> -->
-<!--             </executions> -->
+          <plugin>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>copy-API-change-report</id>
+                <phase>install</phase>  
+<!--                 must follow verify -->
+                <goals><goal>run</goal></goals>
+                <configuration>
+                  <target>
+                    <taskdef name="if" classname="net.sf.antcontrib.logic.IfTask" />
+                    <if>
+                      <available file="${project.build.directory}/japicmp/" />
+                      <then>
+                        <copy toDir="${basedir}/api-change-report">
+                          <fileset dir="${project.build.directory}/japicmp" />
+                        </copy>
+                      </then>
+                    </if>
+                  </target>
+                </configuration>
+              </execution>
+            </executions>
             
-<!--           </plugin> -->
+          </plugin>
         </plugins>
       </build>
     </profile>