Fixing RAT errors due to ref and server-ref
Project: http://git-wip-us.apache.org/repos/asf/olingo-odata4/repo Commit: http://git-wip-us.apache.org/repos/asf/olingo-odata4/commit/565ef670 Tree: http://git-wip-us.apache.org/repos/asf/olingo-odata4/tree/565ef670 Diff: http://git-wip-us.apache.org/repos/asf/olingo-odata4/diff/565ef670 Branch: refs/heads/olingo-266-ref Commit: 565ef670d850d664ae0a73f4b96e9bf8b6d186c5 Parents: 8704711 Author: Francesco Chicchiriccò <--global> Authored: Wed May 14 10:45:31 2014 +0200 Committer: Stephan Klevenz <[email protected]> Committed: Mon May 19 12:33:26 2014 +0200 ---------------------------------------------------------------------- .../apache/olingo/fit/proxy/v4/EntityUpdateTestITCase.java | 7 ++++--- pom.xml | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/565ef670/fit/src/test/java/org/apache/olingo/fit/proxy/v4/EntityUpdateTestITCase.java ---------------------------------------------------------------------- diff --git a/fit/src/test/java/org/apache/olingo/fit/proxy/v4/EntityUpdateTestITCase.java b/fit/src/test/java/org/apache/olingo/fit/proxy/v4/EntityUpdateTestITCase.java index cd00901..a4a6131 100644 --- a/fit/src/test/java/org/apache/olingo/fit/proxy/v4/EntityUpdateTestITCase.java +++ b/fit/src/test/java/org/apache/olingo/fit/proxy/v4/EntityUpdateTestITCase.java @@ -18,6 +18,10 @@ */ package org.apache.olingo.fit.proxy.v4; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertTrue; + import java.lang.reflect.Proxy; import java.math.BigDecimal; import org.apache.commons.lang3.StringUtils; @@ -29,9 +33,6 @@ import org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.service import org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.OrderDetail; import org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.OrderDetailKey; import org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.Person; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertTrue; import org.junit.Test; /** http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/565ef670/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 23e6460..1eeb196 100644 --- a/pom.xml +++ b/pom.xml @@ -448,8 +448,8 @@ <exclude>**/nb-configuration.xml</exclude> <exclude>**/.externalToolBuilders/**</exclude> <exclude>**/maven-eclipse.xml</exclude> - <exclude>**/checkstyle-*</exclude> - <exclude>**/.plxarc</exclude> + <exclude>**/ref/**</exclude> + <exclude>**/server-ref/**</exclude> </excludes> </configuration> </execution>
