You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by el...@apache.org on 2018/11/28 17:40:06 UTC

[2/4] phoenix git commit: PHOENIX-5037 Fix maven site reporting warnings on build

PHOENIX-5037 Fix maven site reporting warnings on build

Signed-off-by: Josh Elser <el...@apache.org>


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

Branch: refs/heads/4.x-HBase-1.4
Commit: fe8a7798b70105b216b800ba50d5ebf308d285a7
Parents: 644ab0e
Author: Artem Ervits <ar...@gmail.com>
Authored: Wed Nov 28 11:39:29 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Wed Nov 28 12:03:56 2018 -0500

----------------------------------------------------------------------
 phoenix-core/pom.xml  | 23 +++++++++++++----------
 phoenix-kafka/pom.xml | 22 ++++++++++++----------
 pom.xml               | 26 ++++++++++++++++----------
 3 files changed, 41 insertions(+), 30 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/fe8a7798/phoenix-core/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-core/pom.xml b/phoenix-core/pom.xml
index 3416b18..dcedd54 100644
--- a/phoenix-core/pom.xml
+++ b/phoenix-core/pom.xml
@@ -44,7 +44,6 @@
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-site-plugin</artifactId>
-       <version>3.2</version>
        <dependencies>
         <dependency>
            <groupId>org.apache.maven.doxia</groupId>
@@ -62,15 +61,6 @@
            <version>1.7</version>
          </dependency>
        </dependencies>
-       <configuration>
-         <reportPlugins>
-           <plugin>
-             <groupId>org.codehaus.mojo</groupId>
-             <artifactId>findbugs-maven-plugin</artifactId>
-	         <version>2.5.2</version>
-           </plugin>
-         </reportPlugins>
-       </configuration>
      </plugin>
      <plugin>
        <artifactId>exec-maven-plugin</artifactId>
@@ -445,4 +435,17 @@
         <artifactId>disruptor</artifactId>
       </dependency>
   </dependencies>
+
+  <reporting>
+      <plugins>
+          <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-project-info-reports-plugin</artifactId>
+          </plugin>
+          <plugin>
+              <groupId>org.codehaus.mojo</groupId>
+              <artifactId>findbugs-maven-plugin</artifactId>
+          </plugin>
+      </plugins>
+  </reporting>
 </project>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/fe8a7798/phoenix-kafka/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-kafka/pom.xml b/phoenix-kafka/pom.xml
index b104cfb..86dbb59 100644
--- a/phoenix-kafka/pom.xml
+++ b/phoenix-kafka/pom.xml
@@ -326,7 +326,6 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-site-plugin</artifactId>
-				<version>3.2</version>
 				<dependencies>
 					<dependency>
 						<groupId>org.apache.maven.doxia</groupId>
@@ -344,15 +343,6 @@
 						<version>1.7</version>
 					</dependency>
 				</dependencies>
-				<configuration>
-					<reportPlugins>
-						<plugin>
-							<groupId>org.codehaus.mojo</groupId>
-							<artifactId>findbugs-maven-plugin</artifactId>
-							<version>2.5.2</version>
-						</plugin>
-					</reportPlugins>
-				</configuration>
 			</plugin>
 
 			<!-- Setup eclipse -->
@@ -412,4 +402,16 @@
 		</plugins>
 	</build>
 
+        <reporting>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-project-info-reports-plugin</artifactId>
+                </plugin>
+                <plugin>
+                    <groupId>org.codehaus.mojo</groupId>
+                    <artifactId>findbugs-maven-plugin</artifactId>
+                </plugin>
+            </plugins>
+        </reporting>
 </project>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/fe8a7798/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 0f0b4f0..615f425 100644
--- a/pom.xml
+++ b/pom.xml
@@ -463,16 +463,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-site-plugin</artifactId>
-        <version>3.2</version>
-        <configuration>
-          <reportPlugins>
-            <plugin>
-              <groupId>org.codehaus.mojo</groupId>
-              <artifactId>findbugs-maven-plugin</artifactId>
-              <version>2.5.2</version>
-            </plugin>
-          </reportPlugins>
-        </configuration>
+        <version>3.7.1</version>
       </plugin>
       <plugin>
         <groupId>org.apache.rat</groupId>
@@ -1038,4 +1029,19 @@
       </properties>
     </profile>
   </profiles>
+
+  <reporting>
+      <plugins>
+          <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-project-info-reports-plugin</artifactId>
+              <version>3.0.0</version>
+          </plugin>
+          <plugin>
+              <groupId>org.codehaus.mojo</groupId>
+              <artifactId>findbugs-maven-plugin</artifactId>
+              <version>3.0.5</version>
+          </plugin>
+      </plugins>
+  </reporting>
 </project>