Hi Jerome,
On Dec 11, 2010, at 10:51 PM, jvelociter (SVN) wrote:
Author: jvelociter
Date: 2010-12-11 22:51:45 +0100 (Sat, 11 Dec 2010)
New Revision: 33355
Modified:
platform/core/trunk/xwiki-bridge/pom.xml
platform/core/trunk/xwiki-bridge/src/main/java/org/xwiki/bridge/DocumentAccessBridge.java
platform/core/trunk/xwiki-core/src/main/java/com/xpn/xwiki/doc/DefaultDocumentAccessBridge.java
Log:
XWIKI-5789 New setProperty document access bridge method that takes document references
instead of Strings
Modified: platform/core/trunk/xwiki-bridge/pom.xml
===================================================================
--- platform/core/trunk/xwiki-bridge/pom.xml 2010-12-11 17:10:59 UTC (rev 33354)
+++ platform/core/trunk/xwiki-bridge/pom.xml 2010-12-11 21:51:45 UTC (rev 33355)
@@ -64,6 +64,19 @@
</dependency>
</dependencies>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>clirr-maven-plugin</artifactId>
+ <configuration>
+ <skip>${xwiki.clirr.skip}</skip>
+ <comparisonVersion>${clirr.previous.version}</comparisonVersion>
+ <excludes>
+ <!-- Exclude DAB for 2.7RC1 because we've added an API. See
XWIKI-5789.
+ TODO remove this exclude once 2.7RC1 is released -->
+ <exclude>org/xwiki/bridge/DocumentAccessBridge</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
This shouldn't be placed here. All clirr exclusions must go in core/pom.xml
Thanks
-Vincent