You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rya.apache.org by mi...@apache.org on 2017/06/09 21:25:12 UTC

incubator-rya git commit: RYA-287 minor POM mod to endPosTable error

Repository: incubator-rya
Updated Branches:
  refs/heads/master c9b66c7c3 -> f8d02eb3d


RYA-287 minor POM mod to endPosTable error


Project: http://git-wip-us.apache.org/repos/asf/incubator-rya/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-rya/commit/f8d02eb3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-rya/tree/f8d02eb3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-rya/diff/f8d02eb3

Branch: refs/heads/master
Commit: f8d02eb3d5d22b8d810b39400c381ca9b4e2b68c
Parents: c9b66c7
Author: Aaron Mihalik <mi...@alum.mit.edu>
Authored: Fri Jun 9 17:21:40 2017 -0400
Committer: Aaron Mihalik <mi...@alum.mit.edu>
Committed: Fri Jun 9 17:24:06 2017 -0400

----------------------------------------------------------------------
 extras/rya.benchmark/pom.xml | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-rya/blob/f8d02eb3/extras/rya.benchmark/pom.xml
----------------------------------------------------------------------
diff --git a/extras/rya.benchmark/pom.xml b/extras/rya.benchmark/pom.xml
index bb1fa4f..bd70ed2 100644
--- a/extras/rya.benchmark/pom.xml
+++ b/extras/rya.benchmark/pom.xml
@@ -76,8 +76,23 @@
                 <directory>src/main/xsd</directory>
             </resource>
         </resources>
-    
+
         <plugins>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <!--useIncrementalCompilation a workaround for "endPosTable already set"-->
+                    <!-- Java Bug Database link : http://bugs.java.com/bugdatabase/view_bug.do?bug_id=8067747 -->
+                    <useIncrementalCompilation>false</useIncrementalCompilation>
+                    <compilerArguments>
+                        <Xlint/>
+                    </compilerArguments>
+                </configuration>
+            </plugin>
+
+
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>jaxb2-maven-plugin</artifactId>