You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2015/04/13 02:14:28 UTC

svn commit: r1673077 - in /lucene/dev/trunk: dev-tools/maven/pom.xml.template lucene/CHANGES.txt lucene/common-build.xml lucene/tools/forbiddenApis/base.txt

Author: uschindler
Date: Mon Apr 13 00:14:28 2015
New Revision: 1673077

URL: http://svn.apache.org/r1673077
Log:
LUCENE-6420: Update forbiddenapis to v1.8

Modified:
    lucene/dev/trunk/dev-tools/maven/pom.xml.template
    lucene/dev/trunk/lucene/CHANGES.txt
    lucene/dev/trunk/lucene/common-build.xml
    lucene/dev/trunk/lucene/tools/forbiddenApis/base.txt

Modified: lucene/dev/trunk/dev-tools/maven/pom.xml.template
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/maven/pom.xml.template?rev=1673077&r1=1673076&r2=1673077&view=diff
==============================================================================
--- lucene/dev/trunk/dev-tools/maven/pom.xml.template (original)
+++ lucene/dev/trunk/dev-tools/maven/pom.xml.template Mon Apr 13 00:14:28 2015
@@ -159,7 +159,7 @@
         <plugin>
           <groupId>de.thetaphi</groupId>
           <artifactId>forbiddenapis</artifactId>
-          <version>1.6.1</version>
+          <version>1.8</version>
           <configuration>
             <!--
               This is the default setting, we don't support too new Java versions.

Modified: lucene/dev/trunk/lucene/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/CHANGES.txt?rev=1673077&r1=1673076&r2=1673077&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/CHANGES.txt (original)
+++ lucene/dev/trunk/lucene/CHANGES.txt Mon Apr 13 00:14:28 2015
@@ -104,6 +104,10 @@ Other
 * LUCENE-6399: Benchmark module's QueryMaker.resetInputs should call setConfig
   so queries can react to property changes in new rounds. (David Smiley)
 
+Build
+
+* LUCENE-6420: Update forbiddenapis to v1.8  (Uwe Schindler)
+
 ======================= Lucene 5.1.0 =======================
 
 New Features

Modified: lucene/dev/trunk/lucene/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/common-build.xml?rev=1673077&r1=1673076&r2=1673077&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/common-build.xml (original)
+++ lucene/dev/trunk/lucene/common-build.xml Mon Apr 13 00:14:28 2015
@@ -2344,7 +2344,7 @@ ${ant.project.name}.test.dependencies=${
   <property name="forbidden-sysout-excludes" value=""/>
   
   <target name="-install-forbidden-apis" unless="forbidden-apis.loaded" depends="ivy-availability-check,ivy-configure">
-    <ivy:cachepath organisation="de.thetaphi" module="forbiddenapis" revision="1.7"
+    <ivy:cachepath organisation="de.thetaphi" module="forbiddenapis" revision="1.8"
       inline="true" conf="default" transitive="true" pathid="forbidden-apis.classpath"/>
     <taskdef name="forbidden-apis" classname="de.thetaphi.forbiddenapis.AntTask" classpathref="forbidden-apis.classpath"/>
     <property name="forbidden-apis.loaded" value="true"/>

Modified: lucene/dev/trunk/lucene/tools/forbiddenApis/base.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/tools/forbiddenApis/base.txt?rev=1673077&r1=1673076&r2=1673077&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/tools/forbiddenApis/base.txt (original)
+++ lucene/dev/trunk/lucene/tools/forbiddenApis/base.txt Mon Apr 13 00:14:28 2015
@@ -34,7 +34,3 @@ java.io.File#delete() @ use Files.delete
 
 @defaultMessage Use shuffle(List, Random) instead so that it can be reproduced
 java.util.Collections#shuffle(java.util.List)
-
-@defaultMessage Construct MessageFormat(String pattern, String locale) and then use the format(String,Object...) method
-java.text.MessageFormat#format(java.lang.String,java.lang.Object[])
-java.text.MessageFormat#<init>(java.lang.String)