You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@omid.apache.org by yo...@apache.org on 2018/09/27 06:45:54 UTC

incubator-omid git commit: [OMID-109] downgrade compiler-plugin to work on maven2

Repository: incubator-omid
Updated Branches:
  refs/heads/phoenix-integration f5e5298e0 -> d8f8f9a93


[OMID-109] downgrade compiler-plugin to work on maven2


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

Branch: refs/heads/phoenix-integration
Commit: d8f8f9a93e263db7a3d51706df433ea625b853a0
Parents: f5e5298
Author: Yonatan Gottesman <yo...@gmail.com>
Authored: Thu Sep 27 09:45:46 2018 +0300
Committer: Yonatan Gottesman <yo...@gmail.com>
Committed: Thu Sep 27 09:45:46 2018 +0300

----------------------------------------------------------------------
 pom.xml | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/d8f8f9a9/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index a20f0d4..72d7b5b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -157,7 +157,7 @@
         <maven-antrun-plugin.version>1.7</maven-antrun-plugin.version>
         <maven-source-plugin.version>2.4</maven-source-plugin.version>
         <maven-clean-plugin.version>2.5</maven-clean-plugin.version>
-        <maven-compiler-plugin.version>3.5</maven-compiler-plugin.version>
+        <maven-compiler-plugin.version>3.0</maven-compiler-plugin.version>
         <maven-assembly-plugin.version>2.4</maven-assembly-plugin.version>
         <maven-shade-plugin.version>2.3</maven-shade-plugin.version>
         <maven-release-plugin.version>2.3.2</maven-release-plugin.version>
@@ -207,15 +207,6 @@
                     <configuration>
                         <source>${java.version}</source>
                         <target>${java.version}</target>
-                        <compilerArgs>
-                            <!-- We had to comment this due to the use of some deprecated APIs in HBase 1.x -->
-                            <!-- As example, we extensively use HTable along the code and is not used anymore in 1.x-->
-                            <!-- TODO Try to restore the parameter when possible -->
-                            <!--arg>-Werror</arg-->
-                            <arg>-Xlint:deprecation</arg>
-                            <arg>-Xlint:unchecked</arg>
-                        </compilerArgs>
-
                     </configuration>
                 </plugin>